@font-face {
  font-family: "Tartuffo-Trial-Bold";
  src: url("../fonts/Tartuffo_Trial_Bold.ttf");
}

@font-face {
  font-family: "bomstad-display-regular";
  src: url("../fonts/BomstadDisplay-Regular.ttf");
}

:root {
  --white-clr: #fff;
  --black-clr: #000;
  --primary-colr: #dc1b1b;
  --heading-clr: #272727;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Tartuffo-Trial-Bold";
  text-transform: capitalize;
}

p,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "bomstad-display-regular";
}

input,
textarea {
  margin: 0;
  padding: 0;
}

a,
button {
  margin: 0;
  padding: 0;
  font-family: "bomstad-display-regular";
}

a:hover {
  color: inherit;
}

body {
  overflow-x: hidden;
  background: var(--white-clr);
}

main {
  overflow: hidden;
}

a,
button,
input,
textarea:focus {
  outline: none;
  box-shadow: none;
  text-decoration: none;
}

.form-group input::-webkit-outer-spin-button,
.form-group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.form-group input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--primary-colr);
  border: 1px solid var(--white-clr);
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background-color: #ebebeb;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

@keyframes rotate {
  to {
    transform: rotate(-360deg);
  }
}

/*Heading & Para Style Css start here*/
.heading-one {
  font-size: 60px;
  line-height: 67px;
}

.heading-two {
  font-size: 50px;
  line-height: 57px;
}

.heading-three {
  font-size: 40px;
  line-height: 47px;
}

.heading-four {
  font-size: 30px;
  line-height: 37px;
}

.heading-five {
  font-size: 26px;
  line-height: 33px;
}

.heading-six {
  font-size: 20px;
  line-height: 26px;
}

p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  margin: 0 0 10px;
}

li {
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 5px;
}

/*Heading & Para Style Css end here*/

/*******************************************************************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 button.chat-btn,
.website-main-buttons a.call-btn {
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  font-family: "bomstad-display-regular";
  width: 225px;
  height: 60px;
  border-radius: 10px;
  border: 2px solid var(--white-clr);
  padding: 5px 5px;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  background: var(--white-clr);
  position: relative;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.website-main-buttons a.read-more-btn::before,
.website-main-buttons button.popup-btn::before,
.website-main-buttons button.chat-btn::before,
.website-main-buttons a.call-btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-colr);
  border: 1px solid var(--primary-colr);
  border-radius: 10px;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.website-main-buttons a.read-more-btn:hover,
.website-main-buttons button.popup-btn:hover,
.website-main-buttons button.chat-btn:hover,
.website-main-buttons a.call-btn:hover {
  color: var(--white-clr);
}

.website-main-buttons a.read-more-btn:hover::before,
.website-main-buttons button.popup-btn:hover::before,
.website-main-buttons button.chat-btn:hover::before,
.website-main-buttons a.call-btn:hover::before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

/*******************************************************************Buttons Style Css*******************************************************************/

/*******************************************************************Header Css Start Here*******************************************************************/

.main-header {
  background: transparent;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

.main-header.sticky {
  background: white;
  box-shadow: 0 0 20px -5px #b2b2b2;
}

.main-header nav {
  border-bottom: 1px solid var(--white-clr);
  padding: 25px 0px;
}


header nav.navbar .navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-brand img {
  width: 270px;
  height: 80px;
  object-fit: cover;
}

.main-header.main-header.sticky nav {
  border-color: var(--white-clr);
}

.main-header nav .navbar-main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.main-header nav .navbar-main-nav ul.navbar-nav {
  gap: 50px;
}

.main-header nav .navbar-main-nav ul.navbar-nav a.nav-link {
    font-size: 20px;
    line-height: 27px;
    font-weight: 400;
    padding: 20px 5px 0;
}

.main-header.sticky nav .navbar-main-nav ul.navbar-nav a.nav-link {
  color: var(--black-clr);
}

.main-header nav .navbar-main-nav ul.navbar-nav li.nav-item.dropdown {}

.main-header nav .navbar-main-nav ul.navbar-nav li.nav-item.dropdown ul.dropdown-menu {
  background: #fefefe;
  top: 45px;
  left: 0;
  width: 300px;
  border: none;
  border-radius: 3px;
  box-shadow: 0 15px 45px -20px #0a2840;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  display: flex;
  flex-direction: column;
  margin: 0px;
}

.main-header nav .navbar-main-nav ul.navbar-nav li.nav-item.dropdown:hover ul.dropdown-menu {
  webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
  display: flex;
}

.main-header nav .navbar-main-nav ul.navbar-nav li.nav-item.dropdown ul.dropdown-menu li a.dropdown-item {
  font-size: 18px;
  line-height: 23px;
  font-weight: 400;
  color: var(--black-clr);
  transition: 0.2s all ease-in;
  padding: 10px 15px;
}

.main-header nav .navbar-main-nav ul.navbar-nav li.nav-item.dropdown ul.dropdown-menu li a.dropdown-item:hover {
  background: var(--primary-colr);
  color: var(--white-clr);
}

.main-header nav .navbar-main-nav ul.navbar-nav li.nav-item.dropdown ul.dropdown-menu li {
  margin: 0;
}

.main-header nav .website-main-buttons {
  margin: 0;
}

.main-header nav .website-main-buttons a.call-btn {
  color: var(--white-clr);
  border-color: var(--white-clr);
  background: transparent;
}

.main-header nav .website-main-buttons a.call-btn::before {
  background: transparent;
  border-color: transparent;
}

.main-header nav .website-main-buttons a.call-btn:hover {
  color: var(--white-clr) !important;
  background: var(--primary-colr);
}

.main-header.sticky nav .website-main-buttons a.call-btn {
  background: var(--primary-colr);
}

.main-header.sticky nav .navbar-main-nav .website-main-buttons a.call-btn::before {
  border-color: var(--primary-colr);
}

.main-header.sticky nav .navbar-main-nav .website-main-buttons a.call-btn:hover {
  border-color: var(--primary-colr) !important;
  color: var(--primary-colr) !important;
  background: var(--white-clr) !important;
}

.main-header.sticky nav .navbar-main-nav .website-main-buttons a.call-btn:hover::before {
  background: var(--white-clr) !important;
}

.main-header .navbar button.navbar-toggler {
  background-color: #fff;
}

/*******************************************************************Header Css End Here*******************************************************************/


/* **************************************************************************************************************************************************
  ********************************************************** Home Page CSS Start Here ***************************************************************
  ************************************************************************************************************************************************ */

section.main-banner-slider {}

.main-banner-slider .banner-slider-inner {
  width: 100%;
  height: auto;
}

.banner-slider-inner .banner-slide-items {
  position: relative;
  z-index: 1;
}

.banner-slider-inner .banner-slide-items:before {
  content: "";
  background: url(../images/bg-overly-imge.png);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 1;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

.banner-slider-inner .banner-slide-items .banner-slide-video {}

.banner-slider-inner .banner-slide-items .banner-slide-video video {
  width: 100%;
  height: 100%;
}

.banner-slider-inner .banner-slide-items .banner-slide-heading {
  position: absolute;
  top: 0px;
  z-index: 99999;
  width: 60%;
  margin: 0 auto;
  text-align: center;
  padding: 200px 0px 0px;
  left: 20%;
}

.banner-slider-inner .banner-slide-items .banner-slide-heading .heading-one {
  color: white;
}

/* Banner Down Form Section CSS Start Here */

section.banner-btm-form-main-sec {
  margin-top: -320px;
  background-color: #F2F2F2
}

.banner-btm-form-main-sec .banner-down-bk-audio {
  display: flex;
}

.banner-down-bk-audio .baner-down-first-bx {
  /* background: #ffffff; */
  padding: 30px 20px;
  border-radius: 40px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  position: relative;
  background: url(../images/icons/subtract.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 27.8%;
}

.baner-down-first-bx .banner-down-book-flx {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #bebebe;
  padding-bottom: 18px;
  margin-top: 40px;
}

.baner-down-first-bx .banner-down-book-flx .book {}

.baner-down-first-bx .banner-down-book-flx .book img {
  width: 100%;
  height: 100%;
}

.baner-down-first-bx .banner-down-book-flx .books-audio {}

.baner-down-first-bx .banner-down-book-flx .books-audio .title {
  background: #dc1b1b;
  border-radius: 3px;
  padding: 6px 7px;
  margin-bottom: 6px;
  width: max-content;
}

.baner-down-first-bx .banner-down-book-flx .books-audio .title p {
  color: var(--white-clr);
  text-transform: capitalize;
  font-weight: 700;
  margin: 0;
  letter-spacing: 1px;
}

.banner-down-book-flx .books-audio .book-title {}

.banner-down-book-flx .books-audio .book-title .heading-four {
  color: #1e1e1e;
}

.banner-down-book-flx .books-audio .book-title p {
  color: #bbb;
  text-transform: capitalize;
}

.custom-audio-player {
  width: 210px;
  display: grid;
  margin-top: 15px;
}

#play-pause-btn {
  background-color: var(--white-clr);
  color: var(--black-clr);
  border: none;
  border-radius: 30px;
  width: 85px;
  height: 85px;
  cursor: pointer;
  font-size: 50px;
  position: absolute;
  top: -30px;
  right: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#seek-bar {
  cursor: pointer;
  outline: none;
  border: none;
  appearance: none;
  border-bottom: 2px solid black;
  border-radius: 10px;
  height: 0;
}

/* Custom Thumb for WebKit Browsers (Chrome, Safari, Edge) */
#seek-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  /* Circle size */
  height: 10px;
  background: var(--black-clr);
  /* Circle color */
  border: 2px solid var(--black-clr);
  /* Border around the circle */
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-in-out;
}

.custom-audio-player .current-tm {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.custom-audio-player .current-tm span {
  color: #1d1d1d;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 12px;
  letter-spacing: 1.6px;
  text-transform: capitalize;
}

.baner-down-first-bx .banner-first-para {
  margin-top: 34px;
}

.baner-down-first-bx .banner-first-para p {
  color: var(--black-clr);
  font-size: 14px;
  margin: 0px;
}

.baner-down-first-bx .banner-first-para .btm-img {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 30px;
}

.baner-down-first-bx .banner-first-para .btm-img img {
  width: auto;
}

.banner-down-bk-audio .banner-down-second-bx {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 40px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  position: relative;
  width: 16%;
}

.banner-down-bk-audio .banner-down-second-bx .banner-rev {
  text-align: center;
}

.banner-down-second-bx .banner-rev .heading-three {
  color: #272727;
}

.banner-down-second-bx .banner-rev p {}

.banner-down-second-bx .banner-rev img.star-icon {
  width: auto;
  display: block;
  margin: 30px auto;
}

.banner-down-second-bx .banner-rev img.rev-auth {
  width: auto;
}

.banner-down-bk-audio .banner-down-third-bx {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 40px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  position: relative;
  width: 21%;
  margin-right: 10px;
}

.banner-down-bk-audio .banner-down-third-bx .awards-title {
  background: #ededed;
  border-radius: 11px;
  padding: 7px 15px;
  width: max-content;
}

.banner-down-bk-audio .banner-down-third-bx .awards-title p {
  margin-bottom: 0;
  color: #8e8e8e;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1.96px;
  text-transform: uppercase;
}

.banner-down-bk-audio .banner-down-third-bx .awards-items {
  display: flex;
  flex-wrap: wrap;
  row-gap: 69px;
  column-gap: 64px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.banner-down-bk-audio .banner-down-third-bx .awards-items img {
  width: 90px;
}

.banner-btm-form-main-sec .banner-down-form {
  /* background: #ffffff; */
  padding: 30px 20px;
  /* border-radius: 40px; */
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
  position: relative;
  background: url(../images/icons/subtract-second.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 34%;
}

.banner-btm-form-main-sec .banner-down-form .heading-three {
  color: #1e1e1e;
  width: 50%;
}

.banner-btm-form-main-sec .banner-down-form p {
  color: #131313;
  text-transform: capitalize;
}

.banner-btm-form-main-sec .banner-down-form form {}

.banner-btm-form-main-sec .banner-down-form form input,
.banner-btm-form-main-sec .banner-down-form form select,
.banner-btm-form-main-sec .banner-down-form form textarea {
  border: none;
  border-bottom: 1px solid #bebebe;
  width: 100%;
  padding: 10px 0px;
  color: #131313;
  font-size: 17px;
  line-height: 24px;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  height: 58px;
  font-family: "bomstad-display-regular";
}


.banner-btm-form-main-sec .banner-down-form form select {
  padding: 10px 5px;
}


.banner-btm-form-main-sec .banner-down-form form textarea {
  height: 100px;
  resize: none;
}

.banner-btm-form-main-sec .banner-down-form form input::placeholder,
.banner-btm-form-main-sec .banner-down-form form textarea::placeholder {
  color: #131313;
}

.banner-btm-form-main-sec .banner-down-form form .form-btn {
  background-color: var(--white-clr);
  color: var(--black-clr);
  border: none;
  border-radius: 25px;
  width: 175px;
  height: 85px;
  cursor: pointer;
  position: absolute;
  top: -30px;
  right: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-btm-form-main-sec .banner-down-form form .form-btn button {
  background: transparent;
  border: none;
  color: var(--black-clr);
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  line-height: 29px;
  /* 29.241px */
  letter-spacing: 1.8px;
  text-transform: uppercase;
}


/* Banner Down Form Section CSS End Here */

/* Genre Section CSS Start Here */

section.genre-sec-main {
  padding: 100px 0px 150px;
  background: #f2f2f2;
}

.genre-sec-main .genre-content-main-wrap {}

.genre-content-main-wrap .genre-content-flx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.genre-content-main-wrap .genre-content-flx p {
  margin: 0;
  width: 60%;
  color: var(--black-clr);
}

.genre-content-main-wrap .genre-content-flx a {
  font-size: 20px;
  line-height: 27px;
  text-transform: uppercase;
  color: var(--black-clr);
  letter-spacing: 10px;
  padding-bottom: 17px;
  position: relative;
}

.genre-content-main-wrap .genre-content-flx a:after {
  content: "";
  border: 1px solid black;
  position: absolute;
  width: 207px;
  height: 0px;
  bottom: 0;
  right: 0;
}

.genre-content-main-wrap .genre-main-content {
  display: grid;
  grid-template-columns: 60% 40%;
  justify-content: center;
}

.genre-main-content .genre-content-list {}

.genre-main-content .genre-content-list .genre-content-item {
  position: relative;
}

.genre-content-list .genre-content-item .heading-three {
  color: var(--black-clr);
  transition: 0.3s all ease-in;
  margin: 0;
}

.genre-main-content .genre-content-list .genre-content-item p {
  opacity: 0;
  visibility: hidden;
  bottom: 0px;
  /* position: absolute; */
  transform: scaleY(0);
  transform-origin: top;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out,
    bottom 0.5s ease-in-out, transform 0.5s ease-in-out;
  color: var(--black-clr);
  left: 0;
  font-size: 14px;
  line-height: 21px;
}

.genre-main-content .genre-content-list .genre-content-item:hover p {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

.genre-main-content .genre-content-list .genre-content-item:hover .heading-three {
  color: var(--primary-colr);
}

.genre-main-content .genre-content-right-image {}

.genre-main-content .genre-content-right-image .gentre-right-book-image {}

.genre-content-right-image .gentre-right-book-image img {
  width: 100%;
}

.genre-main-content .genre-content-right-image .genre-abs-img {}

.genre-main-content .genre-content-right-image .genre-abs-img img {
  transition: 0.3s all ease-in;
  opacity: 0;
  visibility: hidden;
  width: auto;
  position: absolute;
  /* transform: translateX(100%); */
  transition: transform 1.5s ease, opacity 1.5s ease, visibility 1.5s ease;
}

.genre-content-right-image .genre-abs-img img:nth-child(8) {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  /* Default position */
}

.genre-content-item.for-mobile {
  display: none;
}


/* For Small Screens */
.accordion-item.genre-content-item.for-mobile {
  margin-bottom: 30px;
}

.genre-content-item.for-mobile button.accordion-button .heading-three {
  color: var(--black-clr);
  transition: 0.3s all ease-in;
  margin: 0;
  font-size: 40px;
  line-height: 47px;
  font-family: "Tartuffo-Trial-Bold";
  text-transform: capitalize;
}

.genre-main-content .genre-content-list .genre-content-item.for-mobile p {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: none;
  color: var(--black-clr);
  font-size: 14px;
  line-height: 21px;
}

.genre-main-content .genre-content-list .genre-content-item.for-mobile:hover p {
  opacity: 1;
  visibility: visible;
  transform: none;
}

/* .genre-main-content .genre-content-list .genre-content-item img, 
.genre-main-content .genre-content-list .genre-content-item img, 
.genre-main-content .genre-content-list .genre-content-item img, 
.genre-main-content .genre-content-list .genre-content-item img, 
.genre-main-content .genre-content-list .genre-content-item img, 
.genre-main-content .genre-content-list .genre-content-item img, 
.genre-main-content .genre-content-list .genre-content-item img {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transform-origin: center;
  transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out,
    center 1.5s ease-in-out, transform 1.5s ease-in-out;
}



.genre-main-content .genre-content-list .genre-content-item:hover img, 
.genre-main-content .genre-content-list .genre-content-item:hover img, 
.genre-main-content .genre-content-list .genre-content-item:hover img, 
.genre-main-content .genre-content-list .genre-content-item:hover img, 
.genre-main-content .genre-content-list .genre-content-item:hover img, 
.genre-main-content .genre-content-list .genre-content-item:hover img, 
.genre-main-content .genre-content-list .genre-content-item:hover img {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
} */
/* For Small Screens */


/* Genre Section CSS End Here */

/* Whats New Section CSS Start Here */

section.what-new-sec-main {
  padding: 50px 0px;
  height: 853px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.what-new-sec-main .whats-new-sec-heading {
  text-align: center;
}

.whats-new-sec-heading .heading-one {
  font-size: 100px;
  line-height: 110px;
  color: var(--heading-clr);
}

.whats-new-sec-heading p {
  font-size: 20px;
  line-height: 27px;
}

.what-new-sec-main .whats-books {
  position: absolute;
  width: 70%;
}

.whats-books .whats-books-inner {
  position: relative;
}

.whats-books .whats-books-inner img {
  width: 100%;
}

.whats-books .whats-books-inner p {
  text-align: center;
  opacity: 0;
  visibility: hidden;
  bottom: -30px;
  position: absolute;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out,
    bottom 1.2s ease-in-out, transform 1.2s ease-in-out;
  color: var(--white-clr);
  font-size: 28px;
  line-height: 35px;
  font-family: "Tartuffo-Trial-Bold";
  left: 50%;
  transform: translateX(-50%);
}

.whats-books .whats-books-inner:hover p {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateX(-50%) scaleY(1);
}

.whats-books .whats-books-inner:not(:hover) p {
  bottom: -30px;
  transform: translateX(-50%) scaleY(0);
}

.whats-books .whats-books-inner:before {
  content: "";
  background: transparent;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.6;
  transition: 0.5s all ease-in;
}

.whats-books .whats-books-inner:hover::before {
  background: #dd1c1c;
}

/* Whats New Section CSS End Here */

/* Service Slider CSS Start Here */
section.service-sec-slider-main {
  background: #f2f2f2;
  padding: 197px 0px 100px;
  position: relative;
}

section.service-sec-slider-main.service-page {
  background: #1C1C1C;
}

.service-sec-slider-main .service-slide-main-content {
  width: 90%;
}

.service-sec-slider-main .service-slide-main-content .heading-one {
  line-height: 70px;
  color: var(--heading-clr);
}

.service-sec-slider-main .service-slide-main-content p {
  color: var(--black-clr);
}

.service-page .service-slide-main-content .heading-one,
.service-page .service-slide-main-content p {
  color: #fff;
}

.service-sec-slider-main .service-slide-main-content .website-main-buttons {}

.service-sec-slider-main .service-slide-main-content .website-main-buttons a.call-btn {
  color: var(--white-clr);
}

.service-sec-slider-main .service-slide-main-content .website-main-buttons a.call-btn:hover {
  color: var(--primary-colr);
  border-color: var(--primary-colr);
}

.service-sec-slider-main .service-slider-main {
  /* overflow-x: hidden;
  overflow-y: visible; */
  flex: 100%;
  max-width: 100%;
  left: 45.33333%;
  position: absolute;
  top: 140px;
  padding-left: 0;
}

.service-slider-main .service-slider-inner button.slick-prev {
  display: none !important;
}

.service-slider-main .service-slider-inner button.slick-next {
  font-size: 0;
  border: none;
}

.service-slider-main .service-slider-inner button.slick-next:before {
  content: "";
  background: url(../images/icons/slider-arrow.svg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  position: absolute;
  width: 70px;
  height: 26px;
  top: -80px;
  right: 50%;
}

.service-page .service-slider-inner button.slick-next:before {
  content: "";
  background: url(../images/icons/slider-arrow-white.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  position: absolute;
  width: 70px;
  height: 26px;
  top: -80px;
  right: 50%;
}

.service-slider-main .service-slider-inner {}

.service-slider-main .service-slider-inner .service-slide-items {
  margin: 0px 15px;
}

.service-slider-inner .service-slide-items .service-slide-content {
  background: var(--white-clr);
  padding: 21px;
  border-radius: 20px;
  transition: 0.3s all ease-in;
}

.service-page .service-slide-items .service-slide-content {
  background: #2D2D2D !important;
}

.service-slide-items .service-slide-content .heading-six {
  color: var(--heading-clr);
  margin: 5px 0px 20px;
  text-transform: capitalize;
}

.service-slide-items .service-slide-content p {
  color: var(--black-clr);
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 30px;
}

.service-sec-slider-main.service-page .service-slide-content .heading-six,
.service-sec-slider-main.service-page .service-slide-content p {
  color: #fff;
}

.service-slide-items .service-slide-content img {
  border-radius: 15px;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-slider-inner .service-slide-items .service-slide-content:hover {
  background: var(--primary-colr);
}

.service-slider-inner .service-slide-items .service-slide-content:hover .heading-six,
.service-slider-inner .service-slide-items .service-slide-content:hover p {
  color: var(--white-clr);
}

/* Service Slider CSS End Here */

/* CTA Section CSS Start Here */
section.cta-main-wrap {
  background: var(--primary-colr);
  padding: 64px 0px;
}

.cta-main-wrap .cta-wrap-heading {}

.cta-wrap-heading .heading-one {
  color: var(--white-clr);
  margin: 0px;
  font-size: 49px;
  line-height: 56px;
}

.cta-main-wrap .website-main-buttons {
  margin: 0px;
  gap: 40px;
  justify-content: end;
}

.cta-main-wrap .website-main-buttons a.read-more-btn {
  color: var(--white-clr);
  background: var(--white-clr);
  width: 272px;
}

.cta-main-wrap .website-main-buttons a.read-more-btn::before {
  background: var(--primary-colr);
}

.cta-main-wrap .website-main-buttons a.read-more-btn:hover {
  color: var(--primary-colr);
  background: var(--white-clr);
}

.cta-main-wrap .website-main-buttons a.call-btn {
  color: var(--white-clr);
}

.cta-main-wrap .website-main-buttons a.call-btn:hover {
  border-color: var(--white-clr);
  color: var(--primary-colr);
}

.cta-line hr {
  color: #fff;
}

/* CTA Section CSS End Here */

/* Content Section Start Here */

section.content-sec-main {
  background-color: #1c1c1c;
}

section.content-sec-main.service-content-main {
  background-color: #DC1B1B;
}

.content-sec-main .content-sec-inner-wrap {
  padding-left: 20%;
}

.service-content-main .content-sec-inner-wrap {
  padding-left: 15%;
  padding-right: 10%;
}

.content-sec-main .content-sec-inner-wrap a img {
  margin-bottom: 30px;
  animation: rotate 10s linear infinite;
}

.content-sec-main .content-sec-inner-wrap .heading-one {
  color: var(--white-clr);
}

.content-sec-main .content-sec-inner-wrap p {
  color: var(--white-clr);
}

.content-sec-main .content-sec-inner-wrap .website-main-buttons {}

.content-sec-main .content-sec-inner-wrap .website-main-buttons a {
  color: var(--white-clr);
  border-color: var(--primary-colr);
}

.content-sec-main .content-sec-inner-wrap .website-main-buttons a:before {
  background: var(--primary-colr);
  border-color: var(--primary-colr);
}

.content-sec-main .content-sec-inner-wrap .website-main-buttons a:hover {
  background: var(--white-clr);
  color: var(--primary-colr);
}

.service-content-main .content-sec-inner-video {
  height: 728px;
}

/* Content Section End Here */

/* Portfolio Section CSS Start Here */
section.portfolio-sec-main {
  padding: 50px 0px;
}

section.portfolio-sec-main.service-port-main {
  background: #272727;
}

.portfolio-sec-main .portfolio-sec-head {
  text-align: center;
}

.portfolio-sec-main .portfolio-sec-head .heading-two {
  color: var(--heading-clr);
}

.portfolio-sec-main .portfolio-sec-head p {
  color: var(--black-clr);
}

.portfolio-sec-main.service-port-main .portfolio-sec-head .heading-two {
  color: #fff;
}

.portfolio-sec-main.service-port-main .portfolio-sec-head p {
  color: #fff;
}

.portfolio-sec-main .portfolio-slide-content {}

.portfolio-sec-main .portfolio-slide-content .slider-products {}

.portfolio-slide-content .slider-products .porfolio-main-content-books {
  display: flex !important;
  align-items: center;
  gap: 100px;
  margin-bottom: 30px;
}

.porfolio-main-content-books .portfolio-books-img {
  width: auto;
}

.porfolio-main-content-books .portfolio-books-img img {
  width: 606px;
  height: 857px;
  object-fit: contain;
}

.porfolio-main-content-books .portfolio-books-content {}

.porfolio-main-content-books .portfolio-books-content .heading-two {
  color: var(--heading-clr);
}

.service-port-main .porfolio-main-content-books .portfolio-books-content .heading-two {
  color: #fff;
}

.porfolio-main-content-books .portfolio-books-content .portfolio-brand-icon {
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 60px 0px;
}

.porfolio-main-content-books .portfolio-books-content .portfolio-brand-icon img {
  width: auto;
}

.service-port-main .porfolio-main-content-books .portfolio-books-content .portfolio-brand-icon img {
  filter: invert(1);
}

.service-port-main .porfolio-main-content-books .portfolio-books-content .portfolio-brand-icon img.amazon {
  filter: invert(0);
}

.portfolio-nav-main {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.portfolio-books-nav img {
  width: 287px;
  height: 406px;
  object-fit: contain;
  opacity: 0.3;
}

.portfolio-sec-main .portfolio-slide-content {}

.portfolio-sec-main .portfolio-slide-content {}

.portfolio-sec-main .portfolio-slide-content .slider-products button.slick-prev {
  display: none !important;
}

.portfolio-sec-main .portfolio-slide-content .slider-products .slick-next {
  font-size: 0px;
  border: none;
}

.portfolio-sec-main .portfolio-slide-content .slider-products .slick-next:after {
  content: "";
  background: url(../images/icons/portfolio-arrow.png);
  position: absolute;
  width: 98px;
  height: 397px;
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  top: 0;
  right: 0;
}

.service-port-main .portfolio-slide-content .slider-products .slick-next:after {
  content: "";
  background: url(../images/icons/portfolio-arrow-white.png);
  position: absolute;
  width: 98px;
  height: 397px;
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  top: 0;
  right: 0;
}

/* Portfolio Section CSS End Here */

/* Contact Form Section Start Here */

section.contact-form-sec {
  position: relative;
  background: #F8F8F8;
  padding: 80px 0;
  z-index: 1;
}

.contact-form-sec .contact-form-video-sec img {
  display: none;
}

.contact-form-sec .contact-form-video-sec #contact-vid {
  width: 1420px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100px;
  z-index: -1;
}

.contact-form-sec .contact-form-content-sec {
  width: 65%;
  margin: 0 auto;
  margin-top: 100px;
}

.contact-form-sec .contact-form-content-sec .heading-one {
  color: var(--primary-colr);
}

.contact-info-form form {
  margin: 20px 0 0 0;
}

.contact-info-form .form-group {
  margin: 0 0 20px;
}

.contact-info-form .form-group input {
  width: 100%;
  background: transparent;
  color: var(--heading-clr);
  font-size: 18px;
  border: none;
  border-radius: 0px;
  border-bottom: 2px solid var(--heading-clr);
  outline: none;
  padding: 15px 5px;
  box-shadow: none;
  font-family: "bomstad-display-regular";
}

.contact-info-form .form-group input::placeholder {
  color: var(--heading-clr);
  font-size: 18px;
}

.contact-info-form .form-group textarea {
  width: 100%;
  height: 120px;
  background: transparent;
  color: var(--black-clr);
  font-size: 18px;
  border: none;
  border-radius: 0px;
  border-bottom: 2px solid var(--black-clr);
  resize: none;
  outline: none;
  padding: 10px 5px;
  box-shadow: none;
  font-family: "bomstad-display-regular";
}

.contact-info-form .form-group textarea::placeholder {
  color: var(--heading-clr);
  font-size: 18px;
}

.contact-info-form .btn-div-secfom {}

.contact-info-form .btn-div-secfom button {
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  font-family: "bomstad-display-regular";
  width: 100%;
  height: 60px;
  border-radius: 10px;
  border: 1px solid var(--primary-colr);
  padding: 5px 5px;
  margin: 0px;
  color: var(--white-clr);
  text-transform: capitalize;
  background: var(--primary-colr);
}

/* Contact Form Section End Here */

/* Testimonial Section CSS Start Here */

section.testimonials-sec-main {
  padding: 50px 0px;
}

section.testimonials-sec-main.service-main {
  padding: 50px 0 100px;
  background: #272727;
}

.testimonials-sec-main .testimonials-head-content {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-sec-main .testimonials-head-content .heading-two {
  color: var(--heading-clr);
}

.testimonials-sec-main.service-main .testimonials-head-content .heading-two {
  color: #fff;
}

.testimonials-sec-main .testimonials-head-content p {
  color: var(--black-clr);
  font-size: 18px;
  line-height: 25px;
}

.testimonials-sec-main.service-main .testimonials-head-content p {
  color: #fff;
}

.testimonials-sec-main .testimonials-sec-content {}

.testimonials-sec-content .testimonial-sec-slider,
.service-main .testimonials-sec-content .testimonial-sec-slider,
.testimonials-sec-content .testimonial-sec-slider-two,
.service-main .testimonials-sec-content .testimonial-sec-slider-two {
  padding: 60px 0px 0px;
  transform: rotate(-5deg);
}


/* .testimonials-sec-content .testimonial-sec-slider .slick-list{
  overflow: visible;
} */

.testimonials-sec-content .testimonial-sec-slide {
  display: flex;
  align-items: center;
  border-radius: 34px;
  border: 3px solid #ff8d8d;
  background: linear-gradient(223deg, #fe3232 3.53%, #bc1111 91.65%);
  padding: 25px 50px;
  gap: 35px;
  margin: 0px 10px;
  /* transform: rotate(-10deg); */
}

.testimonial-sec-slide .testimonial-slide-flx {
  width: 55%;
}

.testimonial-sec-slide .testimonial-slide-flx .testimonial-slide-auth {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 15px;
}

.testimonial-sec-slide .testimonial-slide-flx .testimonial-slide-auth img {
  width: auto;
}

.testimonial-slide-flx .testimonial-slide-auth .testi-auth-name {}

.testimonial-slide-flx .testimonial-slide-auth .testi-auth-name .heading-five {
  color: var(--white-clr);
}

.testimonial-slide-flx .testimonial-slide-auth .testi-auth-name p {
  color: var(--white-clr);
}

.testimonial-sec-slide .testimonial-slide-flx .testi-content-para {}

.testimonial-sec-slide .testimonial-slide-flx .testi-content-para p {
  color: var(--white-clr);
}

.testimonial-sec-slide .testimonial-slide-flx .testi-rev-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-sec-slide .testimonial-slide-flx .testi-rev-content p {
  margin: 0;
  color: var(--white-clr);
  font-size: 20px;
  line-height: 27px;
  font-family: "Tartuffo-Trial-Bold";
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.testimonial-sec-slide .testimonial-slide-flx .testi-rev-content img {
  width: auto;
}

.testimonial-sec-slide .testimonial-slide-image {}

.testimonial-sec-slide .testimonial-slide-image img {
  width: 100%;
  height: auto;
}

/* Testimonial Section CSS End Here */

/*FAQS Section Css Start Here*/
section.faqs-sec-wrap {
  background: #ffffff;
  padding: 50px 0;
}

.faqs-sec-wrap .faqs-sec-head {
  width: 90%;
  margin: 0 auto 50px;
  text-align: center;
}

.faqs-sec-head .heading-one {
  color: var(--heading-clr);
  margin: 0 0 10px;
}

.faqs-sec-wrap .faqs-sec-item {}

.faqs-sec-item .accordion .accordion-item {
  margin: 0 0 0px;
  border-radius: 0px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #929292;
}

.faqs-sec-item .accordion .accordion-item .accordion-header {}

.faqs-sec-item .accordion-item .accordion-header button.accordion-button {
  font-family: "bomstad-display-regular";
  background: transparent;
  color: var(--black-clr);
  font-size: 20px;
  line-height: 27px;
  box-shadow: none;
  border-radius: 0px;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  margin: 0;
}

.faqs-sec-item .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: var(--primary-colr);
}

.faqs-sec-item .accordion-item .accordion-header .accordion-button::after {
  content: "\f078";
  background-image: none;
  background: transparent;
  color: #a9a9a9;
  font-size: 20px;
  font-family: "Font Awesome 5 Pro";
  width: 15px;
  height: 15px;
  line-height: 20px;
  border-radius: 0px;
  text-align: center;
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
}

.faqs-sec-item .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f077";
  color: var(--primary-colr);
  font-size: 20px;
  transform: rotate(0deg);
}

.faqs-sec-item .accordion-item .accordion-collapse {}

.faqs-sec-item .accordion-item .accordion-collapse .accordion-body {
  font-family: "bomstad-display-regular";
  background: transparent;
  color: var(--black-clr);
  font-size: 17px;
  line-height: 24px;
  margin: 0;
  padding: 10px 10px;
  border-radius: 0px;
}

/*FAQS Section Css End Here*/

/* **************************************************************************************************************************************************
  ************************************************************ Home Page CSS End Here ***************************************************************
  ************************************************************************************************************************************************ */


/*******************************************************************Footer Css Start Here*******************************************************************/

footer.footer-main-sec {
  background: #221f20;
  padding: 100px 0px 0px;
}

.footer-main-sec .footer-logo-main {}

.footer-main-sec .footer-logo-main .foot-logo {
  margin-bottom: 45px;
  width: 270px;
  height: 80px;
  object-fit: cover;
}

.footer-main-sec .footer-logo-main .foot-bdge-dv {
  margin-bottom: 20px;
}

.footer-main-sec .footer-logo-main .foot-bdge-dv img {}

.footer-main-sec .footer-logo-main .foot-rev-icons {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

.footer-main-sec .footer-logo-main .foot-rev-icons img {
  height: 20px;
}

.footer-main-sec .footer-logo-main .social-area {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 15px;
  margin: 15px 0 0 0;
}
.footer-main-sec .footer-logo-main .social-area li {
  margin: 0;
}
.footer-main-sec .footer-logo-main .social-area li>a {
  color: #fff;
  font-size: 16px;
}

.footer-main-sec .footer-links-area {}

.footer-links-area .heading-six {
  color: var(--white-clr);
  margin: 0 0 20px 0;
  font-family: "bomstad-display-regular";
}

.footer-links-area ul.footer-nav-links {
  margin: 0px;
}

.footer-links-area ul.footer-nav-links li {
  margin: 0 0 10px 0;
}

.footer-links-area ul.footer-nav-links a {
  color: #fff;
  font-size: 16px;
  line-height: 23px;
  margin: 0;
  transition: all 0.3s ease-in-out;
  display: block;
}

.footer-links-area ul.footer-nav-links a:hover {
  color: var(--primary-colr);
}

.footer-main-sec .foot-med-form {}

.footer-main-sec .foot-med-form .ft-newsletter {}

.foot-med-form .ft-newsletter .search-area {}

.foot-med-form .ft-newsletter .search-area form {
  display: flex;
  align-items: center;
  justify-content: start;
  margin: 30px 0 0 0;
}

.ft-newsletter .search-area form input {
  width: 300px;
  border-radius: 0;
  background: #2d2d2d;
  border-color: #2d2d2d;
  font-size: 17px;
  line-height: 24px;
  font-family: "bomstad-display-regular";
  letter-spacing: 1px;
  padding: 10px 10px 10px 20px;
  box-shadow: none;
  outline: none;
}

.ft-newsletter .search-area form input {
  color: #fff;
}

.ft-newsletter .search-area form input::placeholder {
  color: #fff4f4;
}

.ft-newsletter .search-area form button.btn {
  background: var(--primary-colr);
  border-radius: 0px;
  height: 46px;
  padding: 22px 15px;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ft-newsletter .search-area form button.btn img {
  width: 45px;
}

.foot-med-form .ft-newsletter .ft-bt-address {
  margin-top: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.foot-med-form .ft-newsletter .ft-bt-address .ft-address {
  width: 50%;
}

.foot-med-form .ft-newsletter .ft-bt-address a {
  color: var(--white-clr);
  font-size: 16px;
  line-height: 23px;
  font-weight: 400;
  font-family: "bomstad-display-regular";
  transition: 0.2s all ease-in;
}

.foot-med-form .ft-newsletter .ft-bt-address a:hover {
  color: var(--primary-colr);
}

.ft-btm {
  padding: 12px 12px 0px;
  margin: 15px 0 0;
}

.container.line {
  border-top: 1px solid #707070;
  padding: 12px 12px 10px;
}

.ft-copy p {
  font-size: 17px;
  line-height: 24px;
  color: var(--white-clr);
  font-weight: 400;
  font-family: "bomstad-display-regular";
}

.ft-copy-links {
  display: flex;
  justify-content: end;
  align-items: center;
}

.ft-copy-links ul li a {
  font-size: 14px;
  text-decoration: none;
  color: var(--white-clr);
  padding: 7px 3px;
  position: relative;
  z-index: 1;
  margin: 0 10px;
  transition: all 0.3s ease-in-out;
}

.ft-copy-links ul li a:hover {
  color: var(--primary-colr);
}

.ft-copy-links ul {
  list-style: none;
}

.ft-copy-links ul li a:nth-child(2):before {
  background: none;
}

.ft-copy-links ul li a::before {
  position: absolute;
  right: -18px;
  top: 11px;
  content: "";
  background: var(--white-clr);
  width: 10px;
  height: 10px;
  border-radius: 100%;
}

/*******************************************************************Footer Css End Here*******************************************************************/


/* *********************************************************************************************************************************************************
  ************************************************************** About Page CSS Start Here ***************************************************************** 
  ********************************************************************************************************************************************************** */

/* Banner Section Css Start Here */
section.about-banner-wrap {
  padding: 160px 0 615px;
  background: url(../images/about/banner-bg.png)no-repeat;
  background-position: center center;
  background-size: cover;
}

.about-banner-wrap .about-awards {
  width: 70%;
  margin: 70px auto 0;
}

.about-banner-wrap .about-banner-content p {
  font-size: 20px;
  line-height: 26px;
  width: 70%;
  margin: 0 auto;
}

/* Banner Section Css End Here */

/* About Section Css Start Here */
section.about-sec-wrap {
  padding: 130px 0;
  background-color: #F7F7F7;
  background: url(../images/about/about-bg.png)no-repeat;
  background-position: center center;
  background-size: cover;
}

.about-sec-wrap .about-sec-content {
  margin-right: 150px;
}

.about-sec-wrap .about-sec-content p {
  width: 86%;
  margin-left: auto;
  font-size: 20px;
  line-height: 26px;
}

.about-sec-wrap .website-main-buttons a.read-more-btn {
  color: #000;
  background: var(--primary-colr);
  width: 272px;
}

.about-sec-wrap .website-main-buttons a.read-more-btn::before {
  background: #fff;
  border: 2px solid #000;
}

.about-sec-wrap .website-main-buttons a.read-more-btn:hover {
  color: var(--white-clr);
  background: var(--primary-colr);
}

/* About Section Css End Here */

/* Genre Section Css Start Here */
section.genre-sec-main.about-page {
  background: #272727;
}

.genre-sec-main.about-page .genre-content-main-wrap .genre-content-flx p {
  color: #7B7B7B;
}

.genre-sec-main.about-page .genre-content-main-wrap .genre-content-flx a,
.genre-sec-main.about-page .genre-content-list .genre-content-item .heading-three,
.genre-sec-main.about-page .genre-content-list .genre-content-item p {
  color: #fff;
}

.genre-sec-main.about-page .genre-content-main-wrap .genre-content-flx a:after {
  border: 1px solid #fff;
}

/* Genre Section Css End Here */

/* Contact Section Css Start Here */
section.contact-form-sec.service-contact-form.about-page {
  height: auto;
  background-color: #272727;
  padding: 50px 0 160px;
}

section.contact-form-sec.service-contact-form.about-page::before {
  left: unset;
  right: 5%;
  background: url(../images/about/contact-img.png)no-repeat;
  background-position: center center;
  background-size: cover;
  width: 865px;
  height: 598px;
}

.contact-form-sec.service-contact-form.about-page .contact-form-video-sec {
  margin: 61px 0 0 110px;
}

/* Contact Section Css End Here */

/* *********************************************************************************************************************************************************
  ************************************************************** About Page CSS End Here ******************************************************************* 
  ********************************************************************************************************************************************************** */



/* *******************************************************************************************************************************************************
  *********************************************************** Services Pages CSS Start Here ************************************************************** 
  ******************************************************************************************************************************************************** */


/******************************************************* Service Writing Page CSS Start Here *****************************************************************/
/*Banner Section Css Start Here*/
section.service-banner-main {
  padding: 190px 0 80px;
  background-color: #FF7521;
  /* background: linear-gradient(#FF7725 100%, #B74D0D 63%); */
  position: relative;
}

section.service-banner-main::before {
  content: ' ';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 117, 33, 0), rgba(255, 117, 33, 0.5), rgba(255, 117, 33, 1));
  z-index: 1;
}

section.service-banner-main.extra-page {
  padding: 190px 0 80px;
  background-color: #312E28;
  /* background: linear-gradient(#FF7725 100%, #B74D0D 63%); */
  position: relative;
}

section.service-banner-main.extra-page::before {
  content: ' ';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(247, 213, 116, 0), rgba(247, 213, 116, 0.5), rgba(247, 213, 116, 1));
  z-index: 1;
}


/* section.service-banner-main::before {
  content: ' ';
  background: url(../images/service/service-banner-img.png)no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 14%;
  right: 142px;
  width: 816px;
  height: 1106px;
} */
.service-banner-main .banner-content .heading-one {
  font-size: 230px;
  line-height: 237px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.service-banner-main .banner-content .heading-one.span {
  font-size: 300px;
  margin-right: -95px;
  position: unset;
  z-index: 0;
}

.service-banner-main .website-main-buttons {
  margin: 0px;
  padding: 80px 0 100px;
  gap: 40px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.service-banner-main .website-main-buttons a.read-more-btn {
  color: var(--white-clr);
  background: var(--primary-colr);
  width: 272px;
}

.service-banner-main .website-main-buttons a.read-more-btn::before {
  background: #FF7521;
  border: 2px solid #FF7521;
}

.service-banner-main .website-main-buttons a.read-more-btn:hover {
  color: var(--white-clr);
  background: var(--primary-colr);
  border: 2px solid var(--primary-colr);
}

.service-banner-main .website-main-buttons a.call-btn {
  color: var(--primary-colr);
  background: var(--primary-colr);
  border: 2px solid var(--primary-colr);
}

.service-banner-main .website-main-buttons a.call-btn::before {
  background: var(--white-clr);
  border: 2px solid var(--white-clr);
}

.service-banner-main .website-main-buttons a.call-btn:hover {
  color: var(--white-clr);
}

.service-banner-main.extra-page .website-main-buttons a.read-more-btn {
  color: var(--white-clr);
  background: #312E28;
  width: 272px;
}

.service-banner-main.extra-page .website-main-buttons a.read-more-btn::before {
  background: #B09958;
  border: 2px solid #B09958;
}

.service-banner-main.extra-page .website-main-buttons a.read-more-btn:hover {
  color: var(--white-clr);
  background: #312E28;
  border: 2px solid #312E28;
}

.service-banner-main.extra-page .website-main-buttons a.call-btn {
  color: #312E28;
  background: #312E28;
  border: 2px solid #312E28;
}

.service-banner-main.extra-page .website-main-buttons a.call-btn::before {
  color: #312E28;
  background: var(--white-clr);
  border: 2px solid var(--white-clr);
}

.service-banner-main.extra-page .website-main-buttons a.call-btn:hover {
  color: var(--white-clr);
  background: #312E28;
  border: 2px solid #312E28;
}

.service-banner-main .banner-img img {
  position: absolute;
  top: 12%;
}

.service-banner-main .banner-down-bk-audio {
  margin-left: 25%;
}

.service-banner-main .banner-down-bk-audio .baner-down-first-bx {
  /* background: #ffffff; */
  padding: 20px 15px 10px;
  border-radius: 15px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  position: relative;
  background: url(../images/icons/service-subtract.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 235px;
  width: auto;
  z-index: 1;
}

.service-banner-main .baner-down-first-bx .banner-down-book-flx {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: none;
  padding-bottom: 0px;
  margin-top: 0px;
}

.service-banner-main .baner-down-first-bx .banner-down-book-flx .book img {
  width: 100%;
  height: 100%;
}

.service-banner-main .baner-down-first-bx .banner-first-para .btm-img {
  display: flex;
  align-items: center;
  margin-top: 50px;
  gap: 30px;
}

.service-banner-main .custom-audio-player {
  margin-top: 0px;
}

.service-banner-main #right-arrow-btn {
  background-color: var(--white-clr);
  color: var(--black-clr);
  border: none;
  border-radius: 30px;
  width: 85px;
  height: 85px;
  cursor: pointer;
  font-size: 50px;
  position: absolute;
  top: -32px;
  right: 10.5%;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.service-banner-main .banner-down-form {
  /* background: #ffffff; */
  padding: 15px 20px;
  /* border-radius: 40px; */
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
  position: relative;
  background: url(../images/icons/service-subtract-second.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 30%;
  height: 235px;
  z-index: 1;
}

.service-banner-main .banner-down-form .heading-three {
  color: #1e1e1e;
  width: 60%;
  margin-bottom: 5px;
}

.service-banner-main .banner-down-form p {
  color: #131313;
  text-transform: capitalize;
  margin: 0;
}

.service-banner-main .banner-down-form form {}

.service-banner-main .banner-down-form form input,
.service-banner-main .banner-down-form form select,
.service-banner-main .banner-down-form form textarea {
  font-family: "bomstad-display-regular";
  border: none;
  border-bottom: 1px solid #bebebe;
  width: 100%;
  padding: 10px 8px 0px;
  color: #131313;
  font-size: 15px;
  line-height: 24px;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  height: 45px;
}

.service-banner-main .banner-down-form form textarea {
  height: auto;
  resize: none;
  line-height: 18px;
}

.service-banner-main .banner-down-form form input::placeholder,
.service-banner-main .banner-down-form form textarea::placeholder {
  color: #131313;
}

.service-banner-main .banner-down-form form .form-btn {
  background-color: var(--white-clr);
  color: var(--black-clr);
  border: none;
  border-radius: 25px;
  width: 175px;
  height: 85px;
  cursor: pointer;
  position: absolute;
  top: -30px;
  right: 12%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-banner-main .banner-down-form form .form-btn button {
  background: transparent;
  border: none;
  color: var(--black-clr);
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 29px;
  /* 29.241px */
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.ser-banners button.slick-prev.slick-arrow {
  display: none !important;
}

.ser-banners button.slick-next.slick-arrow {
  background-color: var(--white-clr);
  color: var(--black-clr);
  border: none;
  border-radius: 30px;
  width: 85px;
  height: 85px;
  cursor: pointer;
  /* font-size: 50px; */
  position: absolute;
  bottom: 20%;
  left: 41.1%;
  font-size: 0;
  animation-name: beat;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

.ser-banners.ser-writing-page button.slick-next.slick-arrow,
.ser-banners.ser-editing-page button.slick-next.slick-arrow {
  bottom: 21%;
}

@keyframes beat {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.9);
  }
}

.ser-banners button.slick-next.slick-arrow::after {
  content: '➔';
  font-size: 50px;
  display: block;
  color: #000;
}

/*Banner Section Css End Here*/

/*Whats New Section Css Start Here*/
.servive-whats-new-main .whats-books .whats-books-inner:before {
  width: 88%;
  height: 90%;
}

.servive-whats-new-main .whats-books .whats-books-inner:hover p {
  transform: translateX(-64%) scaleY(1);
}

.servive-whats-new-main .whats-books .whats-books-inner:not(:hover) p {
  transform: translateX(-64%) scaleY(0);
}

/*Whats New Section Css End Here*/

/*Contact Section Css Start Here*/
section.contact-form-sec.service-contact-form {
  height: 695px;
  background-color: #DF3F43;
  position: relative;
  padding: 50px 0;
}

section.contact-form-sec.service-contact-form::before {
  content: ' ';
  background: url(../images/contact-img.png)no-repeat;
  background-size: cover;
  background-position: center bottom;
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 750px;
  height: 510px;
}

.contact-form-sec.service-contact-form .contact-form-video-sec {
  margin: 61px 0 0 220px;
}

.contact-form-sec.service-contact-form .contact-form-video-sec .heading-one {
  font-size: 130px;
  color: #fff;
}

.contact-form-sec.service-contact-form .contact-form-content-sec .heading-one {
  color: #fff;
}

.service-contact-form .contact-info-form .form-group input,
.service-contact-form .contact-info-form .form-group textarea {
  color: #fff;
  border-bottom: 2px solid #fff;
}

.service-contact-form .contact-info-form .form-group input::placeholder,
.service-contact-form .contact-info-form .form-group textarea::placeholder {
  color: #fff;
}

.service-contact-form .contact-info-form .btn-div-secfom button {
  background: #fff;
  color: #BC1111;
  border: 1px solid #fff;
}

/*Contact Section Css End Here*/

/* Content Section Css Start Here */
.service-content-main .content-sec-inner-video img {
  width: 100%;
}

/* Content Section Css End Here */
/*************************************************************** Service Writing Page CSS End Here *****************************************************************/


/*************************************************************** Service Editing Page CSS Start Here *****************************************************************/

/* Banner Section Css Start Here */
section.service-banner-main.editing-page {
  padding: 190px 0 80px;
  background-color: #ED1B24;
  overflow: hidden;
}

section.service-banner-main.editing-page::before {
  background: linear-gradient(rgba(237, 27, 36, 0), rgba(237, 27, 36, 0.5), rgba(237, 27, 36, 1));
}

.service-banner-main.editing-page .website-main-buttons a.read-more-btn {
  color: var(--white-clr);
  background: var(--white-clr);
  width: 272px;
}

.service-banner-main.editing-page .website-main-buttons a.read-more-btn::before {
  background: #ED1B24;
  border: 2px solid #ED1B24;
}

.service-banner-main.editing-page .website-main-buttons a.read-more-btn:hover {
  color: var(--primary-colr);
  background: var(--white-clr);
}

.service-banner-main.editing-page .website-main-buttons a.call-btn {
  color: var(--primary-colr);
  background: #000;
  border: 2px solid var(--primary-colr);
}

.service-banner-main.editing-page .website-main-buttons a.call-btn:hover {
  color: var(--white-clr);
  border: 2px solid #000;
}

/* Banner Section Css End Here */

/* Contact Section Css Start Here */
section.contact-form-sec.service-contact-form.editing-page {
  background-color: rgba(30, 60, 78, 1);
}

section.contact-form-sec.service-contact-form.editing-page::before {
  background: url(../images/editing/contact-img.png)no-repeat;
  background-position: center center;
  background-size: cover;

}

/* Contact Section Css End Here */

/*************************************************************** Service Editing Page CSS End Here *****************************************************************/


/************************************************************* Service Publishing Page CSS Start Here *****************************************************************/

/* Banner Section Css Start Here */
section.service-banner-main.publishing-page {
  padding: 190px 0 80px;
  background: linear-gradient(rgba(0, 39, 44, 1), rgba(95, 216, 221, 1));
}

section.service-banner-main.publishing-page::before {
  background: linear-gradient(rgba(173, 224, 225, 0), rgba(173, 224, 225, 1));
  top: 60%;
  height: 40%;
}

section.service-banner-main.publishing-page.extra-page {
  padding: 190px 0 80px;
  background: #ED1B24;
}

section.service-banner-main.publishing-page.extra-page::before {
  background: linear-gradient(rgba(237, 27, 36, 0), rgba(237, 27, 36, 0.5), rgba(237, 27, 36, 1));
  top: 60%;
  height: 40%;
}

.service-banner-main.editing-page .website-main-buttons a.read-more-btn::before {
  background: #ED1B24;
  border: 1px solid #ED1B24;
}

.service-banner-main.publishing-page .banner-content .heading-one {
  font-size: 80px;
  line-height: 96px;
}

.service-banner-main.publishing-page .banner-content p {
  font-size: 18px;
  line-height: 24px;
  width: 60%;
  margin: 0 auto;
  color: #fff;
}

.service-banner-main.publishing-page .website-main-buttons {
  padding: 50px 0;
}

.service-banner-main.publishing-page .banner-img img {
  position: absolute;
  top: 40%;
  left: 29%;
}

.service-banner-main.publishing-page .banner-down {
  margin-top: 450px;
}

.service-banner-main.publishing-page .website-main-buttons a.read-more-btn {
  color: var(--white-clr);
  background: rgba(44, 61, 61);
  width: 272px;
}

.service-banner-main.publishing-page.extra-page .website-main-buttons a.read-more-btn {
  background: var(--white-clr);
}

.service-banner-main.publishing-page .website-main-buttons a.read-more-btn::before {
  background: linear-gradient(rgba(30, 94, 99), rgba(32, 99, 104));
  border: 2px solid #1F6066;
}

.service-banner-main.publishing-page.extra-page .website-main-buttons a.read-more-btn::before {
  background: #ED1B24;
  border: 1px solid #ED1B24;
}

.service-banner-main.publishing-page .website-main-buttons a.read-more-btn:hover {
  color: var(--white-clr);
  background: rgba(44, 61, 61);
  border: 2px solid rgba(44, 61, 61);
}

.service-banner-main.publishing-page.extra-page .website-main-buttons a.read-more-btn:hover {
  color: var(--primary-colr);
  background: var(--white-clr);
  border: 2px solid var(--white-clr);
}

/* Banner Section Css Start Here */

/* About-1 Section Css Start Here */
section.about-sec-wrap.publishing-page-1 {
  padding: 100px 0;
  background: url(../images/publishing/about-bg-1.png)no-repeat;
  background-position: center center;
  background-size: cover;
}

.about-sec-wrap.publishing-page-1 .about-sec-content {
  margin-left: 150px;
}

.about-sec-wrap.publishing-page-1 .about-sec-content .heading-one {
  margin-bottom: 25px;
}

.about-sec-wrap.publishing-page-1 .about-sec-content p {
  width: auto;
  margin-left: 0;
  font-size: 16px;
  line-height: 22px;
}

.about-sec-wrap.publishing-page-1 .website-main-buttons a.read-more-btn {
  color: rgba(220, 27, 27);
  background: var(--primary-colr);
  width: 272px;
  border: transparent;
}

.about-sec-wrap.publishing-page-1 .website-main-buttons a.read-more-btn::before {
  background: #fff;
  border: 2px solid rgba(220, 27, 27, 1);
}

.about-sec-wrap.publishing-page-1 .website-main-buttons a.read-more-btn:hover {
  color: var(--white-clr);
}

/* About-1 Section Css End Here */

/* Contact Section Css Start Here */
section.contact-form-sec.service-contact-form.publishing-page {
  background-color: rgba(48, 54, 63, 1);
  height: auto;
  padding: 50px 0 122px;
}

section.contact-form-sec.service-contact-form.publishing-page::before {
  background: url(../images/publishing/contact-img.png)no-repeat;
  background-position: center center;
  background-size: cover;
  width: 640px;
  height: 560px;
}

/* Contact Section Css End Here */

/* About-2 Section Css Start Here */
section.about-sec-wrap.publishing-page-2 {
  background: url(../images/publishing/about-bg-2.png)no-repeat;
  background-position: center center;
  background-size: cover;
}

.about-sec-wrap.publishing-page-2 .about-sec-content .heading-one {
  margin-bottom: 25px;
}

.about-sec-wrap.publishing-page-2 .about-sec-content p {
  width: auto;
  margin-left: 0;
  font-size: 16px;
  line-height: 22px;
}

.about-sec-wrap.publishing-page-2 .website-main-buttons a.read-more-btn {
  color: rgba(220, 27, 27);
  background: var(--primary-colr);
  width: 272px;
  border: transparent;
}

.about-sec-wrap.publishing-page-2 .website-main-buttons a.read-more-btn::before {
  background: #fff;
  border: 2px solid rgba(220, 27, 27, 1);
}

.about-sec-wrap.publishing-page-2 .website-main-buttons a.read-more-btn:hover {
  color: var(--white-clr);
}

/* About-2 Section Css End Here */
/************************************************************* Service Publishing Page CSS End Here *****************************************************************/


/************************************************************* Service Marketing Page CSS Start Here ****************************************************************/
/* Banner Section Css Start Here */
section.service-banner-main.marketing-page {
  padding: 190px 0 80px;
  background: rgba(44, 61, 61);
}

section.service-banner-main.marketing-page::before {
  background: linear-gradient(rgba(44, 61, 61, 0), rgba(44, 61, 61, 1));
  top: 60%;
  height: 40%;
}

section.service-banner-main.marketing-page.extra-page {
  padding: 190px 0 80px;
  background: #FF7521;
}

section.service-banner-main.marketing-page.extra-page::before {
  background: linear-gradient(rgba(255, 117, 33, 0), rgba(255, 117, 33, 0.5), rgba(255, 117, 33, 1));
  top: 60%;
  height: 40%;
}

.service-banner-main.marketing-page .website-main-buttons a.read-more-btn {
  color: var(--white-clr);
  background: #1F6066;
  width: 272px;
}

.service-banner-main.marketing-page.extra-page .website-main-buttons a.read-more-btn {
  background: var(--white-clr);
  background: var(--primary-colr);
}

.service-banner-main.marketing-page .website-main-buttons a.read-more-btn::before {
  background: #2D3D3D;
  border: 2px solid #2D3D3D;
}

.service-banner-main.marketing-page.extra-page .website-main-buttons a.read-more-btn::before {
  background: #FF7522;
  border: 2px solid #FF7522;
}

.service-banner-main.marketing-page .website-main-buttons a.read-more-btn:hover {
  color: var(--white-clr);
  background: #1F6066;
}

.service-banner-main.marketing-page.extra-page .website-main-buttons a.read-more-btn:hover {
  color: var(--white-clr);
  background: var(--primary-colr);
}

/* Banner Section Css End Here */

/* About-1 Section Css Start Here */
section.about-sec-wrap.publishing-page-2.marketing-page-2 {
  background: url(../images/marketing/about-bg-1.png)no-repeat;
  background-position: center center;
  background-size: cover;
}

.about-sec-wrap.publishing-page-2.marketing-page-2 .about-sec-content p {
  margin-left: auto;
  width: 90%;
}

/* About-1 Section Css End Here */

/* Contact Section Css Start Here */
section.contact-form-sec.service-contact-form.publishing-page.marketing-page {
  background-color: rgba(42, 27, 30, 1);
}

section.contact-form-sec.service-contact-form.publishing-page.marketing-page::before {
  background: url(../images/marketing/contact-img.png) no-repeat;
  background-position: center center;
  background-size: cover;
  width: 710px;
  height: 600px;
}

/* Contact Section Css End Here */

/* About-2 Section Css Start Here */
section.about-sec-wrap.publishing-page-1.marketing-page-1 {
  background: url(../images/marketing/about-bg-2.png)no-repeat;
  background-position: center center;
  background-size: cover;
}

.about-sec-wrap.publishing-page-1.marketing-page-1 .about-sec-content .heading-one,
.about-sec-wrap.publishing-page-1.marketing-page-1 .about-sec-content p {
  color: #fff;
}

/* About-2 Section Css End Here */
/************************************************************** Service Marketing Page CSS End Here *****************************************************************/


/* *********************************************************************************************************************************************************
  ************************************************************** Services Pages CSS End Here *************************************************************** 
  ********************************************************************************************************************************************************** */



/* *********************************************************************************************************************************************************
  ************************************************************** Contact Page CSS Start Here *************************************************************** 
  ********************************************************************************************************************************************************** */

/* Banner Section Css Start Here */
section.contact-banner-wrap {
  padding: 200px 0 40px;
}

.contact-banner-wrap .contact-awards {
  margin-top: 65px;
}

/* Banner Section Css End Here */

/* Contact Section Css Start Here */
section.contact-form-sec.service-contact-form.contact-page {
  background-color: #F3F3F3;
}

section.contact-form-sec.service-contact-form.contact-page::before {
  background: url(../images/contact/contact-img.png)no-repeat;
  background-position: center center;
  background-size: cover;
  left: 8%;
}

.contact-form-sec.service-contact-form.contact-page .contact-form-video-sec .heading-one {
  color: #FE3232;
}

.contact-form-sec.service-contact-form.contact-page .contact-form-content-sec .heading-one {
  color: #272727;
}

.contact-form-sec.service-contact-form.contact-page .contact-info-form .form-group input,
.contact-form-sec.service-contact-form.contact-page .contact-info-form .form-group textarea {
  color: #272727;
  border-bottom: 2px solid #2D2D2D;
}

.contact-form-sec.service-contact-form.contact-page .contact-info-form .form-group input::placeholder,
.contact-form-sec.service-contact-form.contact-page .contact-info-form .form-group textarea::placeholder {
  color: #272727;
}

.contact-form-sec.service-contact-form.contact-page .contact-info-form .btn-div-secfom button {
  background: #FE3232;
  color: #fff;
  border: 1px solid #BC1111;
}

/* Contact Section Css End Here */

/*************************************************************************
 ------------------ Terms & Conditions Folds Css start Here ---------------------
 -------------------------------------------------------------------------
**************************************************************************/

section.privacy-wrap {
  padding: 160px 0 0px;
  margin: 50px 0;
}

.privacy-head .heading-one {
  text-align: center;
  padding: 50px 0;
  background: #221f20;
  margin: 15px 0;
  border-radius: 7px;
  font-size: 65px;
  line-height: 77px;
  color: #fff;
}

.privacy-head {
  margin: 30px 0;
}

.privacy-content-1 .heading-two {
  font-size: 36px;
}

.privacy-content-1 p {
  color: #8c8c8c;
}

.privacy-content-1 p span {
  color: #1e1e1e;
  font-weight: 700;
  font-family: "Erstoria-Regular";
}

.privacy-content-1 p strong {
  color: #000;
}

.privacy-content-1 p span.first {
  /* color: #8c8c8c; */
}

.privacy-content-1 p.mt-2 {
  margin: 20px 0 16px;
}
.privacy-content-1 p>span {
    color: #1e1e1e;
  font-weight: 700;
font-family: "bomstad-display-regular";
}

.privacy-content-2 .heading-two {
  font-size: 36px;
}

.privacy-content-2 p span {
  color: #1e1e1e;
  font-weight: 700;
  font-family: "Erstoria-Regular";
}

.privacy-content-2 p {
  color: #8c8c8c;
}

.privacy-content-2 .heading-four {
  font-size: 17px;
}
.privacy-content-2 h6 {
  color: #1e1e1e;
    font-weight: 700;
    font-family: "bomstad-display-regular";
}
.privacy-content-2 ul.list {
  list-style: circle;
}
.privacy-content-2 ul.list li {
  margin: 0 0 5px 27px;
  color: #8c8c8c;
}

/*************************************************************************
 ------------------ Terms & Conditions Folds Css End Here ---------------------
 -------------------------------------------------------------------------
**************************************************************************/




@media only screen and (min-width: 1400px) and (max-width: 1875px) {

  /* **************************************************************************************************************************************************
  *************************************************** Home Page Responsive CSS Start Here ***********************************************************
  ************************************************************************************************************************************************ */


  /* Banner Section Responsive Css Start Here */
  .banner-slider-inner .banner-slide-items .banner-slide-heading {
    padding: 160px 0 0;
  }

  .banner-slider-inner .banner-slide-items .banner-slide-heading .heading-one {
    font-size: 50px;
    line-height: 57px;
  }

  section.banner-btm-form-main-sec {
    margin-top: -50px;
    padding-bottom: 50px;
  }

  .banner-btm-form-main-sec .banner-down-bk-audio {
    column-gap: 40px !important;
  }

  .banner-down-bk-audio .baner-down-first-bx {
    width: 48%;
    background: #fff !important;
  }

  .baner-down-first-bx .banner-down-book-flx {
    justify-content: center;
  }

  .baner-down-first-bx .banner-first-para p {
    text-align: center;
  }

  .baner-down-first-bx .banner-first-para .btm-img {
    justify-content: center;
  }

  .banner-down-bk-audio .banner-down-second-bx {
    width: 48%;
    display: flex;
    align-items: center;
  }

  .banner-down-bk-audio .banner-down-third-bx {
    width: 48%;
  }

  .banner-down-bk-audio .banner-down-third-bx .awards-items img {
    width: 90px;
    margin: 0 auto;
  }

  .banner-down-bk-audio .banner-down-third-bx .awards-title {
    margin: 0 auto;
  }

  .banner-btm-form-main-sec .banner-down-form {
    width: 48%;
    background: #fff !important;
    border-radius: 40px;
  }

  .banner-btm-form-main-sec .banner-down-form .heading-three {
    width: auto;
  }

  .banner-down-bk-audio .banner-down-third-bx .awards-items {
    display: grid;
    grid-template-columns: 48% 48%;
    row-gap: 35px;
    column-gap: 20px;
  }

  #play-pause-btn {
    top: -40px;
    right: 15%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }

  .banner-btm-form-main-sec .banner-down-form form .form-btn {
    right: 12%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }

  #first-box {
    order: 1;
  }

  #second-box {
    order: 3;
  }

  #third-box {
    order: 2;
  }

  #fourth-box {
    order: 4;
  }

  /* Banner Section Responsive Css End Here */

  /* Genre Section Responsive Css Start Here */
  section.genre-sec-main {
    padding: 60px 0 150px;
  }

  .genre-main-content .genre-content-right-image .genre-abs-img img {
    width: 32%;
  }

  .genre-content-item.for-mobile {
    display: none;
  }

  /* Genre Section Responsive Css End Here */

  /* Whats New Section Responsive Css Start Here */
  section.what-new-sec-main {
    position: unset;
    height: 700px;
    padding: 350px 0 50px;
  }

  .what-new-sec-main .whats-books {
    transform: translate(0px, -250px) !important;
    position: unset;
    width: auto;
  }

  /* Whats New Section Responsive Css End Here */

  /* Service Section Responsive Css Start Here */
  section.service-sec-slider-main {
    height: 650px;
  }

  /* Service Section Responsive Css Emd Here */

  /* Content Section Responsive Css Start Here */
  section.content-sec-main {
    position: relative;
    z-index: 1;
  }

  .content-sec-main .content-sec-inner-wrap a img {
    width: 30%;
  }

  .content-sec-main .content-sec-inner-wrap {
    padding: 0 10%;
  }

  .content-sec-main .content-sec-inner-wrap .heading-one {
    font-size: 45px;
    line-height: 52px;
  }

  .content-sec-main .content-sec-inner-wrap .website-main-buttons {
    margin: 30px 0 60px;
  }

  .content-sec-main .content-sec-inner-video #content-vid {
    width: 1080px;
    position: absolute;
    right: -240px;
    z-index: -1;
  }

  /* Content Section Responsive Css End Here */

  /* Portfolio Section Responsive Css Start Here */
  .portfolio-sec-main .portfolio-slide-content .slider-products .slick-next:after {
    height: 325px;
    top: 70px;
  }

  /* Portfolio Section Responsive Css End Here */

  /* **************************************************************************************************************************************************
  **************************************************** Home Page Responsive CSS End Here ************************************************************
  ************************************************************************************************************************************************ */


  /* **************************************************************************************************************************************************
  ************************************************** About Page Responsive CSS Start Here ***********************************************************
  ************************************************************************************************************************************************ */

  /* About Section Responsive Css Start Here */
  section.about-sec-wrap {
    padding: 50px 0;
  }

  .about-sec-wrap .about-sec-content {
    margin-right: 60px;
  }

  .about-sec-wrap .about-sec-content .heading-one {
    font-size: 40px;
    line-height: 47px;
  }

  .about-sec-wrap .about-sec-content p {
    width: auto;
    font-size: 16px;
    line-height: 22px;
  }

  /* About Section Responsive Css End Here */

  /* CTA Section Responsive Css Start Here */
  .cta-main-wrap .cta-wrap-heading .heading-one {
    font-size: 49px;
    line-height: 56px;
  }

  /* CTA Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form.about-page {
    height: 600px;
    padding: 0;
  }

  section.contact-form-sec.service-contact-form.about-page::before {
    right: -45%;
    left: 0;
    margin: 0 auto;
    width: 650px;
    height: 460px;
  }

  .contact-form-sec.service-contact-form.about-page .contact-form-video-sec {
    margin: 74px 0 0 90px;
  }

  .contact-form-sec.service-contact-form.about-page .contact-form-video-sec .heading-one {
    font-size: 100px;
  }

  .contact-form-sec.about-page .contact-form-content-sec {
    width: 75%;
    margin-top: 60px;
  }

  .contact-form-sec.about-page .contact-form-content-sec .heading-one {
    font-size: 60px;
    line-height: 67px;
  }

  /* Contact Section Responsive Css End Here */

  /* **************************************************************************************************************************************************
  *************************************************** About Page Responsive CSS End Here ************************************************************
  ************************************************************************************************************************************************ */



  /* **************************************************************************************************************************************************
  ************************************************ Services Pages Responsive CSS Start Here *********************************************************
  ************************************************************************************************************************************************ */

  /********************************************** Book Publishing Page Responsive CSS Start Here *****************************************************/

  /* Banner Section Responsive Css Start Here */
  .ser-banners.single-item {
    height: 1210px;
  }

  section.service-banner-main.publishing-page {
    height: 1210px;
  }

  .service-banner-main.publishing-page .banner-content .heading-one {
    font-size: 70px;
    line-height: 86px;
  }

  .service-banner-main.publishing-page .banner-content p {
    font-size: 20px;
    line-height: 26px;
  }

  .service-banner-main.publishing-page .website-main-buttons {
    padding: 25px 0 50px;
  }

  .service-banner-main.publishing-page .banner-img img {
    top: 42%;
    left: 25%;
    width: 50%;
  }

  .service-banner-main.publishing-page .banner-down {
    margin-top: 380px;
  }

  .service-banner-main .banner-down-bk-audio {
    margin-left: 0;
    width: 676px;
    margin: 0 0 0 auto;
  }

  .service-banner-main .banner-down-bk-audio .baner-down-first-bx {
    height: auto;
    padding: 25px 15px;
    background: #fff;
    border-radius: 25px;
  }

  .service-banner-main .baner-down-first-bx .banner-first-para {
    margin-top: 20px;
  }

  .service-banner-main .baner-down-first-bx .banner-first-para .btm-img {
    margin-top: 0;
    justify-content: center;
  }

  .service-banner-main .banner-down-form {
    margin-right: 0;
    height: auto;
    background: #fff;
    width: 676px;
    margin: 0 auto 0 0;
  }

  .service-banner-main .banner-down-form {
    height: auto;
    background: #fff;
    border-radius: 20px;
  }

  .service-banner-main .banner-down-form .heading-three {
    width: auto;
    font-size: 30px;
    line-height: 42px;
  }

  .service-banner-main .banner-down-form form textarea {
    padding: 10px 0 0;
  }

  .service-banner-main .banner-down-form form .form-btn {
    right: 8%;
    margin: 0 auto;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 140px;
    height: 65px;
    border-radius: 20px;
  }

  .ser-banners button.slick-next.slick-arrow {
    width: 75px;
    height: 75px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    bottom: 24%;
    left: 38%;
  }

  /* Banner Section Responsive Css End Here */

  /* About Section Responsive Css Start Here */
  section.about-sec-wrap.publishing-page-1 {
    padding: 60px 0;
  }

  .about-sec-wrap.publishing-page-1 .about-sec-content {
    margin-left: 0;
    width: 80%;
    margin: 0 auto;
  }

  .about-sec-wrap.publishing-page-1 .about-sec-content .heading-one {
    font-size: 50px;
    line-height: 57px;
  }

  .about-sec-wrap.publishing-page-1 .website-main-buttons a.read-more-btn {
    font-size: 20px;
    line-height: 27px;
    width: 250px;
  }

  section.about-sec-wrap.publishing-page-2 {
    padding: 60px 0;
  }

  .about-sec-wrap.publishing-page-2 .about-sec-content {
    margin-left: 0;
    width: 80%;
    margin: 0 auto;
  }

  .about-sec-wrap.publishing-page-2 .about-sec-content .heading-one {
    font-size: 50px;
    line-height: 57px;
  }

  .about-sec-wrap.publishing-page-2 .website-main-buttons a.read-more-btn {
    font-size: 20px;
    line-height: 27px;
    width: 250px;
  }

  /* About Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form.publishing-page {
    padding: 75px 0;
  }

  section.contact-form-sec.service-contact-form.publishing-page::before {
    left: 2%;
    width: 540px;
    height: 490px;
  }

  .contact-form-sec.service-contact-form.publishing-page .contact-form-video-sec .heading-one {
    font-size: 80px;
  }

  .contact-form-sec.service-contact-form.publishing-page .contact-form-video-sec {
    margin: 18px 0 0 90px;
  }

  .contact-form-sec.publishing-page .contact-form-content-sec {
    width: 75%;
    margin: 21px auto 0;
  }

  .contact-form-sec.publishing-page .contact-form-content-sec .heading-one {
    font-size: 55px;
    line-height: 62px;
  }

  /* Contact Section Responsive Css End Here */


  /*********************************************** Book Publishing Page Responsive CSS End Here ******************************************************/


  /********************************************** Book Marketing Page Responsive CSS Start Here *****************************************************/

  /* Banner Section Responsive Css Start Here */
  .ser-banners.single-item {
    height: 1210px;
  }

  section.service-banner-main.publishing-page.marketing-page {
    height: 1210px;
  }

  .service-banner-main.publishing-page.marketing-page .banner-content .heading-one {
    font-size: 70px;
    line-height: 86px;
  }

  .service-banner-main.publishing-page.marketing-page .banner-content p {
    font-size: 20px;
    line-height: 26px;
  }

  .service-banner-main.publishing-page.marketing-page .website-main-buttons {
    padding: 25px 0 50px;
  }

  .service-banner-main.publishing-page.marketing-page .banner-img img {
    top: 42%;
    left: 25%;
    width: 50%;
  }

  .service-banner-main.publishing-page.marketing-page .banner-down {
    margin-top: 380px;
  }

  /* Banner Section Responsive Css End Here */

  /* About Section Responsive Css Start Here */
  section.about-sec-wrap.publishing-page-1.marketing-page-1 {
    padding: 60px 0;
  }

  .about-sec-wrap.publishing-page-1.marketing-page-1 .about-sec-content {
    margin-left: 0;
    width: 80%;
    margin: 0 auto;
  }

  .about-sec-wrap.publishing-page-1.marketing-page-1 .about-sec-content .heading-one {
    font-size: 50px;
    line-height: 57px;
  }

  .about-sec-wrap.publishing-page-1.marketing-page-1 .website-main-buttons a.read-more-btn {
    font-size: 20px;
    line-height: 27px;
    width: 250px;
  }

  section.about-sec-wrap.publishing-page-2.marketing-page-2 {
    padding: 60px 0;
  }

  .about-sec-wrap.publishing-page-2.marketing-page-2 .about-sec-content {
    margin-left: 0;
    width: 80%;
    margin: 0 auto;
  }

  .about-sec-wrap.publishing-page-2.marketing-page-2 .about-sec-content .heading-one {
    font-size: 50px;
    line-height: 57px;
  }

  .about-sec-wrap.publishing-page-2.marketing-page-2 .website-main-buttons a.read-more-btn {
    font-size: 20px;
    line-height: 27px;
    width: 250px;
  }

  /* About Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form.publishing-page.marketing-page {
    padding: 75px 0;
  }

  section.contact-form-sec.service-contact-form.publishing-page.marketing-page::before {
    left: 2%;
    width: 650px;
    height: 520px;
  }

  .contact-form-sec.service-contact-form.publishing-page.marketing-page .contact-form-video-sec .heading-one {
    font-size: 100px;
  }

  .contact-form-sec.service-contact-form.publishing-page.marketing-page .contact-form-video-sec {
    margin: 0px 0 0 90px;
  }

  .contact-form-sec.publishing-page.marketing-page .contact-form-content-sec {
    width: 75%;
    margin: 21px auto 0;
  }

  .contact-form-sec.publishing-page.marketing-page .contact-form-content-sec .heading-one {
    font-size: 55px;
    line-height: 62px;
  }

  /* Contact Section Responsive Css End Here */

  /*********************************************** Book Marketing Page Responsive CSS End Here ******************************************************/

  /********************************************** Book Writing Page Responsive CSS Start Here *****************************************************/
  /* Content Section Responsive Css Start Here */
  .service-content-main .content-sec-inner-video {
    height: auto;
  }

  /* Content Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form::before {
    left: 7%;
  }

  .contact-form-sec .contact-form-content-sec .heading-one {
    font-size: 52px;
    line-height: 59px;
  }

  /* Contact Section Responsive Css End Here */

  /*********************************************** Book Writing Page Responsive CSS End Here ******************************************************/

  /********************************************** Book Editing Page Responsive CSS Start Here *****************************************************/
  /*********************************************** Book Editing Page Responsive CSS End Here ******************************************************/


  /* **************************************************************************************************************************************************
  ************************************************* Services Pages Responsive CSS End Here **********************************************************
  ************************************************************************************************************************************************ */




  /* **************************************************************************************************************************************************
  ************************************************* Contact Page Responsive CSS Start Here **********************************************************
  ************************************************************************************************************************************************ */

  /* Contact Section Responsive Css Start Here */
  .contact-form-sec.service-contact-form .contact-form-video-sec {
    margin: 68px 0 0 190px;
  }

  .contact-form-sec.service-contact-form .contact-form-video-sec .heading-one {
    font-size: 110px;
  }

  .contact-form-sec.contact-page .contact-form-content-sec {
    margin-top: 40px;
  }

  .contact-form-sec.contact-page .contact-form-content-sec .heading-one {
    font-size: 58px;
    line-height: 65px;
  }

  /* Contact Section Responsive Css End Here */

  /* **************************************************************************************************************************************************
  ************************************************** Contact Page Responsive CSS End Here ***********************************************************
  ************************************************************************************************************************************************ */

}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  /* **************************************************************************************************************************************************
  *************************************************** Home Page Responsive CSS Start Here ***********************************************************
  ************************************************************************************************************************************************ */

  .main-header nav .website-main-buttons a.call-btn {
    width: 160px;
  }

  .navbar-brand img {
    width: 230px;
    height: 60px;
    object-fit: contain;
  }

  .main-header nav .navbar-main-nav ul.navbar-nav {
    gap: 7px;
  }

  .main-header nav .navbar-main-nav ul.navbar-nav a.nav-link {
    font-size: 18px;
    line-height: 50px;
    padding: 15px 15px 0;
  }


  .main-header nav .navbar-main-nav{
    justify-content: space-around;
  }


  /* Banner Section Responsive Css Start Here */
  .banner-slider-inner .banner-slide-items .banner-slide-heading {
    padding: 160px 0 0;
  }

  .banner-slider-inner .banner-slide-items .banner-slide-heading .heading-one {
    font-size: 50px;
    line-height: 57px;
  }

  section.banner-btm-form-main-sec {
    margin-top: -50px;
    padding-bottom: 50px;
  }

  .banner-down-bk-audio .baner-down-first-bx {
    width: 48%;
    background: #fff !important;
  }

  .baner-down-first-bx .banner-down-book-flx {
    justify-content: center;
  }

  .baner-down-first-bx .banner-first-para p {
    text-align: center;
  }

  .baner-down-first-bx .banner-first-para .btm-img {
    justify-content: center;
  }

  .banner-down-bk-audio .banner-down-second-bx {
    width: 48%;
    display: flex;
    align-items: center;
  }

  .banner-down-bk-audio .banner-down-third-bx {
    width: 48%;
  }

  .banner-down-bk-audio .banner-down-third-bx .awards-items img {
    width: 90px;
    margin: 0 auto;
  }

  .banner-down-bk-audio .banner-down-third-bx .awards-title {
    margin: 0 auto;
  }

  .banner-btm-form-main-sec .banner-down-form {
    width: 48%;
    background: #fff !important;
    border-radius: 40px;
  }

  .banner-down-bk-audio .banner-down-third-bx .awards-items {
    display: grid;
    grid-template-columns: 48% 48%;
    row-gap: 35px;
    column-gap: 20px;
  }

  #play-pause-btn {
    top: -40px;
    right: 15%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }

  .banner-btm-form-main-sec .banner-down-form form .form-btn {
    right: 12%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }

  #first-box {
    order: 1;
  }

  #second-box {
    order: 3;
  }

  #third-box {
    order: 2;
  }

  #fourth-box {
    order: 4;
  }

  /* Banner Section Responsive Css End Here */

  /* Genre Section Responsive Css Start Here */
  section.genre-sec-main {
    padding: 30px 0 50px;
  }

  .genre-main-content .genre-content-right-image .genre-abs-img img {
    width: 40%;
    margin-top: 55px;
  }

  .genre-content-item.for-mobile {
    display: none;
  }

  /* Genre Section Responsive Css End Here */

  /* Whats New Section Responsive Css Start Here */
  section.what-new-sec-main {
    position: unset;
    height: 700px;
    padding: 350px 0 50px;
  }

  .what-new-sec-main .whats-books {
    transform: translate(0px, -250px) !important;
    position: unset;
    width: auto;
  }

  /* Whats New Section Responsive Css End Here */

  /* Service Section Responsive Css Start Here */
  section.service-sec-slider-main {
    padding-bottom: 150px;
  }

  .service-sec-slider-main .service-slide-main-content .heading-one {
    font-size: 45px;
    line-height: 52px;
  }

  /* Service Section Responsive Css Emd Here */

  /* CTA Section Responsive Css Start Here */
  .cta-wrap-heading .heading-one {
    font-size: 42px;
    line-height: 49px;
  }

  /* CTA Section Responsive Css End Here */

  /* Content Section Responsive Css Start Here */
  section.content-sec-main {
    position: relative;
    z-index: 1;
  }

  .content-sec-main .content-sec-inner-wrap a img {
    width: 30%;
  }

  .content-sec-main .content-sec-inner-wrap {
    padding: 0 10%;
  }

  .content-sec-main .content-sec-inner-wrap .heading-one {
    font-size: 45px;
    line-height: 52px;
  }

  .content-sec-main .content-sec-inner-wrap .website-main-buttons {
    margin: 30px 0 60px;
  }

  .content-sec-main .content-sec-inner-video #content-vid {
    width: 1080px;
    position: absolute;
    right: -240px;
    z-index: -1;
  }


  /* Content Section Responsive Css End Here */

  /* Portfolio Section Responsive Css Start Here */
  .portfolio-sec-main .portfolio-sec-head .heading-two {
    font-size: 45px;
    line-height: 52px;
  }

  .porfolio-main-content-books .portfolio-books-content .heading-two {
    font-size: 45px;
    line-height: 52px;
  }

  .porfolio-main-content-books .portfolio-books-img img {
    height: 650px;
  }

  .porfolio-main-content-books .portfolio-books-content .portfolio-brand-icon img {
    width: 22%;
  }

  .portfolio-books-nav img {
    width: 330px;
    height: 220px;
  }

  .porfolio-main-content-books .portfolio-books-content .portfolio-brand-icon {
    margin: 30px 0 50px;
  }

  .portfolio-sec-main .portfolio-slide-content .slider-products .slick-next:after {
    width: 100px;
    height: 230px;
    top: 65px;
  }

  /* Portfolio Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec {
    padding: 50px 0;
  }

  .contact-form-sec .contact-form-content-sec .heading-one {
    font-size: 45px;
    line-height: 52px;
  }

  .contact-form-sec .contact-form-video-sec #contact-vid {
    width: 1020px;
    left: 70px;
  }

  /* Contact Section Responsive Css End Here */

  /* Testimonials Section Responsive Css Start Here */
  .testimonials-sec-main .testimonials-head-content .heading-two {
    font-size: 45px;
    line-height: 52px;
  }

  .testimonial-sec-slide .testimonial-slide-flx {
    width: 70%;
  }

  /* Testimonials Section Responsive Css End Here */

  /* FAQs Section Responsive Css Start Here */
  .faqs-sec-head .heading-one {
    font-size: 45px;
    line-height: 52px;
  }

  /* FAQs Section Responsive Css End Here */

  /* **************************************************************************************************************************************************
  **************************************************** Home Page Responsive CSS End Here ************************************************************
  ************************************************************************************************************************************************ */



  /* **************************************************************************************************************************************************
  ************************************************** About Page Responsive CSS Start Here ***********************************************************
  ************************************************************************************************************************************************ */

  /* About Section Responsive Css Start Here */
  section.about-sec-wrap {
    padding: 50px 0;
  }

  .about-sec-wrap .about-sec-content {
    margin-right: 0;
  }

  .about-sec-wrap .about-sec-content .heading-one {
    font-size: 40px;
    line-height: 47px;
  }

  .about-sec-wrap .about-sec-content p {
    width: auto;
    font-size: 16px;
    line-height: 22px;
  }

  /* About Section Responsive Css End Here */


  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form.about-page {
    height: 540px;
    padding: 0;
  }

  section.contact-form-sec.service-contact-form.about-page::before {
    right: -47%;
    left: 0;
    margin: 0 auto;
    width: 600px;
    height: 400px;
  }

  .contact-form-sec.service-contact-form.about-page .contact-form-video-sec {
    margin: 80px 0 0 90px;
  }

  .contact-form-sec.service-contact-form.about-page .contact-form-video-sec .heading-one {
    font-size: 80px;
  }

  .contact-form-sec.about-page .contact-form-content-sec {
    width: 66%;
    margin-top: 60px;
  }

  .contact-form-sec.about-page .contact-form-content-sec .heading-one {
    font-size: 45px;
    line-height: 52px;
  }

  /* Contact Section Responsive Css End Here */

  /* **************************************************************************************************************************************************
  *************************************************** About Page Responsive CSS End Here ************************************************************
  ************************************************************************************************************************************************ */



  /* **************************************************************************************************************************************************
  ************************************************ Services Pages Responsive CSS Start Here *********************************************************
  ************************************************************************************************************************************************ */

  /********************************************** Book Publishing Page Responsive CSS Start Here *****************************************************/

  /* Banner Section Responsive Css Start Here */
  .ser-banners.single-item {
    height: 1020px;
  }

  section.service-banner-main.publishing-page {
    height: 1020px;
  }

  .service-banner-main.publishing-page .banner-content .heading-one {
    font-size: 58px;
    line-height: 74px;
  }

  .service-banner-main.publishing-page .banner-content p {
    font-size: 18px;
    line-height: 24px;
  }

  .service-banner-main.publishing-page .website-main-buttons {
    padding: 25px 0 50px;
  }

  .service-banner-main.publishing-page .website-main-buttons a.read-more-btn {
    font-size: 20px;
    line-height: 27px;
    width: 250px;
  }

  .service-banner-main.publishing-page .banner-img img {
    top: 50%;
    left: 25%;
    width: 50%;
  }

  .service-banner-main.publishing-page .banner-down {
    margin-top: 200px;
  }

  .service-banner-main .banner-down-bk-audio {
    margin-left: 0;
    width: 576px;
    margin: 0 0 0 auto;
  }

  .service-banner-main .banner-down-bk-audio .baner-down-first-bx {
    height: auto;
    padding: 25px 15px;
    background: #fff;
    border-radius: 25px;
  }

  .service-banner-main .banner-down-book-flx .books-audio .book-title .heading-four {
    font-size: 29px;
  }

  .service-banner-main .baner-down-first-bx .banner-first-para {
    margin-top: 20px;
  }

  .service-banner-main .baner-down-first-bx .banner-first-para .btm-img {
    margin-top: 0;
    justify-content: center;
  }

  .service-banner-main .banner-down-form {
    margin-right: 0;
    height: auto;
    background: #fff;
    padding: 8px 20px;
    width: 576px;
    margin: 0 auto 0 0;
  }

  .service-banner-main .banner-down-form {
    height: auto;
    background: #fff;
    border-radius: 20px;
  }

  .service-banner-main .banner-down-form .heading-three {
    width: auto;
    font-size: 30px;
    line-height: 42px;
  }

  .service-banner-main .banner-down-form form textarea {
    padding: 10px 0;
  }

  .service-banner-main .banner-down-form form .form-btn {
    right: 8%;
    margin: 0 auto;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 140px;
    height: 65px;
    border-radius: 20px;
  }

  .ser-banners button.slick-next.slick-arrow {
    width: 75px;
    height: 75px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    bottom: 26.8%;
    left: 38.1%;
  }

  .ser-banners.ser-writing-page button.slick-next.slick-arrow,
  .ser-banners.ser-editing-page button.slick-next.slick-arrow {
    bottom: 15%;
  }

  /* Banner Section Responsive Css End Here */

  /* About Section Responsive Css Start Here */
  section.about-sec-wrap.publishing-page-1 {
    padding: 60px 0;
  }

  .about-sec-wrap.publishing-page-1 .about-sec-content {
    margin-left: 0;
    width: 80%;
    margin: 0 auto;
  }

  .about-sec-wrap.publishing-page-1 .about-sec-content .heading-one {
    font-size: 40px;
    line-height: 47px;
  }

  .about-sec-wrap.publishing-page-1 .website-main-buttons a.read-more-btn {
    font-size: 20px;
    line-height: 27px;
    width: 250px;
  }

  section.about-sec-wrap.publishing-page-2 {
    padding: 60px 0;
  }

  .about-sec-wrap.publishing-page-2 .about-sec-content {
    margin-left: 0;
    width: 80%;
    margin: 0 auto;
  }

  .about-sec-wrap.publishing-page-2 .about-sec-content .heading-one {
    font-size: 40px;
    line-height: 47px;
  }

  .about-sec-wrap.publishing-page-2 .website-main-buttons a.read-more-btn {
    font-size: 20px;
    line-height: 27px;
    width: 250px;
  }

  /* About Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form.publishing-page {
    padding: 75px 0;
  }

  section.contact-form-sec.service-contact-form.publishing-page::before {
    left: 2%;
    width: 530px;
    height: 480px;
  }

  .contact-form-sec.service-contact-form.publishing-page .contact-form-video-sec .heading-one {
    font-size: 80px;
  }

  .contact-form-sec.service-contact-form.publishing-page .contact-form-video-sec {
    margin: 18px 0 0 90px;
  }

  .contact-form-sec.publishing-page .contact-form-content-sec {
    width: 75%;
    margin: 21px auto 0;
  }

  .contact-form-sec.publishing-page .contact-form-content-sec .heading-one {
    font-size: 45px;
    line-height: 52px;
  }

  /* Contact Section Responsive Css End Here */

  /* CTA Section Responsive Css Start Here */
  .cta-main-wrap .website-main-buttons a.read-more-btn {
    width: 250px;
  }

  /* CTA Section Responsive Css End Here */

  /*********************************************** Book Publishing Page Responsive CSS End Here ******************************************************/


  /********************************************** Book Marketing Page Responsive CSS Start Here *****************************************************/

  /* Banner Section Responsive Css Start Here */
  .ser-banners.single-item {
    height: 1020px;
  }

  section.service-banner-main.publishing-page.marketing-page {
    height: 1020px;
  }

  .service-banner-main.publishing-page.marketing-page .banner-content .heading-one {
    font-size: 58px;
    line-height: 74px;
  }

  .service-banner-main.publishing-page.marketing-page .banner-content p {
    font-size: 18px;
    line-height: 24px;
  }

  .service-banner-main.publishing-page.marketing-page .website-main-buttons {
    padding: 25px 0 50px;
  }

  .service-banner-main.publishing-page.marketing-page .website-main-buttons a.read-more-btn {
    font-size: 20px;
    line-height: 27px;
    width: 250px;
  }

  .service-banner-main.publishing-page.marketing-page .banner-img img {
    top: 50%;
    left: 25%;
    width: 50%;
  }

  .service-banner-main.publishing-page.marketing-page .banner-down {
    margin-top: 200px;
  }

  /* Banner Section Responsive Css End Here */

  /* About Section Responsive Css Start Here */
  section.about-sec-wrap.publishing-page-1.marketing-page-1 {
    padding: 60px 0;
  }

  .about-sec-wrap.publishing-page-1.marketing-page-1 .about-sec-content {
    margin-left: 0;
    width: 80%;
    margin: 0 auto;
  }

  .about-sec-wrap.publishing-page-1.marketing-page-1 .about-sec-content .heading-one {
    font-size: 40px;
    line-height: 47px;
  }

  .about-sec-wrap.publishing-page-1.marketing-page-1 .website-main-buttons a.read-more-btn {
    font-size: 20px;
    line-height: 27px;
    width: 250px;
  }

  section.about-sec-wrap.publishing-page-2.marketing-page-2 {
    padding: 60px 0;
  }

  .about-sec-wrap.publishing-page-2.marketing-page-2 .about-sec-content {
    margin-left: 0;
    width: 80%;
    margin: 0 auto;
  }

  .about-sec-wrap.publishing-page-2.marketing-page-2 .about-sec-content .heading-one {
    font-size: 40px;
    line-height: 47px;
  }

  .about-sec-wrap.publishing-page-2.marketing-page-2 .website-main-buttons a.read-more-btn {
    font-size: 20px;
    line-height: 27px;
    width: 250px;
  }

  /* About Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form.publishing-page.marketing-page {
    padding: 75px 0;
  }

  section.contact-form-sec.service-contact-form.publishing-page.marketing-page::before {
    left: 2%;
    width: 605px;
    height: 514px;
  }

  .contact-form-sec.service-contact-form.publishing-page.marketing-page .contact-form-video-sec .heading-one {
    font-size: 80px;
  }

  .contact-form-sec.service-contact-form.publishing-page.marketing-page .contact-form-video-sec {
    margin: 18px 0 0 90px;
  }

  .contact-form-sec.publishing-page.marketing-page .contact-form-content-sec {
    width: 75%;
    margin: 21px auto 0;
  }

  .contact-form-sec.publishing-page.marketing-page .contact-form-content-sec .heading-one {
    font-size: 45px;
    line-height: 52px;
  }

  /* Contact Section Responsive Css End Here */

  /*********************************************** Book Marketing Page Responsive CSS End Here ******************************************************/

  /********************************************** Book Writing Page Responsive CSS Start Here *****************************************************/

  /* Banner Section Responsive Css Start Here */
  .service-banner-main .banner-content .heading-one.span {
    font-size: 240px;
    margin-right: -75px;
  }

  .service-banner-main .banner-content .heading-one {
    font-size: 180px;
    line-height: 187px;
  }

  /* Banner Section Responsive Css End Here */

  /* Content Section Responsive Css Start Here */
  .service-content-main .content-sec-inner-video {
    height: auto;
  }

  /* Content Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form {
    height: 540px;
    padding: 0;
  }

  section.contact-form-sec.service-contact-form::before {
    left: 2%;
    width: 600px;
    height: 400px;
  }

  .contact-form-sec.service-contact-form .contact-form-video-sec {
    margin: 82px 0 0 90px;
  }

  .contact-form-sec.service-contact-form .contact-form-video-sec .heading-one {
    font-size: 80px;
  }

  .contact-form-sec .contact-form-content-sec {
    width: 66%;
    margin-top: 60px;
  }

  .contact-form-sec .contact-form-content-sec .heading-one {
    font-size: 44px;
    line-height: 51px;
  }

  /* Contact Section Responsive Css End Here */

  /*********************************************** Book Writing Page Responsive CSS End Here ******************************************************/

  /********************************************** Book Editing Page Responsive CSS Start Here *****************************************************/
  /*********************************************** Book Editing Page Responsive CSS End Here ******************************************************/


  /* **************************************************************************************************************************************************
  ************************************************* Services Pages Responsive CSS End Here **********************************************************
  ************************************************************************************************************************************************ */



  /* **************************************************************************************************************************************************
  ************************************************* Contact Page Responsive CSS Start Here **********************************************************
  ************************************************************************************************************************************************ */

  /* Banner Section Responsive Css Start Here */
  .contact-banner-wrap .banner-main {
    margin-left: 0;
  }

  .contact-banner-wrap .banner-main .banner-content .heading-one {
    font-size: 45px;
    line-height: 52px;
  }

  .contact-banner-wrap .contact-awards {
    width: auto;
    margin: 40px auto;
  }

  .contact-banner-wrap .contact-awards img:nth-child(1) {
    width: 55px;
    height: 65px;
  }

  .contact-banner-wrap .contact-awards img:nth-child(2) {
    width: 65px;
    height: 65px;
  }

  .contact-banner-wrap .contact-awards img:nth-child(3) {
    width: 65px;
    height: 65px;
  }

  .contact-banner-wrap .contact-awards img:nth-child(4) {
    width: 50px;
    height: 76px;
  }

  /* Banner Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form {
    height: 540px;
    padding: 0;
  }

  section.contact-form-sec.service-contact-form.contact-page::before {
    left: 2%;
    width: 600px;
    height: 400px;
  }

  .contact-form-sec.service-contact-form .contact-form-video-sec {
    margin: 82px 0 0 90px;
  }

  .contact-form-sec.service-contact-form .contact-form-video-sec .heading-one {
    font-size: 80px;
  }

  .contact-form-sec.contact-page .contact-form-content-sec {
    width: 66%;
    margin-top: 60px;
  }

  .contact-form-sec.contact-page .contact-form-content-sec .heading-one {
    font-size: 44px;
    line-height: 51px;
  }

  /* Contact Section Responsive Css End Here */

  /* **************************************************************************************************************************************************
  ************************************************** Contact Page Responsive CSS End Here ***********************************************************
  ************************************************************************************************************************************************ */


}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  /* **************************************************************************************************************************************************
  *************************************************** Home Page Responsive CSS Start Here ***********************************************************
  ************************************************************************************************************************************************ */

  .main-header nav .website-main-buttons a.call-btn {
    width: 160px;
  }

  .navbar-brand img {
    width: 230px;
    height: 60px;
    object-fit: contain;
  }

  .main-header nav .navbar-main-nav ul.navbar-nav {
    gap: 7px;
  }

  .main-header nav .navbar-main-nav ul.navbar-nav a.nav-link {
    font-size: 18px;
    line-height: 50px;
    padding: 15px 15px 0;
  }


  /* Banner Section Responsive Css Start Here */
  .banner-slider-inner .banner-slide-items .banner-slide-heading {
    padding: 160px 0 0;
  }

  .banner-slider-inner .banner-slide-items .banner-slide-heading .heading-one {
    font-size: 50px;
    line-height: 57px;
  }

  section.banner-btm-form-main-sec {
    margin-top: -130px;
    padding-bottom: 50px;
  }

  .banner-down-bk-audio .baner-down-first-bx {
    width: 48%;
    background: #fff !important;
  }

  .banner-down-bk-audio .banner-down-second-bx {
    width: 48%;
    display: flex;
    align-items: center;
  }

  .banner-down-bk-audio .banner-down-third-bx {
    width: 48%;
  }

  .banner-down-bk-audio .banner-down-third-bx .awards-items img {
    width: 90px;
    margin: 0 auto;
  }

  .banner-down-bk-audio .banner-down-third-bx .awards-title {
    margin: 0 auto;
  }

  .banner-btm-form-main-sec .banner-down-form {
    width: 48%;
    background: #fff !important;
    border-radius: 40px;
  }

  .banner-down-bk-audio .banner-down-third-bx .awards-items {
    display: grid;
    grid-template-columns: 48% 48%;
    row-gap: 50px;
    column-gap: 17px;
  }

  #play-pause-btn {
    top: -40px;
    right: 15%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }

  .banner-btm-form-main-sec .banner-down-form form .form-btn {
    right: 12%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }

  #first-box {
    order: 1;
  }

  #second-box {
    order: 3;
  }

  #third-box {
    order: 2;
  }

  #fourth-box {
    order: 4;
  }

  /* Banner Section Responsive Css End Here */

  /* Genre Section Responsive Css Start Here */
  section.genre-sec-main {
    padding: 30px 0 50px;
  }

  .genre-main-content .genre-content-right-image .genre-abs-img img {
    width: 40%;
    margin-top: 55px;
  }

  .genre-content-list .genre-content-item .heading-three {
    font-size: 35px;
    line-height: 42px;
  }

  .genre-main-content .genre-content-list .genre-content-item p {
    line-height: 18px;
  }

  .genre-content-item.for-mobile {
    display: none;
  }

  /* Genre Section Responsive Css End Here */

  /* Whats New Section Responsive Css Start Here */
  section.what-new-sec-main {
    position: unset;
    height: 700px;
    padding: 350px 0 50px;
  }

  .what-new-sec-main .whats-books {
    transform: translate(0px, -250px) !important;
    position: unset;
    width: auto;
  }

  /* Whats New Section Responsive Css End Here */

  /* Service Section Responsive Css Start Here */
  section.service-sec-slider-main {
    padding-bottom: 150px;
  }

  .service-sec-slider-main .service-slide-main-content .heading-one {
    font-size: 45px;
    line-height: 52px;
  }

  /* Service Section Responsive Css Emd Here */

  /* CTA Section Responsive Css Start Here */
  .cta-wrap-heading .heading-one {
    font-size: 35px;
    line-height: 42px;
  }

  /* CTA Section Responsive Css End Here */

  /* Content Section Responsive Css Start Here */
  .content-sec-main .content-sec-inner-wrap {
    padding: 0 10%;
  }

  .content-sec-main .content-sec-inner-wrap .heading-one {
    font-size: 45px;
    line-height: 52px;
  }

  /* Content Section Responsive Css End Here */

  /* Portfolio Section Responsive Css Start Here */
  .portfolio-sec-main .portfolio-sec-head .heading-two {
    font-size: 45px;
    line-height: 52px;
  }

  .porfolio-main-content-books .portfolio-books-content .heading-two {
    font-size: 45px;
    line-height: 52px;
  }

  .porfolio-main-content-books .portfolio-books-img img {
    height: 610px;
  }

  .porfolio-main-content-books .portfolio-books-content .portfolio-brand-icon img {
    width: 22%;
  }

  .portfolio-books-nav img {
    width: 270px;
    height: 250px;
  }

  .porfolio-main-content-books .portfolio-books-content .portfolio-brand-icon {
    margin: 30px 0 50px;
  }

  .portfolio-sec-main .portfolio-slide-content .slider-products .slick-next:after {
    width: 100px;
    height: 230px;
    top: 65px;
  }

  /* Portfolio Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec {
    padding: 50px 0;
  }

  .contact-form-sec .contact-form-content-sec {
    width: 75%;
    margin-top: 0;
  }

  .contact-form-sec .contact-form-content-sec .heading-one {
    font-size: 42px;
    line-height: 49px;
  }

  .contact-info-form .form-group input {
    padding: 10px 5px;
  }

  .contact-form-sec .contact-form-video-sec #contact-vid {
    width: 1020px;
    left: 30px;
  }

  /* Contact Section Responsive Css End Here */

  /* Testimonials Section Responsive Css Start Here */
  .testimonials-sec-main .testimonials-head-content .heading-two {
    font-size: 45px;
    line-height: 52px;
  }

  .testimonial-sec-slide .testimonial-slide-flx {
    width: 70%;
  }

  /* Testimonials Section Responsive Css End Here */

  /* FAQs Section Responsive Css Start Here */
  .faqs-sec-head .heading-one {
    font-size: 45px;
    line-height: 52px;
  }

  /* FAQs Section Responsive Css End Here */

  /* Footer Responsive Css Start Here */
  .foot-med-form .ft-newsletter .ft-bt-address {
    margin-top: 15%;
    flex-direction: column;
    gap: 30px;
  }

  .foot-med-form .ft-newsletter .ft-bt-address .ft-address,
  .foot-med-form .ft-newsletter .ft-bt-address .ft-contact {
    width: 100%;
  }

  /* Footer Responsive Css End Here */

  /* **************************************************************************************************************************************************
  *************************************************** Home Page Responsive CSS Start Here ***********************************************************
  ************************************************************************************************************************************************ */


  /* **************************************************************************************************************************************************
  ************************************************** About Page Responsive CSS Start Here ***********************************************************
  ************************************************************************************************************************************************ */

  /* Banner Section Responsive Css Start Here */
  .about-banner-wrap .about-banner-content .heading-one {
    font-size: 50px;
    line-height: 57px;
  }

  .about-banner-wrap .about-banner-content p {
    font-size: 18px;
    line-height: 24px;
  }

  .about-banner-wrap .about-awards {
    width: 70%;
    margin: 35px auto 0;
  }

  .about-banner-wrap .about-awards img:nth-child(1) {
    width: 60px;
    height: 70px;
  }

  .about-banner-wrap .about-awards img:nth-child(2) {
    width: 75px;
    height: 75px;
  }

  .about-banner-wrap .about-awards img:nth-child(3) {
    width: 75px;
    height: 75px;
  }

  .about-banner-wrap .about-awards img:nth-child(4) {
    width: 55px;
    height: 85px;
  }

  /* Banner Section Responsive Css End Here */

  /* About Section Responsive Css Start Here */
  section.about-sec-wrap {
    padding: 50px 0;
  }

  .about-sec-wrap .about-sec-content {
    margin-right: 0;
  }

  .about-sec-wrap .about-sec-content .heading-one {
    font-size: 40px;
    line-height: 47px;
  }

  .about-sec-wrap .about-sec-content p {
    width: auto;
    font-size: 16px;
    line-height: 22px;
  }

  /* About Section Responsive Css End Here */

  /* CTA Section Responsive Css Start Here */
  .cta-main-wrap.about-page .cta-wrap-heading .heading-one {
    font-size: 42px;
    line-height: 49px;
  }

  /* CTA Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form.about-page {
    height: 540px;
    padding: 0;
  }

  section.contact-form-sec.service-contact-form.about-page::before {
    right: -49%;
    left: 0;
    margin: 0 auto;
    width: 600px;
    height: 400px;
  }

  .contact-form-sec.service-contact-form.about-page .contact-form-video-sec {
    margin: 80px 0 0 30px;
  }

  .contact-form-sec.service-contact-form.about-page .contact-form-video-sec .heading-one {
    font-size: 80px;
  }

  .contact-form-sec.about-page .contact-form-content-sec {
    width: 66%;
    margin-top: 60px;
  }

  .contact-form-sec.about-page .contact-form-content-sec .heading-one {
    font-size: 40px;
    line-height: 47px;
  }

  /* Contact Section Responsive Css End Here */

  /* **************************************************************************************************************************************************
  *************************************************** About Page Responsive CSS End Here ************************************************************
  ************************************************************************************************************************************************ */


  /* **************************************************************************************************************************************************
  ************************************************ Services Pages Responsive CSS Start Here *********************************************************
  ************************************************************************************************************************************************ */

  /********************************************** Book Publishing Page Responsive CSS Start Here *****************************************************/

  /* Banner Section Responsive Css Start Here */
  .ser-banners.single-item {
    height: 1020px;
  }

  section.service-banner-main.publishing-page {
    height: 1020px;
  }

  .service-banner-main.publishing-page .banner-content .heading-one {
    font-size: 52px;
    line-height: 68px;
  }

  .service-banner-main.publishing-page .banner-content p {
    font-size: 18px;
    line-height: 24px;
  }

  .service-banner-main.publishing-page .website-main-buttons {
    padding: 25px 0 50px;
  }

  .service-banner-main .website-main-buttons {
    width: 472px;
    margin: 0 auto;
  }

  .service-banner-main.publishing-page .website-main-buttons a.read-more-btn {
    font-size: 20px;
    line-height: 27px;
    width: 250px;
  }

  .service-banner-main.publishing-page .banner-img img {
    top: 47%;
    left: 23%;
    width: 55%;
  }

  .service-banner-main.publishing-page .banner-down {
    margin-top: 200px;
  }

  .service-banner-main .banner-down-bk-audio {
    margin-left: 0;
    width: 472px;
    margin: 0 0 0 auto;
  }

  .service-banner-main .banner-down-bk-audio .baner-down-first-bx {
    height: auto;
    padding: 20px 15px;
    background: #fff;
    border-radius: 25px;
  }

  .service-banner-main .baner-down-first-bx .banner-first-para {
    margin-top: 20px;
  }

  .service-banner-main .baner-down-first-bx .banner-first-para .btm-img {
    margin-top: 0;
    justify-content: center;
  }

  .service-banner-main .banner-down-form {
    margin-right: 0;
    height: auto;
    background: #fff;
  }

  .service-banner-main .banner-down-form {
    height: auto;
    background: #fff;
    border-radius: 20px;
    width: 472px;
    margin: 0 auto 0 0;
  }

  .service-banner-main .banner-down-form .heading-three {
    width: auto;
    font-size: 30px;
    line-height: 42px;
  }

  .service-banner-main .banner-down-form form textarea {
    padding: 10px 0;
  }

  .service-banner-main .banner-down-form form .form-btn {
    right: 8%;
    margin: 0 auto;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 140px;
    height: 65px;
    border-radius: 20px;
  }

  .ser-banners button.slick-next.slick-arrow {
    width: 75px;
    height: 75px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    bottom: 27%;
    left: 39%;
  }

  .ser-banners.ser-writing-page button.slick-next.slick-arrow,
  .ser-banners.ser-editing-page button.slick-next.slick-arrow {
    bottom: 23%;
  }

  /* Banner Section Responsive Css End Here */

  /* About Section Responsive Css Start Here */
  section.about-sec-wrap.publishing-page-1 {
    padding: 60px 0;
  }

  .about-sec-wrap.publishing-page-1 .about-sec-content {
    margin-left: 0;
    width: 80%;
    margin: 0 auto;
  }

  .about-sec-wrap.publishing-page-1 .about-sec-content .heading-one {
    font-size: 40px;
    line-height: 47px;
  }

  .about-sec-wrap.publishing-page-1 .website-main-buttons a.read-more-btn {
    font-size: 20px;
    line-height: 27px;
    width: 250px;
  }

  section.about-sec-wrap.publishing-page-2 {
    padding: 60px 0;
  }

  .about-sec-wrap.publishing-page-2 .about-sec-content {
    margin-left: 0;
    width: 80%;
    margin: 0 auto;
  }

  .about-sec-wrap.publishing-page-2 .about-sec-content .heading-one {
    font-size: 40px;
    line-height: 47px;
  }

  .about-sec-wrap.publishing-page-2 .website-main-buttons a.read-more-btn {
    font-size: 20px;
    line-height: 27px;
    width: 250px;
  }

  /* About Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form.publishing-page {
    padding: 75px 0;
  }

  section.contact-form-sec.service-contact-form.publishing-page::before {
    left: 2%;
    width: 510px;
    height: 460px;
  }

  .contact-form-sec.service-contact-form.publishing-page .contact-form-video-sec .heading-one {
    font-size: 80px;
  }

  .contact-form-sec.service-contact-form.publishing-page .contact-form-video-sec {
    margin: 12px 0 0 90px;
  }

  .contact-form-sec.publishing-page .contact-form-content-sec {
    width: 75%;
    margin: 21px auto 0;
  }

  .contact-form-sec.publishing-page .contact-form-content-sec .heading-one {
    font-size: 40px;
    line-height: 47px;
  }

  /* Contact Section Responsive Css End Here */

  /* CTA Section Responsive Css Start Here */
  .cta-main-wrap .website-main-buttons a.read-more-btn {
    width: 250px;
  }

  /* CTA Section Responsive Css End Here */

  /*********************************************** Book Publishing Page Responsive CSS End Here ******************************************************/


  /********************************************** Book Marketing Page Responsive CSS Start Here *****************************************************/

  /* Banner Section Responsive Css Start Here */
  .ser-banners.single-item {
    height: 1020px;
  }

  section.service-banner-main.publishing-page.marketing-page {
    height: 1020px;
  }

  .service-banner-main.publishing-page.marketing-page .banner-content .heading-one {
    font-size: 52px;
    line-height: 68px;
  }

  .service-banner-main.publishing-page.marketing-page .banner-content p {
    font-size: 18px;
    line-height: 24px;
  }

  .service-banner-main.publishing-page.marketing-page .website-main-buttons {
    padding: 25px 0 50px;
  }

  .service-banner-main .website-main-buttons {
    width: 472px;
    margin: 0 auto;
  }

  .service-banner-main.publishing-page.marketing-page .website-main-buttons a.read-more-btn {
    font-size: 20px;
    line-height: 27px;
    width: 250px;
  }

  .service-banner-main.publishing-page.marketing-page .banner-img img {
    top: 47%;
    left: 23%;
    width: 55%;
  }

  .service-banner-main.publishing-page.marketing-page .banner-down {
    margin-top: 200px;
  }

  /* Banner Section Responsive Css End Here */

  /* About Section Responsive Css Start Here */
  section.about-sec-wrap.publishing-page-1.marketing-page-1 {
    padding: 60px 0;
  }

  .about-sec-wrap.publishing-page-1.marketing-page-1 .about-sec-content {
    margin-left: 0;
    width: 80%;
    margin: 0 auto;
  }

  .about-sec-wrap.publishing-page-1.marketing-page-1 .about-sec-content .heading-one {
    font-size: 40px;
    line-height: 47px;
  }

  .about-sec-wrap.publishing-page-1.marketing-page-1 .website-main-buttons a.read-more-btn {
    font-size: 20px;
    line-height: 27px;
    width: 250px;
  }

  section.about-sec-wrap.publishing-page-2.marketing-page-2 {
    padding: 60px 0;
  }

  .about-sec-wrap.publishing-page-2.marketing-page-2 .about-sec-content {
    margin-left: 0;
    width: 80%;
    margin: 0 auto;
  }

  .about-sec-wrap.publishing-page-2.marketing-page-2 .about-sec-content .heading-one {
    font-size: 40px;
    line-height: 47px;
  }

  .about-sec-wrap.publishing-page-2.marketing-page-2 .website-main-buttons a.read-more-btn {
    font-size: 20px;
    line-height: 27px;
    width: 250px;
  }

  /* About Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form.publishing-page.marketing-page {
    padding: 75px 0;
  }

  section.contact-form-sec.service-contact-form.publishing-page.marketing-page::before {
    left: 2%;
    width: 570px;
    height: 480px;
  }

  .contact-form-sec.service-contact-form.publishing-page.marketing-page .contact-form-video-sec .heading-one {
    font-size: 80px;
  }

  .contact-form-sec.service-contact-form.publishing-page.marketing-page .contact-form-video-sec {
    margin: 12px 0 0 90px;
  }

  .contact-form-sec.publishing-page.marketing-page .contact-form-content-sec {
    width: 75%;
    margin: 10px auto 0;
  }

  .contact-form-sec.publishing-page.marketing-page .contact-form-content-sec .heading-one {
    font-size: 40px;
    line-height: 47px;
  }

  /* Contact Section Responsive Css End Here */

  /*********************************************** Book Marketing Page Responsive CSS End Here ******************************************************/

  /********************************************** Book Writing Page Responsive CSS Start Here *****************************************************/

  /* Banner Section Responsive Css Start Here */
  .service-banner-main .banner-content .heading-one.span {
    font-size: 200px;
    margin-right: -75px;
  }

  .service-banner-main .banner-content .heading-one {
    font-size: 140px;
    line-height: 147px;
  }

  /* Banner Section Responsive Css End Here */

  /* Content Section Responsive Css Start Here */
  .service-content-main .content-sec-inner-video {
    height: auto;
  }

  /* Content Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form {
    height: 540px;
    padding: 0;
  }

  section.contact-form-sec.service-contact-form::before {
    left: 2%;
    width: 600px;
    height: 400px;
  }

  .contact-form-sec.service-contact-form .contact-form-video-sec {
    margin: 82px 0 0 90px;
  }

  .contact-form-sec.service-contact-form .contact-form-video-sec .heading-one {
    font-size: 80px;
  }

  .contact-form-sec .contact-form-content-sec {
    width: 66%;
    margin-top: 60px;
  }

  .contact-form-sec .contact-form-content-sec .heading-one {
    font-size: 39px;
    line-height: 46px;
  }

  /* Contact Section Responsive Css End Here */

  /*********************************************** Book Writing Page Responsive CSS End Here ******************************************************/

  /********************************************** Book Editing Page Responsive CSS Start Here *****************************************************/

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form {
    height: 540px;
    padding: 0;
  }

  section.contact-form-sec.service-contact-form::before {
    left: 2%;
    width: 600px;
    height: 400px;
  }

  .contact-form-sec.service-contact-form .contact-form-video-sec {
    margin: 82px 0 0 90px;
  }

  .contact-form-sec.service-contact-form .contact-form-video-sec .heading-one {
    font-size: 80px;
  }

  .contact-form-sec .contact-form-content-sec {
    width: 66%;
    margin-top: 60px;
  }

  .contact-form-sec .contact-form-content-sec .heading-one {
    font-size: 39px;
    line-height: 46px;
  }

  /* Contact Section Responsive Css End Here */

  /*********************************************** Book Editing Page Responsive CSS End Here ******************************************************/


  /* **************************************************************************************************************************************************
  ************************************************* Services Pages Responsive CSS End Here **********************************************************
  ************************************************************************************************************************************************ */



  /* **************************************************************************************************************************************************
  ************************************************* Contact Page Responsive CSS Start Here **********************************************************
  ************************************************************************************************************************************************ */

  /* Banner Section Responsive Css Start Here */
  .contact-banner-wrap .banner-main {
    margin-left: 0;
  }

  .contact-banner-wrap .banner-main .banner-content .heading-one {
    font-size: 45px;
    line-height: 52px;
  }

  .contact-banner-wrap .contact-awards {
    width: auto;
    margin: 40px auto;
  }

  .contact-banner-wrap .contact-awards img:nth-child(1) {
    width: 55px;
    height: 65px;
  }

  .contact-banner-wrap .contact-awards img:nth-child(2) {
    width: 65px;
    height: 65px;
  }

  .contact-banner-wrap .contact-awards img:nth-child(3) {
    width: 65px;
    height: 65px;
  }

  .contact-banner-wrap .contact-awards img:nth-child(4) {
    width: 50px;
    height: 76px;
  }

  /* Banner Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form {
    height: 540px;
    padding: 0;
  }

  section.contact-form-sec.service-contact-form.contact-page::before {
    left: 2%;
    width: 600px;
    height: 400px;
  }

  .contact-form-sec.service-contact-form .contact-form-video-sec {
    margin: 82px 0 0 90px;
  }

  .contact-form-sec.service-contact-form .contact-form-video-sec .heading-one {
    font-size: 80px;
  }

  .contact-form-sec.contact-page .contact-form-content-sec {
    width: 66%;
    margin-top: 60px;
  }

  .contact-form-sec.contact-page .contact-form-content-sec .heading-one {
    font-size: 39px;
    line-height: 46px;
  }

  /* Contact Section Responsive Css End Here */

  /* **************************************************************************************************************************************************
  ************************************************** Contact Page Responsive CSS End Here ***********************************************************
  ************************************************************************************************************************************************ */

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* **************************************************************************************************************************************************
  *************************************************** Home Page Responsive CSS Start Here ***********************************************************
  ************************************************************************************************************************************************ */

  /* Buttons Style Responsive Css */
  .website-main-buttons a.call-btn {
    width: 170px;
  }

  /* Buttons Style Responsive Css */

  /* Header Responsive Css Start Here */


  .main-header {
    position: unset;
    background-color: #1c1c1c;
    padding: 15px 0;
  }

  .main-header nav {
    padding: 10px 0;
    gap: 0px;
  }

  .main-header nav .website-main-buttons a.call-btn {
    border: 1px solid #fff !important;
    background: transparent !important;
  }

  .main-header .navbar button.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }

  .main-header nav .navbar-main-nav ul.navbar-nav {
    gap: 10px;
  }

  .main-header nav .navbar-main-nav ul.navbar-nav a.nav-link {
    color: var(--white-clr) !important;
  }

  .main-header nav .navbar-main-nav ul.navbar-nav li.nav-item.dropdown {
    position: relative;
  }

  .main-header nav .navbar-main-nav ul.navbar-nav li.nav-item.dropdown ul.dropdown-menu {
    position: absolute;
  }


  .main-header .navbar button.navbar-toggler {
    background-color: #dc1b1b;
    border-radius: 15px;
    padding: 8px 8px;
  }

  .main-header nav .website-main-buttons {
    margin: 12px 0 8px;
  }

  .navbar-brand img {
    width: 240px;
    height: auto;
  }

  .navbar-toggler-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(204deg) brightness(104%) contrast(102%);
  }

  .main-header nav .navbar-main-nav {
    justify-content: left;
  }


  /* Header Responsive Css End Here */

  /* Banner Section Responsive Css Start Here */
  section.banner-btm-form-main-sec {
    background-color: #f2f2f2;
    margin-top: -100px;
    padding-bottom: 150px;
  }

  .banner-slider-inner .banner-slide-items .banner-slide-heading {
    width: 70%;
    padding: 100px 0 0;
    left: 15%;
  }

  .banner-slider-inner .banner-slide-items .banner-slide-heading .heading-one {
    font-size: 35px;
    line-height: 42px;
  }

  #play-pause-btn {
    top: -30px;
    right: 20%;
  }


  .banner-down-bk-audio .baner-down-first-bx {
    width: 480px;
    margin: 0 auto;
  }

  .baner-down-first-bx .banner-first-para p {
    text-align: center;
  }

  .baner-down-first-bx .banner-first-para {
    margin-top: 16px;
  }

  .baner-down-first-bx .banner-first-para .btm-img {
    justify-content: center;
  }

  .banner-down-bk-audio .banner-down-second-bx,
  .banner-down-bk-audio .banner-down-third-bx {
    width: 480px;
    margin: 40px auto 0;
  }

  .banner-down-second-bx .banner-rev .heading-three {
    font-size: 35px;
    line-height: 42px;
  }

  .banner-down-bk-audio .banner-down-third-bx .awards-title {
    margin: 0 auto;
  }

  .banner-btm-form-main-sec .banner-down-form .heading-three {
    text-align: center;
    width: auto;
    font-size: 35px;
    line-height: 42px;
  }

  .banner-btm-form-main-sec .banner-down-form p {
    text-align: center;
  }

  .banner-btm-form-main-sec .banner-down-form form .form-btn {
    top: unset;
    bottom: -80px;
    right: 0;
    left: 0;
    margin: 0 auto;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 150px;
    height: 60px;
    border-radius: 20px;
  }

  .banner-btm-form-main-sec .banner-down-form {
    background: #ffffff;
    border-radius: 40px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 480px;
    margin: 40px auto 0;
  }

  .banner-btm-form-main-sec .banner-down-form form .form-btn button {
    font-size: 18px;
  }

  /* Banner Section Responsive Css End Here */

  /* Genre Section Responsive Css Start Here */
  section.genre-sec-main {
    padding: 50px 0;
  }

  .genre-content-main-wrap .genre-content-flx a:after {
    width: 120px;
  }

  .genre-content-main-wrap .genre-content-flx p {
    width: 90%;
    text-align: center;
  }

  .genre-content-main-wrap .genre-main-content {
    display: flex;
    justify-content: center;
  }

  .genre-content-item.for-mobile button.accordion-button .heading-three {
    width: 100%;
    text-align: center;
  }

  .genre-main-content .genre-content-list .genre-content-item.for-mobile p {
    text-align: center;
  }

  .genre-content-item.for-mobile .accordion-body {
    width: 85%;
    margin: 0 auto;
  }

  .genre-content-item.for-big-screens,
  .genre-content-right-image {
    display: none;
  }

  .genre-content-item.for-mobile {
    display: block;
  }

  /* Genre Section Responsive Css End Here */

  /* Whats New Section Responsive Css Start Here */
  section.what-new-sec-main {
    align-items: start;
    height: auto;
  }

  .whats-new-sec-heading .heading-one {
    font-size: 40px;
    line-height: 50px;
  }

  .whats-new-sec-heading p {
    font-size: 18px;
    line-height: 25px;
  }

  .what-new-sec-main .whats-books {
    transform: translate(0, 0) !important;
    position: unset;
    margin: 0 auto;
  }

  /* Whats New Section Responsive Css End Here */

  /* Service Section Responsive Css Start Here */
  section.service-sec-slider-main {
    padding: 50px 0;
  }

  .service-sec-slider-main .service-slide-main-content {
    width: auto;
  }

  .service-sec-slider-main .service-slide-main-content .heading-one {
    font-size: 40px;
    line-height: 47px;
  }

  .service-sec-slider-main .service-slider-main {
    position: unset;
    padding-top: 100px;
  }

  .service-slider-main .service-slider-inner button.slick-next:before {
    top: -10%;
    right: 5%;
  }

  /* Service Section Responsive Css End Here */

  /* CTA Section Responsive Css Start Here */
  .cta-wrap-heading .heading-one {
    font-size: 40px;
    line-height: 47px;
  }

  .cta-main-wrap .website-main-buttons {
    gap: 20px;
    justify-content: center;
  }

  .website-main-buttons a.read-more-btn {
    padding: 10px;
  }

  /* CTA Section Responsive Css End Here */

  /* Content Section Responsive Css Start Here */
  .content-sec-main .content-sec-inner-wrap {
    padding: 0;
  }

  .content-sec-main .content-sec-inner-wrap .heading-one {
    font-size: 40px;
    line-height: 47px;
  }

  /* Content Section Responsive Css End Here */

  /* Portfolio Section Responsive Css Start Here */
  .portfolio-slide-content .slider-products .porfolio-main-content-books {
    flex-direction: column;
    gap: 20px;
  }

  .portfolio-sec-main .portfolio-sec-head .heading-two {
    font-size: 40px;
    line-height: 47px;
  }

  .porfolio-main-content-books .portfolio-books-img img {
    height: 450px;
  }

  .porfolio-main-content-books .portfolio-books-content .heading-two {
    font-size: 40px;
    line-height: 47px;
    text-align: center;
  }

  .porfolio-main-content-books .portfolio-books-content .portfolio-brand-icon {
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin: 60px 0 60px 140px;
  }

  .portfolio-sec-main .portfolio-slide-content .slider-products .slick-next:after {
    height: 200px;
    top: 48%;
    margin-right: 20%;
  }

  .portfolio-books-nav img {
    height: 300px;
  }

  /* Portfolio Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec {
    padding: 50px 0;
  }

  .contact-form-sec .contact-form-content-sec {
    width: 70%;
    text-align: center;
  }

  .contact-form-sec .contact-form-content-sec .heading-one {
    font-size: 40px;
    line-height: 47px;
  }

  .contact-info-form .form-group input {
    padding: 10px 5px;
  }

  .contact-form-sec .contact-form-video-sec img {
    display: block;
    width: 70%;
    margin: 0 auto;
    padding-top: 40px;
  }

  .contact-form-sec .contact-form-video-sec #contact-vid {
    display: none;
  }

  .contact-info-form .btn-div-secfom button {
    width: 50%;
    height: 50px;
  }

  /* Contact Section Responsive Css End Here */

  /* Testimonials Section Responsive Css Start Here */
  .testimonials-sec-main .testimonials-head-content {
    margin: 0;
  }

  .testimonials-sec-main .testimonials-head-content .heading-two {
    font-size: 40px;
    line-height: 47px;
  }

  .testimonials-sec-content .testimonial-sec-slider,
  .testimonials-sec-content .testimonial-sec-slider-two {
    transform: rotate(0deg);
  }

  .testimonials-sec-content .testimonial-sec-slide {
    flex-direction: column;
    padding: 25px;
  }

  .testimonial-sec-slide .testimonial-slide-flx {
    width: auto;
  }

  /* Testimonials Section Responsive Css End Here */

  /* FAQ Section Responsive Css Start Here */
  .faqs-sec-head .heading-one {
    font-size: 40px;
    line-height: 47px;
  }

  /* FAQ Section Responsive Css End Here */


  /* Footer Responsive Css Start Here */
  footer.footer-main-sec {
    padding: 60px 0 0;
  }

  .footer-main-sec .footer-logo-main .foot-rev-icons {
    margin-bottom: 30px;
  }


  .foot-med-form .ft-newsletter .ft-bt-address {
    margin-top: 10%;
    flex-direction: column;
    gap: 50px;
  }

  .foot-med-form .ft-newsletter .ft-bt-address .ft-address,
  .foot-med-form .ft-newsletter .ft-bt-address .ft-contact {
    width: 100%;
  }

  .footer-main-sec .footer-links-area {
    margin-top: 40px;
  }

  .ft-copy p {
    text-align: center;
  }

  .ft-copy-links {
    justify-content: center;
  }

  .ft-copy-links ul li a {
    padding: 7px 0;
  }

  /* Footer Responsive Css End Here */

  /* **************************************************************************************************************************************************
  **************************************************** Home Page Responsive CSS End Here ************************************************************
  ************************************************************************************************************************************************ */


  /* **************************************************************************************************************************************************
  ************************************************** About Page Responsive CSS Start Here ***********************************************************
  ************************************************************************************************************************************************ */

  /* Banner Section Responsive Css Start Here */
  section.about-banner-wrap {
    padding: 50px 0 340px;
  }

  .about-banner-wrap .about-banner-content .heading-one {
    font-size: 45px;
    line-height: 52px;
  }

  .about-banner-wrap .about-banner-content p {
    font-size: 16px;
    line-height: 22px;
    width: auto;
  }

  .about-banner-wrap .about-awards {
    width: auto;
    margin: 10px auto 0;
  }

  .about-banner-wrap .about-awards img:nth-child(1) {
    width: 50px;
    height: 60px;
  }

  .about-banner-wrap .about-awards img:nth-child(2) {
    width: 60px;
    height: 60px;
  }

  .about-banner-wrap .about-awards img:nth-child(3) {
    width: 60px;
    height: 60px;
  }

  .about-banner-wrap .about-awards img:nth-child(4) {
    width: 45px;
    height: 74px;
  }

  /* Banner Section Responsive Css End Here */

  /* About Section Responsive Css Start Here */
  section.about-sec-wrap {
    padding: 50px 0;
    background: none;
  }

  .about-sec-wrap .about-sec-content {
    margin-right: 0;
  }

  .about-sec-wrap .about-sec-content .heading-one {
    font-size: 40px;
    line-height: 47px;
  }

  .about-sec-wrap .about-sec-content p {
    width: auto;
    font-size: 16px;
    line-height: 22px;
  }

  /* About Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form.about-page {
    height: 869px;
  }

  section.contact-form-sec.service-contact-form.about-page::before {
    left: 7%;
    right: 2%;
    width: 365px;
    height: 245px;
    margin: 0 auto;
  }

  .contact-form-sec.service-contact-form.about-page .contact-form-video-sec {
    margin: 0;
    margin-top: 30px;
  }

  .contact-form-sec.service-contact-form .contact-form-video-sec .heading-one {
    font-size: 45px;
  }

  .contact-form-sec.service-contact-form.about-page .contact-form-content-sec {
    margin-top: 0;
  }

  /* Contact Section Responsive Css End Here */

  /* **************************************************************************************************************************************************
  *************************************************** About Page Responsive CSS End Here ************************************************************
  ************************************************************************************************************************************************ */



  /* **************************************************************************************************************************************************
  ************************************************ Services Pages Responsive CSS Start Here *********************************************************
  ************************************************************************************************************************************************ */

  /********************************************** Book Publishing Page Responsive CSS Start Here *****************************************************/

  /* Banner Section Responsive Css Start Here */
  .ser-banners.single-item {
    height: 1090px;
  }

  section.service-banner-main.publishing-page {
    padding: 60px 0 130px;
    height: 1090px;
  }

  .service-banner-main.publishing-page .banner-content .heading-one {
    font-size: 45px;
    line-height: 61px;
  }

  .service-banner-main.publishing-page .banner-content p {
    font-size: 18px;
    line-height: 24px;
    width: 70%;
  }

  .service-banner-main.publishing-page .website-main-buttons {
    padding: 25px 0 50px;
  }

  .service-banner-main.publishing-page .website-main-buttons a.read-more-btn {
    font-size: 20px;
    line-height: 27px;
    width: 250px;
  }

  .service-banner-main.publishing-page .banner-img img {
    top: 66%;
    left: 0;
    width: 100%;
  }

  .service-banner-main.publishing-page .banner-down {
    margin-top: 0;
  }

  .service-banner-main .banner-down-bk-audio {
    margin-left: 0;
    width: 744px;
    margin: 0 auto;
  }

  .service-banner-main .banner-down-bk-audio .baner-down-first-bx {
    height: auto;
    padding: 25px 15px;
    background: #fff;
    border-radius: 25px;
  }

  .service-banner-main .baner-down-first-bx .banner-down-book-flx .book img {
    width: 70%;
  }

  .service-banner-main .baner-down-first-bx .banner-first-para {
    margin-top: 20px;
  }

  .service-banner-main .baner-down-first-bx .banner-first-para .btm-img {
    margin-top: 0;
  }

  .service-banner-main .banner-down-form {
    margin-right: 0;
    height: auto;
    background: #fff;
  }

  .service-banner-main .banner-down-form {
    margin-right: 0;
    margin-top: 30px;
    height: auto;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    width: 744px;
    margin: 30px auto 0;
  }

  .service-banner-main .banner-down-form .heading-three {
    width: auto;
    font-size: 35px;
    line-height: 42px;
    margin: 0 0 10px;
  }

  .service-banner-main .banner-down-form p {
    margin: 0 0 10px;
  }

  .service-banner-main .banner-down-form form input,
  .service-banner-main .banner-down-form form select {
    height: 58px;
    padding: 10px 0;
  }

  .service-banner-main .banner-down-form form textarea {
    height: 100px;
    padding: 10px 0;
  }

  .service-banner-main .banner-down-form form .form-btn {
    top: unset;
    bottom: -80px;
    right: 0;
    left: 0;
    margin: 0 auto;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 170px;
    height: 65px;
    border-radius: 20px;
  }

  .ser-banners button.slick-next.slick-arrow {
    width: 75px;
    height: 75px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    display: none !important;
  }

  /* Banner Section Responsive Css End Here */

  /* About Section Responsive Css Start Here */
  section.about-sec-wrap.publishing-page-1 {
    background: #F8F8F8;
    padding: 60px 0;
  }

  .about-sec-wrap.publishing-page-1 .about-sec-content {
    margin-left: 0;
    width: 80%;
    margin: 0 auto;
  }

  .about-sec-wrap.publishing-page-1 .about-sec-content .heading-one {
    font-size: 40px;
    line-height: 47px;
  }

  .about-sec-wrap.publishing-page-1 .website-main-buttons a.read-more-btn {
    font-size: 20px;
    line-height: 27px;
    width: 250px;
  }

  section.about-sec-wrap.publishing-page-2 {
    background: #F8F8F8;
    padding: 60px 0;
  }

  .about-sec-wrap.publishing-page-2 .about-sec-content {
    margin-left: 0;
    width: 80%;
    margin: 0 auto;
  }

  .about-sec-wrap.publishing-page-2 .about-sec-content .heading-one {
    font-size: 40px;
    line-height: 47px;
  }

  .about-sec-wrap.publishing-page-2 .website-main-buttons a.read-more-btn {
    font-size: 20px;
    line-height: 27px;
    width: 250px;
  }

  /* About Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form.publishing-page {
    height: 908px;
  }

  section.contact-form-sec.service-contact-form.publishing-page::before {
    left: 2%;
    right: 2%;
    width: 315px;
    height: 285px;
    margin: 0 auto;
  }

  .contact-form-sec.service-contact-form.publishing-page .contact-form-video-sec {
    margin: 0;
    margin-top: 30px;
  }

  .contact-form-sec.service-contact-form.publishing-page .contact-form-video-sec .heading-one {
    font-size: 50px;
  }

  .contact-form-sec.service-contact-form.publishing-page .contact-form-content-sec {
    margin-top: 0;
  }

  /* Contact Section Responsive Css End Here */

  /* CTA Section Responsive Css Start Here */
  .cta-main-wrap .website-main-buttons a.read-more-btn {
    width: 250px;
  }

  /* CTA Section Responsive Css End Here */

  /*********************************************** Book Publishing Page Responsive CSS End Here ******************************************************/


  /********************************************** Book Marketing Page Responsive CSS Start Here *****************************************************/

  /* Banner Section Responsive Css Start Here */
  .ser-banners.single-item {
    height: 1090px;
  }

  section.service-banner-main.publishing-page.marketing-page {
    padding: 60px 0 130px;
    height: 1090px;
  }

  .service-banner-main.publishing-page.marketing-page .banner-content .heading-one {
    font-size: 45px;
    line-height: 61px;
  }

  .service-banner-main.publishing-page.marketing-page .banner-content p {
    font-size: 18px;
    line-height: 24px;
    width: 70%;
  }

  .service-banner-main.publishing-page.marketing-page .website-main-buttons {
    padding: 25px 0 50px;
  }

  .service-banner-main.publishing-page.marketing-page .website-main-buttons a.read-more-btn {
    font-size: 20px;
    line-height: 27px;
    width: 250px;
  }

  .service-banner-main.publishing-page.marketing-page .banner-img img {
    top: 66%;
    left: 0;
    width: 100%;
  }

  .service-banner-main.publishing-page.marketing-page .banner-down {
    margin-top: 0;
  }

  /* Banner Section Responsive Css End Here */

  /* About Section Responsive Css Start Here */
  section.about-sec-wrap.publishing-page-1.marketing-page-1 {
    background: #F8F8F8;
    padding: 60px 0;
  }

  .about-sec-wrap.publishing-page-1.marketing-page-1 .about-sec-content {
    margin-left: 0;
    width: 80%;
    margin: 0 auto;
  }

  .about-sec-wrap.publishing-page-1.marketing-page-1 .about-sec-content .heading-one {
    font-size: 40px;
    line-height: 47px;
    color: #000;
  }

  .about-sec-wrap.publishing-page-1.marketing-page-1 .about-sec-content p {
    color: #000;
  }

  .about-sec-wrap.publishing-page-1.marketing-page-1 .website-main-buttons a.read-more-btn {
    font-size: 20px;
    line-height: 27px;
    width: 250px;
  }

  section.about-sec-wrap.publishing-page-2.marketing-page-2 {
    background: #F8F8F8;
    padding: 60px 0;
  }

  .about-sec-wrap.publishing-page-2.marketing-page-2 .about-sec-content {
    margin-left: 0;
    width: 80%;
    margin: 0 auto;
  }

  .about-sec-wrap.publishing-page-2.marketing-page-2 .about-sec-content .heading-one {
    font-size: 40px;
    line-height: 47px;
  }

  .about-sec-wrap.publishing-page-2.marketing-page-2 .about-sec-content p {
    margin-left: 0;
    width: auto;
  }

  .about-sec-wrap.publishing-page-2.marketing-page-2 .website-main-buttons a.read-more-btn {
    font-size: 20px;
    line-height: 27px;
    width: 250px;
  }

  /* About Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form.publishing-page.marketing-page {
    height: 908px;
  }

  section.contact-form-sec.service-contact-form.publishing-page.marketing-page::before {
    left: 4%;
    right: 0%;
    width: 385px;
    height: 285px;
    margin: 0 auto;
  }

  .contact-form-sec.service-contact-form.publishing-page.marketing-page .contact-form-video-sec {
    margin: 0;
    margin-top: 30px;
  }

  .contact-form-sec.service-contact-form.publishing-page.marketing-page .contact-form-video-sec .heading-one {
    font-size: 50px;
  }

  .contact-form-sec.service-contact-form.publishing-page.marketing-page .contact-form-content-sec {
    margin-top: 0;
  }

  /* Contact Section Responsive Css End Here */

  /*********************************************** Book Marketing Page Responsive CSS End Here ******************************************************/

  /********************************************** Book Writing Page Responsive CSS Start Here *****************************************************/

  /* Banner Section Responsive Css Start Here */
  section.service-banner-main {
    padding: 60px 0 130px;
  }

  section.service-banner-main.extra-page {
    padding: 60px 0 130px;
  }

  .service-banner-main .banner-content .heading-one.span {
    font-size: 48px;
    margin: 0;
  }

  .service-banner-main .banner-content .heading-one {
    font-size: 48px;
    line-height: 65px;
  }

  .service-banner-main .website-main-buttons {
    padding: 25px 0 50px;
  }

  .service-banner-main.writing-page .website-main-buttons a.read-more-btn {
    font-size: 20px;
    line-height: 27px;
    width: 250px;
  }

  .service-banner-main.writing-page .website-main-buttons a.call-btn {
    font-size: 20px;
    line-height: 27px;
  }

  .service-banner-main .banner-img img {
    top: 35%;
    left: 20%;
    width: 60%;
  }

  .service-banner-main .banner-down {
    margin-top: 0;
  }

  .service-banner-main.writing-page .website-main-buttons {
    gap: 30px;
  }

  /* Banner Section Responsive Css End Here */

  /* Content Section Responsive Css Start Here */
  .service-content-main .content-sec-inner-video {
    height: auto;
  }

  /* Content Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form {
    height: 877px;
  }

  section.contact-form-sec.service-contact-form::before {
    left: 7%;
    right: 2%;
    width: 385px;
    height: 253px;
    margin: 0 auto;
  }

  .contact-form-sec.service-contact-form .contact-form-video-sec {
    margin: 0;
    margin-top: 30px;
  }

  .contact-form-sec.service-contact-form .contact-form-video-sec .heading-one {
    font-size: 50px;
  }

  .contact-form-sec.service-contact-form .contact-form-content-sec {
    margin-top: 0;
  }

  /* Contact Section Responsive Css End Here */

  /*********************************************** Book Writing Page Responsive CSS End Here ******************************************************/

  /********************************************** Book Editing Page Responsive CSS Start Here *****************************************************/

  /* Banner Section Responsive Css Start Here */
  section.service-banner-main.editing-page {
    padding: 60px 0 130px;
  }

  .service-banner-main.editing-page .website-main-buttons a.read-more-btn {
    font-size: 20px;
    line-height: 27px;
    width: 250px;
  }

  .service-banner-main.editing-page .website-main-buttons a.call-btn {
    font-size: 20px;
    line-height: 27px;
  }

  .service-banner-main.editing-page .website-main-buttons {
    gap: 30px;
  }

  /* Banner Section Responsive Css End Here */

  /*********************************************** Book Editing Page Responsive CSS End Here ******************************************************/


  /* **************************************************************************************************************************************************
  ************************************************* Services Pages Responsive CSS End Here **********************************************************
  ************************************************************************************************************************************************ */




  /* **************************************************************************************************************************************************
  ************************************************* Contact Page Responsive CSS Start Here **********************************************************
  ************************************************************************************************************************************************ */

  /* Banner Section Responsive Css Start Here */
  section.contact-banner-wrap {
    padding: 50px 0 40px;
  }

  .contact-banner-wrap .banner-main {
    margin-left: 0;
  }

  .contact-banner-wrap .banner-main .banner-content .heading-one {
    font-size: 45px;
    line-height: 52px;
  }

  .contact-banner-wrap .contact-awards {
    width: auto;
    margin: 40px auto;
  }

  .contact-banner-wrap .contact-awards img:nth-child(1) {
    width: 50px;
    height: 60px;
  }

  .contact-banner-wrap .contact-awards img:nth-child(2) {
    width: 60px;
    height: 60px;
  }

  .contact-banner-wrap .contact-awards img:nth-child(3) {
    width: 60px;
    height: 60px;
  }

  .contact-banner-wrap .contact-awards img:nth-child(4) {
    width: 45px;
    height: 74px;
  }

  /* Banner Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form.contact-page {
    height: 877px;
  }

  section.contact-form-sec.service-contact-form.contact-page::before {
    left: 7%;
    right: 2%;
    width: 365px;
    height: 245px;
    margin: 0 auto;
  }

  .contact-form-sec.service-contact-form .contact-form-video-sec {
    margin: 0;
    margin-top: 30px;
  }

  .contact-form-sec.service-contact-form .contact-form-video-sec .heading-one {
    font-size: 50px;
  }

  .contact-form-sec.service-contact-form.contact-page .contact-form-content-sec {
    margin-top: 0;
  }

  /* Contact Section Responsive Css End Here */

  /* **************************************************************************************************************************************************
  ************************************************** Contact Page Responsive CSS End Here ***********************************************************
  ************************************************************************************************************************************************ */

}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  /* **************************************************************************************************************************************************
  *************************************************** Home Page Responsive CSS Start Here ***********************************************************
  ************************************************************************************************************************************************ */

  /* Buttons Style Responsive Css */
  .website-main-buttons a.call-btn {
    width: 170px;
    height: 55px;
  }

  /* Buttons Style Responsive Css */

  /* Header Responsive Css Start Here */

  .main-header {
    position: unset;
    background-color: #1c1c1c;
  }

  .main-header nav {
    padding: 10px 0;
    gap: 0px;
  }

  .main-header nav .website-main-buttons a.call-btn {
    border: 1px solid #fff !important;
    background: transparent !important;
  }

  .main-header .navbar button.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }

  .main-header nav .navbar-main-nav ul.navbar-nav {
    gap: 10px;
  }

  .main-header nav .navbar-main-nav ul.navbar-nav a.nav-link {
    color: var(--white-clr) !important;
  }

  .main-header nav .navbar-main-nav ul.navbar-nav li.nav-item.dropdown {
    position: relative;
  }

  .main-header nav .navbar-main-nav ul.navbar-nav li.nav-item.dropdown ul.dropdown-menu {
    position: absolute;
  }


  .main-header .navbar button.navbar-toggler {
    background-color: #dc1b1b;
    border-radius: 15px;
    padding: 8px 8px;
  }

  .main-header nav .website-main-buttons {
    margin: 12px 8px 8px;
  }

  .navbar-brand img {
    width: 240px;
    height: auto;
  }

  .navbar-toggler-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(204deg) brightness(104%) contrast(102%);
  }

  .main-header nav .navbar-main-nav {
    justify-content: left;
  }



  /* Header Responsive Css End Here */

  /* Banner Section Responsive Css Start Here */
  section.banner-btm-form-main-sec {
    background-color: #f2f2f2;
    margin-top: -80px;
    padding-bottom: 150px;
  }

  .banner-slider-inner .banner-slide-items .banner-slide-heading {
    width: 70%;
    padding: 70px 0 0;
    left: 15%;
  }

  .banner-slider-inner .banner-slide-items .banner-slide-heading .heading-one {
    font-size: 35px;
    line-height: 42px;
  }

  #play-pause-btn {
    top: -30px;
    right: 25%;
  }


  .banner-down-bk-audio .baner-down-first-bx {
    width: 480px;
    margin: 0 auto;
  }

  .baner-down-first-bx .banner-first-para p {
    text-align: center;
  }

  .baner-down-first-bx .banner-first-para {
    margin-top: 16px;
  }

  .baner-down-first-bx .banner-first-para .btm-img {
    justify-content: center;
  }

  .banner-down-bk-audio .banner-down-second-bx,
  .banner-down-bk-audio .banner-down-third-bx {
    width: 480px;
    margin: 40px auto 0;
  }

  .banner-down-second-bx .banner-rev .heading-three {
    font-size: 35px;
    line-height: 42px;
  }

  .banner-down-bk-audio .banner-down-third-bx .awards-title {
    margin: 0 auto;
  }

  .banner-btm-form-main-sec .banner-down-form .heading-three {
    text-align: center;
    width: auto;
    font-size: 35px;
    line-height: 42px;
  }

  .banner-btm-form-main-sec .banner-down-form p {
    text-align: center;
  }

  .banner-btm-form-main-sec .banner-down-form form .form-btn {
    top: unset;
    bottom: -80px;
    right: 0;
    left: 0;
    margin: 0 auto;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 150px;
    height: 60px;
    border-radius: 20px;
  }

  .banner-btm-form-main-sec .banner-down-form {
    background: #ffffff;
    border-radius: 40px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 480px;
    margin: 40px auto 0;
  }

  .banner-btm-form-main-sec .banner-down-form form .form-btn button {
    font-size: 18px;
  }

  /* Banner Section Responsive Css End Here */

  /* Genre Section Responsive Css Start Here */
  section.genre-sec-main {
    padding: 50px 0;
  }

  .genre-content-main-wrap .genre-content-flx a:after {
    width: 120px;
  }

  .genre-content-main-wrap .genre-content-flx p {
    width: 90%;
    text-align: center;
  }

  .genre-content-main-wrap .genre-main-content {
    display: flex;
    justify-content: center;
  }

  .genre-content-item.for-mobile button.accordion-button .heading-three {
    width: 100%;
    text-align: center;
  }

  .genre-main-content .genre-content-list .genre-content-item.for-mobile p {
    text-align: center;
  }

  .genre-content-item.for-mobile .accordion-body {
    width: 85%;
    margin: 0 auto;
  }

  .genre-content-item.for-big-screens,
  .genre-content-right-image {
    display: none;
  }

  .genre-content-item.for-mobile {
    display: block;
  }

  /* Genre Section Responsive Css End Here */

  /* Whats New Section Responsive Css Start Here */
  section.what-new-sec-main {
    align-items: start;
    height: auto;
  }

  .whats-new-sec-heading .heading-one {
    font-size: 40px;
    line-height: 50px;
  }

  .whats-new-sec-heading p {
    font-size: 18px;
    line-height: 25px;
  }

  .what-new-sec-main .whats-books {
    transform: translate(0, 0) !important;
    position: unset;
    margin: 0 auto;
  }

  /* Whats New Section Responsive Css End Here */

  /* Service Section Responsive Css Start Here */
  section.service-sec-slider-main {
    padding: 50px 0;
  }

  .service-sec-slider-main .service-slide-main-content {
    width: auto;
  }

  .service-sec-slider-main .service-slide-main-content .heading-one {
    font-size: 35px;
    line-height: 42px;
  }

  .service-sec-slider-main .service-slider-main {
    position: unset;
    padding-top: 100px;
  }

  .service-slider-main .service-slider-inner button.slick-next:before {
    top: -10%;
    right: 5%;
  }

  /* Service Section Responsive Css End Here */

  /* CTA Section Responsive Css Start Here */
  .cta-wrap-heading .heading-one {
    font-size: 35px;
    line-height: 42px;
  }

  .cta-main-wrap .website-main-buttons {
    gap: 20px;
    justify-content: center;
  }

  .cta-main-wrap .website-main-buttons a.read-more-btn {
    height: 55px;
    width: 230px;
  }

  .website-main-buttons a.read-more-btn {
    padding: 10px;
  }

  /* CTA Section Responsive Css End Here */



  /* Content Section Responsive Css Start Here */
  .content-sec-main .content-sec-inner-wrap {
    padding: 0;
  }

  .content-sec-main .content-sec-inner-wrap .heading-one {
    font-size: 35px;
    line-height: 42px;
  }

  /* Content Section Responsive Css End Here */

  /* Portfolio Section Responsive Css Start Here */
  .portfolio-slide-content .slider-products .porfolio-main-content-books {
    flex-direction: column;
    gap: 20px;
  }

  .portfolio-sec-main .portfolio-sec-head .heading-two {
    font-size: 35px;
    line-height: 42px;
  }

  .porfolio-main-content-books .portfolio-books-img img {
    height: 450px;
  }

  .porfolio-main-content-books .portfolio-books-content .heading-two {
    font-size: 40px;
    line-height: 47px;
    text-align: center;
  }

  .porfolio-main-content-books .portfolio-books-content .portfolio-brand-icon {
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin: 60px 0 0;
  }

  .portfolio-sec-main .portfolio-slide-content .slider-products .slick-next:after {
    height: 200px;
    top: 50%;
  }

  .portfolio-books-nav img {
    height: 300px;
  }

  /* Portfolio Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec {
    padding: 50px 0;
  }

  .contact-form-sec .contact-form-content-sec {
    width: 65%;
    text-align: center;
  }

  .contact-form-sec .contact-form-content-sec .heading-one {
    font-size: 35px;
    line-height: 52px;
  }

  .contact-info-form .form-group input {
    padding: 10px 5px;
  }

  .contact-form-sec .contact-form-video-sec img {
    display: block;
    width: 70%;
    margin: 0 auto;
    padding-top: 40px;
  }

  .contact-form-sec .contact-form-video-sec #contact-vid {
    display: none;
  }

  .contact-info-form .btn-div-secfom button {
    width: 50%;
    height: 50px;
  }

  /* Contact Section Responsive Css End Here */

  /* Testimonials Section Responsive Css Start Here */
  .testimonials-sec-main .testimonials-head-content {
    margin: 0;
  }

  .testimonials-sec-main .testimonials-head-content .heading-two {
    font-size: 40px;
    line-height: 47px;
  }

  .testimonials-sec-content .testimonial-sec-slider,
  .testimonials-sec-content .testimonial-sec-slider-two {
    transform: rotate(0deg);
  }

  .testimonials-sec-content .testimonial-sec-slide {
    flex-direction: column;
    padding: 25px;
  }

  .testimonial-sec-slide .testimonial-slide-flx {
    width: auto;
  }

  /* Testimonials Section Responsive Css End Here */

  /* FAQ Section Responsive Css Start Here */
  .faqs-sec-head .heading-one {
    font-size: 35px;
    line-height: 42px;
  }

  .faqs-sec-item .accordion-item .accordion-header button.accordion-button {
    font-size: 18px;
    line-height: 25px;
  }

  /* FAQ Section Responsive Css End Here */


  /* Footer Responsive Css Start Here */
  footer.footer-main-sec {
    padding: 60px 0 0;
  }

  .footer-main-sec .footer-logo-main {
    text-align: center;
  }

  .footer-main-sec .footer-logo-main .foot-rev-icons {
    justify-content: center;
    margin-bottom: 30px;
  }

  .ft-newsletter .search-area form input {
    width: 300px;
  }

  .ft-newsletter .search-area form input {
    text-align: center;
  }

  .foot-med-form .ft-newsletter .search-area form {
    justify-content: center;
  }

  .foot-med-form .ft-newsletter .ft-bt-address {
    margin-top: 10%;
    gap: 100px;
    justify-content: start;
  }

  .foot-med-form .ft-newsletter .ft-bt-address .ft-address {
    width: auto;
  }

  .footer-main-sec .footer-links-area {
    margin-top: 50px;
  }

  .ft-copy p {
    text-align: center;
  }

  .ft-copy-links {
    justify-content: center;
  }

  .ft-copy-links ul li a {
    padding: 7px 0;
  }

  /* Footer Responsive Css End Here */

  /* **************************************************************************************************************************************************
  **************************************************** Home Page Responsive CSS End Here ************************************************************
  ************************************************************************************************************************************************ */


  /* **************************************************************************************************************************************************
  ************************************************** About Page Responsive CSS Start Here ***********************************************************
  ************************************************************************************************************************************************ */

  /* Banner Section Responsive Css Start Here */
  section.about-banner-wrap {
    padding: 50px 0 340px;
  }

  .about-banner-wrap .about-banner-content .heading-one {
    font-size: 40px;
    line-height: 47px;
  }

  .about-banner-wrap .about-banner-content p {
    font-size: 16px;
    line-height: 22px;
    width: auto;
  }

  .about-banner-wrap .about-awards {
    width: auto;
    margin: 10px auto 0;
  }

  .about-banner-wrap .about-awards img:nth-child(1) {
    width: 50px;
    height: 60px;
  }

  .about-banner-wrap .about-awards img:nth-child(2) {
    width: 60px;
    height: 60px;
  }

  .about-banner-wrap .about-awards img:nth-child(3) {
    width: 60px;
    height: 60px;
  }

  .about-banner-wrap .about-awards img:nth-child(4) {
    width: 45px;
    height: 74px;
  }

  /* Banner Section Responsive Css End Here */

  /* About Section Responsive Css Start Here */
  section.about-sec-wrap {
    padding: 50px 0;
    background: none;
  }

  .about-sec-wrap .about-sec-content {
    margin-right: 0;
  }

  .about-sec-wrap .about-sec-content .heading-one {
    font-size: 35px;
    line-height: 42px;
  }

  .about-sec-wrap .about-sec-content p {
    width: auto;
    font-size: 16px;
    line-height: 22px;
  }

  /* About Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form.about-page {
    height: 876px;
  }

  section.contact-form-sec.service-contact-form.about-page::before {
    left: 7%;
    right: 2%;
    width: 365px;
    height: 245px;
    margin: 0 auto;
  }

  .contact-form-sec.service-contact-form.about-page .contact-form-video-sec {
    margin: 0;
    margin-top: 30px;
  }

  .contact-form-sec.service-contact-form .contact-form-video-sec .heading-one {
    font-size: 45px;
  }

  .contact-form-sec.service-contact-form.about-page .contact-form-content-sec {
    margin-top: 0;
  }

  /* Contact Section Responsive Css End Here */

  /* **************************************************************************************************************************************************
  *************************************************** About Page Responsive CSS End Here ************************************************************
  ************************************************************************************************************************************************ */


  /* **************************************************************************************************************************************************
  ************************************************ Services Pages Responsive CSS Start Here *********************************************************
  ************************************************************************************************************************************************ */

  /********************************************** Book Publishing Page Responsive CSS Start Here *****************************************************/

  /* Banner Section Responsive Css Start Here */
  .ser-banners.single-item {
    height: 1150px;
  }

  section.service-banner-main.publishing-page {
    padding: 60px 0 130px;
    height: 1150px;
  }

  .service-banner-main.publishing-page .banner-content .heading-one {
    font-size: 38px;
    line-height: 54px;
  }

  .service-banner-main.publishing-page .banner-content p {
    font-size: 16px;
    line-height: 22px;
    width: 80%;
  }

  .service-banner-main.publishing-page .website-main-buttons {
    padding: 25px 0 50px;
  }

  .service-banner-main.publishing-page .website-main-buttons a.read-more-btn {
    font-size: 18px;
    line-height: 25px;
    width: 200px;
  }

  .service-banner-main.publishing-page .banner-img img {
    top: 50%;
    left: 0;
    width: 100%;
  }

  .service-banner-main.publishing-page .banner-down {
    margin-top: 0;
  }

  .service-banner-main .banner-down-bk-audio {
    margin-left: 0;
    width: 552px;
    margin: 0 auto;
  }

  .service-banner-main .banner-down-bk-audio .baner-down-first-bx {
    height: auto;
    padding: 30px 15px;
    background: #fff;
    border-radius: 25px;
  }

  .service-banner-main .baner-down-first-bx .banner-down-book-flx .book {
    margin-bottom: 10px;
  }

  .service-banner-main .baner-down-first-bx .banner-down-book-flx .book img {
    width: 65%;
  }

  .service-banner-main .baner-down-first-bx .banner-first-para {
    margin-top: 20px;
  }

  .service-banner-main .baner-down-first-bx .banner-first-para .btm-img {
    margin-top: 0;
  }

  .service-banner-main .banner-down-form {
    margin-right: 0;
    height: auto;
    background: #fff;
  }

  .service-banner-main .banner-down-form {
    margin-right: 0;
    margin-top: 30px;
    height: auto;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    width: 552px;
    margin: 30px auto 0;
  }

  .service-banner-main .banner-down-form .heading-three {
    width: auto;
    font-size: 34px;
    line-height: 41px;
    margin: 0 0 10px;
  }

  .service-banner-main .banner-down-form p {
    margin: 0 0 10px;
  }

  .service-banner-main .banner-down-form form input,
  .service-banner-main .banner-down-form form select {
    height: 58px;
    padding: 10px 0;
  }

  .service-banner-main .banner-down-form form textarea {
    height: 100px;
    padding: 10px 0;
  }

  .service-banner-main .banner-down-form form .form-btn {
    top: unset;
    bottom: -80px;
    right: 0;
    left: 0;
    margin: 0 auto;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 150px;
    height: 60px;
    border-radius: 20px;
  }

  .ser-banners button.slick-next.slick-arrow {
    width: 75px;
    height: 75px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    display: none !important;
  }

  /* Banner Section Responsive Css End Here */

  /* About Section Responsive Css Start Here */
  section.about-sec-wrap.publishing-page-1 {
    background: #F8F8F8;
    padding: 60px 0;
  }

  .about-sec-wrap.publishing-page-1 .about-sec-content {
    margin-left: 0;
    width: 80%;
    margin: 0 auto;
  }

  .about-sec-wrap.publishing-page-1 .about-sec-content .heading-one {
    font-size: 34px;
    line-height: 41px;
  }

  .about-sec-wrap.publishing-page-1 .website-main-buttons a.read-more-btn {
    font-size: 18px;
    line-height: 25px;
    width: 200px;
  }

  section.about-sec-wrap.publishing-page-2 {
    background: #F8F8F8;
    padding: 60px 0;
  }

  .about-sec-wrap.publishing-page-2 .about-sec-content {
    margin-left: 0;
    width: 80%;
    margin: 0 auto;
  }

  .about-sec-wrap.publishing-page-2 .about-sec-content .heading-one {
    font-size: 34px;
    line-height: 41px;
  }

  .about-sec-wrap.publishing-page-2 .website-main-buttons a.read-more-btn {
    font-size: 18px;
    line-height: 25px;
    width: 200px;
  }

  /* About Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form.publishing-page {
    height: 871px;
  }

  section.contact-form-sec.service-contact-form.publishing-page::before {
    left: 2%;
    right: 2%;
    width: 274px;
    height: 245px;
    margin: 0 auto;
  }

  .contact-form-sec.service-contact-form.publishing-page .contact-form-video-sec {
    margin: 0;
    margin-top: 30px;
  }

  .contact-form-sec.service-contact-form.publishing-page .contact-form-video-sec .heading-one {
    font-size: 45px;
  }

  .contact-form-sec.service-contact-form.publishing-page .contact-form-content-sec {
    margin-top: 0;
  }

  /* Contact Section Responsive Css End Here */

  /* CTA Section Responsive Css Start Here */
  .cta-main-wrap.publishing-page .website-main-buttons a.read-more-btn {
    width: 200px;
  }

  /* CTA Section Responsive Css End Here */

  /*********************************************** Book Publishing Page Responsive CSS End Here ******************************************************/


  /********************************************** Book Marketing Page Responsive CSS Start Here *****************************************************/

  /* Banner Section Responsive Css Start Here */
  .ser-banners.single-item {
    height: 1150px;
  }

  section.service-banner-main.publishing-page.marketing-page {
    padding: 60px 0 130px;
    height: 1150px;
  }

  .service-banner-main.publishing-page.marketing-page .banner-content .heading-one {
    font-size: 38px;
    line-height: 54px;
  }

  .service-banner-main.publishing-page.marketing-page .banner-content p {
    font-size: 16px;
    line-height: 22px;
    width: 80%;
  }

  .service-banner-main.publishing-page.marketing-page .website-main-buttons {
    padding: 25px 0 50px;
  }

  .service-banner-main.publishing-page.marketing-page .website-main-buttons a.read-more-btn {
    font-size: 18px;
    line-height: 25px;
    width: 200px;
  }

  .service-banner-main.publishing-page.marketing-page .banner-img img {
    top: 50%;
    left: 0;
    width: 100%;
  }

  .service-banner-main.publishing-page.marketing-page .banner-down {
    margin-top: 0;
  }

  /* Banner Section Responsive Css End Here */

  /* About Section Responsive Css Start Here */
  section.about-sec-wrap.publishing-page-1.marketing-page-1 {
    background: #F8F8F8;
    padding: 60px 0;
  }

  .about-sec-wrap.publishing-page-1.marketing-page-1 .about-sec-content {
    margin-left: 0;
    width: 80%;
    margin: 0 auto;
  }

  .about-sec-wrap.publishing-page-1.marketing-page-1 .about-sec-content .heading-one {
    font-size: 34px;
    line-height: 41px;
    color: #000;
  }

  .about-sec-wrap.publishing-page-1.marketing-page-1 .about-sec-content p {
    color: #000;
  }

  .about-sec-wrap.publishing-page-1.marketing-page-1 .website-main-buttons a.read-more-btn {
    font-size: 18px;
    line-height: 25px;
    width: 200px;
  }

  section.about-sec-wrap.publishing-page-2.marketing-page-2 {
    background: #F8F8F8;
    padding: 60px 0;
  }

  .about-sec-wrap.publishing-page-2.marketing-page-2 .about-sec-content {
    margin-left: 0;
    width: 80%;
    margin: 0 auto;
  }

  .about-sec-wrap.publishing-page-2.marketing-page-2 .about-sec-content .heading-one {
    font-size: 34px;
    line-height: 41px;
  }

  .about-sec-wrap.publishing-page-2.marketing-page-2 .about-sec-content p {
    margin-left: 0;
    width: auto;
  }

  .about-sec-wrap.publishing-page-2.marketing-page-2 .website-main-buttons a.read-more-btn {
    font-size: 18px;
    line-height: 25px;
    width: 200px;
  }

  /* About Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form.publishing-page.marketing-page {
    height: 871px;
  }

  section.contact-form-sec.service-contact-form.publishing-page.marketing-page::before {
    left: 5%;
    right: 0%;
    width: 310px;
    height: 260px;
    margin: 0 auto;
  }

  .contact-form-sec.service-contact-form.publishing-page.marketing-page .contact-form-video-sec {
    margin: 0;
    margin-top: 30px;
  }

  .contact-form-sec.service-contact-form.publishing-page.marketing-page .contact-form-video-sec .heading-one {
    font-size: 45px;
  }

  .contact-form-sec.service-contact-form.publishing-page.marketing-page .contact-form-content-sec {
    margin-top: 0;
  }

  /* Contact Section Responsive Css End Here */

  /*********************************************** Book Marketing Page Responsive CSS End Here ******************************************************/

  /********************************************** Book Writing Page Responsive CSS Start Here *****************************************************/

  /* Banner Section Responsive Css Start Here */
  section.service-banner-main {
    padding: 60px 0 130px;
  }

  section.service-banner-main.extra-page {
    padding: 60px 0 130px;
  }

  .service-banner-main .banner-content .heading-one.span {
    font-size: 42px;
    margin: 0;
  }

  .service-banner-main .banner-content .heading-one {
    font-size: 42px;
    line-height: 59px;
  }

  .service-banner-main .website-main-buttons {
    padding: 25px 0 50px;
  }

  .service-banner-main.writing-page .website-main-buttons a.read-more-btn {
    font-size: 18px;
    line-height: 25px;
    width: 200px;
    height: 55px;
  }

  .service-banner-main.writing-page .website-main-buttons a.call-btn {
    font-size: 18px;
    line-height: 25px;
  }

  .service-banner-main .banner-img img {
    top: 22%;
    left: 0;
    width: 100%;
  }

  .service-banner-main .banner-down {
    margin-top: 0;
  }

  .service-banner-main.writing-page .website-main-buttons {
    gap: 20px;
  }

  /* Banner Section Responsive Css End Here */

  /* Content Section Responsive Css Start Here */
  .service-content-main .content-sec-inner-video {
    height: auto;
  }

  /* Content Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form {
    height: 886px;
  }

  section.contact-form-sec.service-contact-form::before {
    left: 7%;
    right: 2%;
    width: 385px;
    height: 259px;
    margin: 0 auto;
  }

  .contact-form-sec.service-contact-form .contact-form-video-sec {
    margin: 0;
    margin-top: 30px;
  }

  .contact-form-sec.service-contact-form .contact-form-video-sec .heading-one {
    font-size: 45px;
  }

  .contact-form-sec.service-contact-form .contact-form-content-sec {
    margin-top: 0;
  }

  /* Contact Section Responsive Css End Here */

  /*********************************************** Book Writing Page Responsive CSS End Here ******************************************************/

  /********************************************** Book Editing Page Responsive CSS Start Here *****************************************************/

  /* Banner Section Responsive Css Start Here */
  section.service-banner-main.editing-page {
    padding: 60px 0 130px;
  }

  .service-banner-main.editing-page .website-main-buttons a.read-more-btn {
    font-size: 18px;
    line-height: 25px;
    width: 200px;
    height: 55px;
  }

  .service-banner-main.editing-page .website-main-buttons a.call-btn {
    font-size: 18px;
    line-height: 25px;
  }

  .service-banner-main.editing-page .website-main-buttons {
    gap: 20px;
  }

  /* Banner Section Responsive Css End Here */

  /*********************************************** Book Editing Page Responsive CSS End Here ******************************************************/


  /* **************************************************************************************************************************************************
  ************************************************* Services Pages Responsive CSS End Here **********************************************************
  ************************************************************************************************************************************************ */



  /* **************************************************************************************************************************************************
  ************************************************* Contact Page Responsive CSS Start Here **********************************************************
  ************************************************************************************************************************************************ */

  /* Banner Section Responsive Css Start Here */
  section.contact-banner-wrap {
    padding: 50px 0 40px;
  }

  .contact-banner-wrap .banner-main {
    margin-left: 0;
  }

  .contact-banner-wrap .banner-main .banner-content .heading-one {
    font-size: 40px;
    line-height: 49px;
  }

  .contact-banner-wrap .contact-awards {
    width: auto;
    margin: 40px auto;
  }

  .contact-banner-wrap .contact-awards img:nth-child(1) {
    width: 50px;
    height: 60px;
  }

  .contact-banner-wrap .contact-awards img:nth-child(2) {
    width: 60px;
    height: 60px;
  }

  .contact-banner-wrap .contact-awards img:nth-child(3) {
    width: 60px;
    height: 60px;
  }

  .contact-banner-wrap .contact-awards img:nth-child(4) {
    width: 45px;
    height: 74px;
  }

  /* Banner Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form.contact-page {
    height: 886px;
  }

  section.contact-form-sec.service-contact-form.contact-page::before {
    left: 7%;
    right: 2%;
    width: 365px;
    height: 245px;
    margin: 0 auto;
  }

  .contact-form-sec.service-contact-form .contact-form-video-sec {
    margin: 0;
    margin-top: 30px;
  }

  .contact-form-sec.service-contact-form .contact-form-video-sec .heading-one {
    font-size: 45px;
  }

  .contact-form-sec.service-contact-form.contact-page .contact-form-content-sec {
    margin-top: 0;
  }

  /* Contact Section Responsive Css End Here */

  /* **************************************************************************************************************************************************
  ************************************************** Contact Page Responsive CSS End Here ***********************************************************
  ************************************************************************************************************************************************ */

}

@media only screen and (min-width: 300px) and (max-width: 575px) {

  /* **************************************************************************************************************************************************
  *************************************************** Home Page Responsive CSS Start Here ***********************************************************
  ************************************************************************************************************************************************ */

  /* Buttons Style Responsive Css */
  .website-main-buttons a.call-btn {
    width: 140px;
    height: 50px;
  }

  /* Buttons Style Responsive Css */

  /* Header Responsive Css Start Here */
  .main-header {
    position: unset;
    background-color: #1c1c1c;
    padding: 15px 0;
  }

  .main-header nav {
    padding: 10px 0;
    gap: 0px;
  }

  .main-header nav .website-main-buttons a.call-btn {
    border: 1px solid #fff !important;
    background: transparent !important;
  }

  .main-header .navbar button.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }

  .main-header nav .navbar-main-nav ul.navbar-nav {
    gap: 10px;
  }

  .main-header nav .navbar-main-nav ul.navbar-nav a.nav-link {
    color: var(--white-clr) !important;
  }

  .main-header nav .navbar-main-nav ul.navbar-nav li.nav-item.dropdown {
    position: relative;
  }

  .main-header nav .navbar-main-nav ul.navbar-nav li.nav-item.dropdown ul.dropdown-menu {
    position: absolute;
  }


  .main-header .navbar button.navbar-toggler {
    background-color: #dc1b1b;
    border-radius: 15px;
    padding: 8px 8px;
  }

  .main-header nav .website-main-buttons {
    margin: 12px 0 8px;
  }

  .main-header nav .website-main-buttons a.call-btn {
    width: 180px;
  }


  .navbar-brand img {
    width: 200px;
    height: auto;
  }

  .navbar-toggler-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(204deg) brightness(104%) contrast(102%);
  }

  .main-header nav .navbar-main-nav {
    justify-content: left;
  }

  /* Header Responsive Css End Here */

  /* Banner Section Responsive Css Start Here */
  section.banner-btm-form-main-sec {
    background-color: #f2f2f2;
    padding-bottom: 150px;
    margin: 0;
  }

  .banner-slider-inner .banner-slide-items .banner-slide-heading {
    width: 85%;
    padding: 50px 0 0;
    left: 7%;
  }

  .banner-slider-inner .banner-slide-items .banner-slide-heading .heading-one {
    font-size: 25px;
    line-height: 32px;
  }

  .banner-down-bk-audio .baner-down-first-bx {
    background: #ffffff !important;
    width: auto;
  }

  .banner-down-book-flx .books-audio .book-title .heading-four {
    font-size: 25px;
    line-height: 32px;
  }

  .custom-audio-player {
    width: auto;
  }

  .baner-down-first-bx .banner-down-book-flx {
    flex-direction: column-reverse;
  }

  .baner-down-first-bx .banner-down-book-flx .books-audio .title {
    margin: 0 auto 6px;
  }

  #play-pause-btn {
    top: -30px;
    right: 15%;
    border-radius: 20px;
    width: 65px;
    height: 65px;
    font-size: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }

  .baner-down-first-bx .banner-first-para p {
    text-align: center;
  }

  .baner-down-first-bx .banner-first-para .btm-img {
    flex-wrap: wrap;
    justify-content: center;
  }

  .banner-down-bk-audio .banner-down-second-bx,
  .banner-down-bk-audio .banner-down-third-bx {
    width: auto;
    margin: 40px 0 0;
  }

  .banner-down-second-bx .banner-rev .heading-three {
    font-size: 30px;
    line-height: 37px;
  }

  .banner-down-second-bx .banner-rev p {
    font-size: 14px;
    line-height: 20px;
  }

  .banner-down-bk-audio .banner-down-third-bx .awards-title {
    margin: 0 auto;
  }

  .banner-btm-form-main-sec .banner-down-form {
    margin-top: 40px;
    background: #ffffff;
    border-radius: 40px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: auto;
  }

  .banner-btm-form-main-sec .banner-down-form .heading-three {
    text-align: center;
    width: auto;
    font-size: 30px;
    line-height: 37px;
  }

  .banner-btm-form-main-sec .banner-down-form p {
    text-align: center;
  }

  .banner-btm-form-main-sec .banner-down-form form input,
  .banner-btm-form-main-sec .banner-down-form form select,
  .banner-btm-form-main-sec .banner-down-form form textarea {
    font-size: 16px;
  }




  .banner-btm-form-main-sec .banner-down-form form .form-btn {
    top: unset;
    bottom: -80px;
    right: 0;
    left: 0;
    margin: 0 auto;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 150px;
    height: 60px;
    border-radius: 20px;
  }

  .banner-btm-form-main-sec .banner-down-form form .form-btn button {
    font-size: 18px;
  }

  /* Banner Section Responsive Css End Here */

  /* Genre Section Responsive Css Start Here */
  section.genre-sec-main {
    padding: 50px 0;
  }

  .genre-content-main-wrap .genre-content-flx a:after {
    width: 120px;
  }

  .genre-content-main-wrap .genre-content-flx p {
    width: 80%;
    text-align: center;
  }

  .genre-content-main-wrap .genre-main-content {
    display: flex;
    justify-content: center;
  }

  .genre-content-item.for-mobile button.accordion-button .heading-three {
    width: 100%;
    text-align: center;
    font-size: 30px;
    line-height: 37px;
  }

  .genre-main-content .genre-content-list .genre-content-item.for-mobile p {
    text-align: center;
  }

  .genre-content-item.for-mobile .accordion-body {
    width: 85%;
    margin: 0 auto;
  }

  .genre-content-item.for-big-screens,
  .genre-content-right-image {
    display: none;
  }

  .genre-content-item.for-mobile {
    display: block;
  }

  /* Genre Section Responsive Css End Here */

  /* Whats New Section Responsive Css Start Here */
  section.what-new-sec-main {
    align-items: start;
    height: auto;
  }

  .whats-new-sec-heading .heading-one {
    font-size: 35px;
    line-height: 45px;
  }

  .whats-new-sec-heading p {
    font-size: 18px;
    line-height: 25px;
  }

  .what-new-sec-main .whats-books {
    transform: translate(0, 0) !important;
    position: unset;
    margin: 0 auto;
  }

  /* Whats New Section Responsive Css End Here */

  /* Service Section Responsive Css Start Here */
  section.service-sec-slider-main {
    padding: 60px 0 50px;
  }

  .service-sec-slider-main .service-slide-main-content {
    width: auto;
  }

  .service-sec-slider-main .service-slide-main-content .heading-one {
    font-size: 30px;
    line-height: 37px;
  }

  .service-sec-slider-main .service-slider-main {
    position: unset;
    padding-top: 100px;
  }

  .service-slider-main .service-slider-inner button.slick-next:before {
    top: -10%;
    right: 5%;
  }

  /* Service Section Responsive Css End Here */

  /* CTA Section Responsive Css Start Here */
  section.cta-main-wrap {
    padding: 50px 0;
  }

  .cta-wrap-heading .heading-one {
    font-size: 26px;
    line-height: 33px;
  }

  .cta-main-wrap .website-main-buttons {
    gap: 15px;
    justify-content: center;
  }

  .cta-main-wrap .website-main-buttons a.read-more-btn {
    padding: 10px;
    font-size: 16px;
    text-align: center;
    height: 50px;
  }

  .cta-main-wrap .website-main-buttons a.call-btn {
    font-size: 16px;
  }

  /* CTA Section Responsive Css End Here */

  /* Content Section Responsive Css Start Here */
  .content-sec-main .content-sec-inner-wrap {
    padding: 0;
  }

  .content-sec-main .content-sec-inner-wrap .heading-one {
    font-size: 30px;
    line-height: 37px;
  }

  /* Content Section Responsive Css End Here */

  /* Portfolio Section Responsive Css Start Here */
  section.portfolio-sec-main {
    padding: 50px 0px 0;
  }

  .portfolio-sec-main .portfolio-sec-head .heading-two {
    font-size: 30px;
    line-height: 37px;
  }

  .porfolio-main-content-books .portfolio-books-content .heading-two {
    font-size: 30px;
    line-height: 37px;
    text-align: center;
  }

  .portfolio-slide-content .slider-products .porfolio-main-content-books {
    flex-direction: column;
    gap: 20px;
  }

  .porfolio-main-content-books .portfolio-books-img img {
    height: 450px;
  }

  .porfolio-main-content-books .portfolio-books-content .portfolio-brand-icon {
    flex-direction: column;
    align-items: start;
    gap: 30px;
    margin: 60px 0 0;
  }

  .portfolio-sec-main .portfolio-slide-content .slider-products .slick-next:after {
    height: 210px;
    top: 50%;
  }

  .portfolio-books-nav img {
    height: 300px;
  }

  /* Portfolio Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec {
    padding: 50px 0;
  }

  .contact-form-sec .contact-form-content-sec {
    width: 85%;
    text-align: center;
    margin-top: 0;
  }

  .contact-form-sec .contact-form-content-sec .heading-one {
    font-size: 28px;
    line-height: 35px;
  }

  .contact-info-form .form-group input {
    padding: 10px 5px;
  }

  .contact-form-sec .contact-form-video-sec img {
    display: block;
    width: 70%;
    margin: 0 auto;
    padding-top: 40px;
  }

  .contact-form-sec .contact-form-video-sec #contact-vid {
    display: none;
  }

  .contact-info-form .btn-div-secfom button {
    width: 50%;
    height: 50px;
  }

  /* Contact Section Responsive Css End Here */

  /* Testimonials Section Responsive Css Start Here */
  .testimonials-sec-main .testimonials-head-content {
    margin: 0;
  }

  .testimonials-sec-main .testimonials-head-content .heading-two {
    font-size: 30px;
    line-height: 37px;
  }

  .testimonials-sec-main .testimonials-head-content p {
    font-size: 16px;
    line-height: 23px;
  }

  .testimonials-sec-content .testimonial-sec-slider,
  .testimonials-sec-content .testimonial-sec-slider-two {
    transform: rotate(0deg);
  }

  /* .testimonial-sec-slider-two .testimonial-sec-slide {
    flex-direction: row-reverse !important;
  } */

  .testimonials-sec-content .testimonial-sec-slide {
    flex-direction: column;
    padding: 25px;
  }

  .testimonial-sec-slide .testimonial-slide-flx {
    width: auto;
  }

  .testimonial-sec-slide .testimonial-slide-flx .testimonial-slide-auth {
    flex-direction: column;
  }

  .testimonial-slide-flx .testimonial-slide-auth .testi-auth-name {
    text-align: center;
  }

  /* Testimonials Section Responsive Css End Here */

  /* FAQ Section Responsive Css Start Here */
  .faqs-sec-head .heading-one {
    font-size: 30px;
    line-height: 37px;
  }

  .faqs-sec-item .accordion-item .accordion-header button.accordion-button {
    font-size: 18px;
    line-height: 25px;
  }

  /* FAQ Section Responsive Css End Here */

  /* Footer Responsive Css Start Here */
  footer.footer-main-sec {
    padding: 60px 0 0;
  }

  .footer-main-sec .footer-logo-main {
    text-align: center;
  }

  .footer-main-sec .footer-logo-main .foot-rev-icons {
    justify-content: center;
    margin-bottom: 30px;
  }

  .ft-newsletter .search-area form input {
    width: 210px;
  }

  .ft-newsletter .search-area form input {
    text-align: center;
  }

  .foot-med-form .ft-newsletter .search-area form {
    justify-content: center;
  }

  .foot-med-form .ft-newsletter .ft-bt-address {
    margin-top: 10%;
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .foot-med-form .ft-newsletter .ft-bt-address .ft-address {
    width: auto;
  }

  .footer-main-sec .footer-links-area {
    text-align: center;
    margin-top: 50px;
  }

  .ft-copy p {
    text-align: center;
  }

  .ft-copy-links {
    justify-content: center;
  }

  .ft-copy-links ul li a {
    padding: 7px 0;
    font-size: 13px;
  }

  /* Footer Responsive Css End Here */

  /* **************************************************************************************************************************************************
  **************************************************** Home Page Responsive CSS End Here ************************************************************
  ************************************************************************************************************************************************ */



  /* **************************************************************************************************************************************************
  ************************************************** About Page Responsive CSS Start Here ***********************************************************
  ************************************************************************************************************************************************ */

  /* Banner Section Responsive Css Start Here */
  section.about-banner-wrap {
    padding: 50px 0 340px;
  }

  .about-banner-wrap .about-banner-content .heading-one {
    font-size: 35px;
    line-height: 42px;
  }

  .about-banner-wrap .about-banner-content p {
    font-size: 16px;
    line-height: 22px;
    width: auto;
  }

  .about-banner-wrap .about-awards {
    width: auto;
    margin: 10px auto 0;
  }

  .about-banner-wrap .about-awards img:nth-child(1) {
    width: 50px;
    height: 60px;
  }

  .about-banner-wrap .about-awards img:nth-child(2) {
    width: 60px;
    height: 60px;
  }

  .about-banner-wrap .about-awards img:nth-child(3) {
    width: 60px;
    height: 60px;
  }

  .about-banner-wrap .about-awards img:nth-child(4) {
    width: 45px;
    height: 74px;
  }

  /* Banner Section Responsive Css End Here */

  /* About Section Responsive Css Start Here */
  section.about-sec-wrap {
    padding: 50px 0;
    background: none;
  }

  .about-sec-wrap .about-sec-content {
    margin-right: 0;
  }

  .about-sec-wrap .about-sec-content .heading-one {
    font-size: 35px;
    line-height: 42px;
  }

  .about-sec-wrap .about-sec-content p {
    width: auto;
    font-size: 16px;
    line-height: 22px;
  }

  /* About Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form.about-page {
    height: 784px;
  }

  section.contact-form-sec.service-contact-form.about-page::before {
    left: 7%;
    right: 2%;
    width: 265px;
    height: 175px;
    margin: 0 auto;
  }

  .contact-form-sec.service-contact-form.about-page .contact-form-video-sec {
    margin: 0;
    margin-top: 30px;
  }

  .contact-form-sec.service-contact-form.about-page .contact-form-content-sec {
    margin-top: 0;
  }

  /* Contact Section Responsive Css End Here */

  /* **************************************************************************************************************************************************
  *************************************************** About Page Responsive CSS End Here ************************************************************
  ************************************************************************************************************************************************ */



  /* **************************************************************************************************************************************************
  ************************************************ Services Pages Responsive CSS Start Here *********************************************************
  ************************************************************************************************************************************************ */

  /********************************************** Book Publishing Page Responsive CSS Start Here *****************************************************/

  /* Banner Section Responsive Css Start Here */
  .ser-banners.single-item {
    height: 1600px;
  }

  section.service-banner-main.publishing-page {
    padding: 60px 0 130px;
    height: 1600px;
  }

  .service-banner-main.publishing-page .banner-content .heading-one {
    font-size: 30px;
    line-height: 46px;
  }

  .service-banner-main.publishing-page .banner-content p {
    font-size: 16px;
    line-height: 22px;
    width: auto;
  }

  .service-banner-main.publishing-page .website-main-buttons {
    padding: 25px 0 50px;
  }

  .service-banner-main.publishing-page .website-main-buttons a.read-more-btn {
    font-size: 18px;
    line-height: 25px;
    width: 200px;
  }

  .service-banner-main.publishing-page .banner-img img {
    top: 82%;
    left: 0;
    width: 100%;
  }

  .service-banner-main.publishing-page .banner-down {
    margin-top: 0;
  }

  .service-banner-main .banner-down-bk-audio {
    margin-left: 0;
  }

  .service-banner-main .banner-down-bk-audio .baner-down-first-bx {
    height: auto;
    padding: 30px 15px;
  }

  .service-banner-main .baner-down-first-bx .banner-down-book-flx .book {
    margin-bottom: 20px;
  }

  .service-banner-main .baner-down-first-bx .banner-down-book-flx .book img {
    width: 50%;
  }

  .service-banner-main .baner-down-first-bx .banner-first-para {
    margin-top: 20px;
  }

  .service-banner-main .baner-down-first-bx .banner-first-para .btm-img {
    margin-top: 0;
  }

  .service-banner-main .banner-down-form {
    margin-right: 0;
    height: auto;
    background: #fff;
  }

  .service-banner-main .banner-down-form {
    margin-right: 0;
    margin-top: 30px;
    height: auto;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
  }

  .service-banner-main .banner-down-form .heading-three {
    width: auto;
    font-size: 28px;
    line-height: 35px;
    margin: 0 0 10px;
  }

  .service-banner-main .banner-down-form p {
    margin: 0 0 10px;
  }

  .service-banner-main .banner-down-form form input,
  .service-banner-main .banner-down-form form select {
    height: 58px;
    padding: 10px 0;
  }

  .service-banner-main .banner-down-form form textarea {
    height: 100px;
    padding: 10px 0;
  }

  .service-banner-main .banner-down-form form .form-btn {
    top: unset;
    bottom: -80px;
    right: 0;
    left: 0;
    margin: 0 auto;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 150px;
    height: 60px;
    border-radius: 20px;
  }

  .ser-banners button.slick-next.slick-arrow {
    width: 75px;
    height: 75px;
    font-size: 0px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    display: none !important;
  }

  /* Banner Section Responsive Css End Here */

  /* About Section Responsive Css Start Here */
  section.about-sec-wrap.publishing-page-1 {
    background: #F8F8F8;
    padding: 60px 0;
  }

  .about-sec-wrap.publishing-page-1 .about-sec-content {
    margin-left: 0;
  }

  .about-sec-wrap.publishing-page-1 .about-sec-content .heading-one {
    font-size: 28px;
    line-height: 35px;
  }

  .about-sec-wrap.publishing-page-1 .website-main-buttons a.read-more-btn {
    font-size: 18px;
    line-height: 25px;
    width: 200px;
  }

  section.about-sec-wrap.publishing-page-2 {
    background: #F8F8F8;
    padding: 60px 0;
  }

  .about-sec-wrap.publishing-page-2 .about-sec-content {
    margin-left: 0;
  }

  .about-sec-wrap.publishing-page-2 .about-sec-content .heading-one {
    font-size: 28px;
    line-height: 35px;
  }

  .about-sec-wrap.publishing-page-2 .website-main-buttons a.read-more-btn {
    font-size: 18px;
    line-height: 25px;
    width: 200px;
  }

  /* About Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form.publishing-page {
    height: 781px;
  }

  section.contact-form-sec.service-contact-form.publishing-page::before {
    left: 0%;
    right: 1%;
    width: 195px;
    height: 175px;
    margin: 0 auto;
  }

  .contact-form-sec.service-contact-form.publishing-page .contact-form-video-sec {
    margin: 0;
    margin-top: 30px;
  }

  .contact-form-sec.service-contact-form.publishing-page .contact-form-video-sec .heading-one {
    font-size: 35px;
  }

  .contact-form-sec.service-contact-form.publishing-page .contact-form-content-sec {
    margin-top: 0;
  }

  /* Contact Section Responsive Css End Here */

  /* CTA Section Responsive Css Start Here */
  .cta-main-wrap .website-main-buttons a.read-more-btn {
    width: 220px;
  }

  /* CTA Section Responsive Css End Here */

  /*********************************************** Book Publishing Page Responsive CSS End Here ******************************************************/


  /********************************************** Book Marketing Page Responsive CSS Start Here *****************************************************/

  /* Banner Section Responsive Css Start Here */
  .ser-banners.single-item {
    height: 1600px;
  }

  section.service-banner-main.publishing-page.marketing-page {
    padding: 60px 0 130px;
    height: 1600px;
  }

  .service-banner-main.publishing-page.marketing-page .banner-content .heading-one {
    font-size: 30px;
    line-height: 46px;
  }

  .service-banner-main.publishing-page.marketing-page .banner-content p {
    font-size: 16px;
    line-height: 22px;
    width: auto;
  }

  .service-banner-main.publishing-page.marketing-page .website-main-buttons {
    padding: 25px 0 50px;
  }

  .service-banner-main.publishing-page.marketing-page .website-main-buttons a.read-more-btn {
    font-size: 18px;
    line-height: 25px;
    width: 200px;
  }

  .service-banner-main.publishing-page.marketing-page .banner-img img {
    top: 82%;
    left: 0;
    width: 100%;
  }

  .service-banner-main.publishing-page.marketing-page .banner-down {
    margin-top: 0;
  }

  /* Banner Section Responsive Css End Here */

  /* About Section Responsive Css Start Here */
  section.about-sec-wrap.publishing-page-1.marketing-page-1 {
    background: #F8F8F8;
    padding: 60px 0;
  }

  .about-sec-wrap.publishing-page-1.marketing-page-1 .about-sec-content {
    margin-left: 0;
  }

  .about-sec-wrap.publishing-page-1.marketing-page-1 .about-sec-content .heading-one {
    font-size: 28px;
    line-height: 35px;
    color: #000;
  }

  .about-sec-wrap.publishing-page-1.marketing-page-1 .about-sec-content p {
    color: #000;
  }

  .about-sec-wrap.publishing-page-1.marketing-page-1 .website-main-buttons a.read-more-btn {
    font-size: 18px;
    line-height: 25px;
    width: 200px;
  }

  section.about-sec-wrap.publishing-page-2.marketing-page-2 {
    background: #F8F8F8;
    padding: 60px 0;
  }

  .about-sec-wrap.publishing-page-2.marketing-page-2 .about-sec-content {
    margin-left: 0;
  }

  .about-sec-wrap.publishing-page-2.marketing-page-2 .about-sec-content .heading-one {
    font-size: 28px;
    line-height: 35px;
  }

  .about-sec-wrap.publishing-page-2.marketing-page-2 .about-sec-content p {
    margin-left: 0;
    width: auto;
  }

  .about-sec-wrap.publishing-page-2.marketing-page-2 .website-main-buttons a.read-more-btn {
    font-size: 18px;
    line-height: 25px;
    width: 200px;
  }

  /* About Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form.publishing-page.marketing-page {
    height: 781px;
  }

  section.contact-form-sec.service-contact-form.publishing-page.marketing-page::before {
    left: 5%;
    right: 0%;
    width: 230px;
    height: 180px;
    margin: 0 auto;
  }

  .contact-form-sec.service-contact-form.publishing-page.marketing-page .contact-form-video-sec {
    margin: 0;
    margin-top: 30px;
  }

  .contact-form-sec.service-contact-form.publishing-page.marketing-page .contact-form-video-sec .heading-one {
    font-size: 35px;
  }

  .contact-form-sec.service-contact-form.publishing-page.marketing-page .contact-form-content-sec {
    margin-top: 0;
  }

  /* Contact Section Responsive Css End Here */


  /*********************************************** Book Marketing Page Responsive CSS End Here ******************************************************/

  /********************************************** Book Writing Page Responsive CSS Start Here *****************************************************/

  /* Banner Section Responsive Css Start Here */
  section.service-banner-main {
    padding: 60px 0 130px;
  }

  section.service-banner-main.extra-page {
    padding: 60px 0 130px;
  }

  .service-banner-main .banner-content .heading-one.span {
    font-size: 35px;
    margin: 0;
  }

  .service-banner-main .banner-content .heading-one {
    font-size: 35px;
    line-height: 51px;
  }

  .service-banner-main .website-main-buttons {
    padding: 25px 0 50px;
  }

  .service-banner-main.writing-page .website-main-buttons a.read-more-btn {
    font-size: 16px;
    line-height: 23px;
    width: 200px;
    height: 50px;
  }

  .service-banner-main.writing-page .website-main-buttons a.call-btn {
    font-size: 16px;
    line-height: 23px;
  }

  .service-banner-main .banner-img img {
    top: 71%;
    left: 0;
    width: 100%;
  }

  .service-banner-main .banner-down {
    margin-top: 0;
  }

  .service-banner-main.writing-page .website-main-buttons {
    gap: 10px;
  }

  /* Banner Section Responsive Css End Here */

  /* Content Section Responsive Css Start Here */
  .service-content-main .content-sec-inner-video {
    height: auto;
  }

  /* Content Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form {
    height: 781px;
  }

  section.contact-form-sec.service-contact-form::before {
    left: 7%;
    right: 2%;
    width: 265px;
    height: 175px;
    margin: 0 auto;
  }

  .contact-form-sec.service-contact-form .contact-form-video-sec {
    margin: 0;
    margin-top: 30px;
  }

  .contact-form-sec.service-contact-form .contact-form-video-sec .heading-one {
    font-size: 35px;
  }

  .contact-form-sec.service-contact-form .contact-form-content-sec {
    margin-top: 0;
  }

  /* Contact Section Responsive Css End Here */


  /*********************************************** Book Writing Page Responsive CSS End Here ******************************************************/

  /********************************************** Book Editing Page Responsive CSS Start Here *****************************************************/

  /* Banner Section Responsive Css Start Here */
  section.service-banner-main.editing-page {
    padding: 60px 0 130px;
  }

  .service-banner-main.editing-page .website-main-buttons a.read-more-btn {
    font-size: 16px;
    line-height: 23px;
    width: 200px;
    height: 50px;
  }

  .service-banner-main.editing-page .website-main-buttons a.call-btn {
    font-size: 16px;
    line-height: 23px;
  }

  .service-banner-main.editing-page .website-main-buttons {
    gap: 10px;
  }

  /* Banner Section Responsive Css End Here */


  /*********************************************** Book Editing Page Responsive CSS End Here ******************************************************/


  /* **************************************************************************************************************************************************
  ************************************************* Services Pages Responsive CSS End Here **********************************************************
  ************************************************************************************************************************************************ */



  /* **************************************************************************************************************************************************
  ************************************************* Contact Page Responsive CSS Start Here **********************************************************
  ************************************************************************************************************************************************ */

  /* Banner Section Responsive Css Start Here */
  section.contact-banner-wrap {
    padding: 50px 0 40px;
  }

  .contact-banner-wrap .banner-main {
    margin-left: 0;
  }

  .contact-banner-wrap .banner-main .banner-content .heading-one {
    font-size: 35px;
    line-height: 42px;
  }

  .contact-banner-wrap .contact-awards {
    width: auto;
    margin: 40px auto;
  }

  .contact-banner-wrap .contact-awards img:nth-child(1) {
    width: 50px;
    height: 60px;
  }

  .contact-banner-wrap .contact-awards img:nth-child(2) {
    width: 60px;
    height: 60px;
  }

  .contact-banner-wrap .contact-awards img:nth-child(3) {
    width: 60px;
    height: 60px;
  }

  .contact-banner-wrap .contact-awards img:nth-child(4) {
    width: 45px;
    height: 74px;
  }

  /* Banner Section Responsive Css End Here */

  /* Contact Section Responsive Css Start Here */
  section.contact-form-sec.service-contact-form.contact-page {
    height: 781px;
  }

  section.contact-form-sec.service-contact-form.contact-page::before {
    left: 7%;
    right: 2%;
    width: 265px;
    height: 175px;
    margin: 0 auto;
  }

  .contact-form-sec.service-contact-form .contact-form-video-sec {
    margin: 0;
    margin-top: 30px;
  }

  .contact-form-sec.service-contact-form .contact-form-video-sec .heading-one {
    font-size: 35px;
  }

  .contact-form-sec.service-contact-form.contact-page .contact-form-content-sec {
    margin-top: 0;
  }

  /* Contact Section Responsive Css End Here */

  /* **************************************************************************************************************************************************
  ************************************************** Contact Page Responsive CSS End Here ***********************************************************
  ************************************************************************************************************************************************ */

}