body {
  /*  font-family: 'Nunito', sans-serif;*/
  font-family: 'Poppins', sans-serif;
  margin: 0;
}
:root {
  --primary-color: #004aad;
  --secondary-color: #ffcf00;
  --bg-light-blue: #eaf0ff;
  --body-font-color: #181617;
  --white-color: #ffffff;
  --black-color: #000000;
  --heading-colors: #162231;
  --footer-bg: #0b0916;
  --innersubtitle: #0c043d;
}
#header .btn-rq {
  margin-bottom: 0;
}
/* Header Css Start*/
/* Top Bar Css Start*/
.top-righ-first a {
  color: var(--black-color);
  text-decoration: none;
  font-size: calc(12px + (15 - 12) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 500;
}
.top-righ-first a svg {
  color: var(--primary-color);
  margin-right: 10px;
}
.top-right a {
  color: var(--black-color);
  text-decoration: none;
  font-size: calc(12px + (17 - 12) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 500;
}
.top-right a img {
  color: var(--primary-color);
  margin-right: 8px;
}
.top-right .top-box {
  /* display: flex;
    align-items: center;
    justify-content: end;*/
  display: flex;
  align-items: center;
  justify-content: end;
  border: 2px solid var(--primary-color);
  padding: 8px 27px;
  border-radius: 5px;
}
.top-right .top-box .icon-img {
  margin-right: 10px;
}
.top-right .top-box .top-text {
  display: grid;
}
.top-right .top-box .top-text span {
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 700;
  margin: 0;
}
.top-right .top-box .top-text a {
  font-size: 17px;
  font-weight: 500;
  color: var(--primary-color);
}
.top-right .top-box .top-text .chat-click {
  font-size: calc(12px + (18 - 12) * ((100vw - 300px) / (1920 - 300)));
  font-weight: bold;
  color: var(--primary-color);
  margin: 0;
  line-height: 1;
  text-decoration: none;
}
.btn-rq2 {
  border: 2px solid var(--primary-color) !important;
  background-color: transparent;
  color: var(--primary-color);
  text-decoration: none;
  font-size: calc(12px + (15 - 12) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 500;
  padding: 10px 10px 10px 15px;
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 4px;
  max-width: 192px;
  /* width: 100%; */
  margin-bottom: 0;
  text-transform: uppercase;
}
.btn-rq2 .circle {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  background-color: var(--primary-color);
  margin-right: 5px;
  border: 0;
  border-radius: 50%;
}
.btn-rq2 .circle img {
  margin: 0;
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(11deg) brightness(102%) contrast(106%);
}
.btn-rq {
  background-color: var(--primary-color);
  color: var(--white-color);
  text-decoration: none;
  font-size: calc(12px + (15 - 12) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 500;
  padding: 10px 10px 10px 5px;
  display: flex;
  align-items: center;
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  /* max-width: 180px; */
  width: 100%;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden !important;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: 10;
}
.btn-rq .circle {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  background-color: var(--secondary-color);
  margin-right: 12px;
  border: 0;
  border-radius: 50%;
}
.btn-rq .circle img {
  margin: 0;
}
/*.btn-rq:hover{
    background-color:#000000;

}*/
.btn-rq:hover {
  border: 2px solid #000;
  color: #fff !important;
}
.btn-rq::before {
  content: '';
  width: 0%;
  height: 100%;
  display: block;
  background: #111;
  position: absolute;
  -ms-transform: skewX(-20deg);
  -webkit-transform: skewX(-20deg);
  transform: skewX(-20deg);
  left: -10%;
  opacity: 1;
  top: 0;
  z-index: -12;
  -moz-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: 2px 0px 14px rgba(0, 0, 0, .6);
}
.btn-rq::after {
  content: '';
  width: 0%;
  height: 100%;
  display: block;
  background: var(--secondary-color);
  position: absolute;
  -ms-transform: skewX(-20deg);
  -webkit-transform: skewX(-20deg);
  transform: skewX(-20deg);
  left: -10%;
  opacity: 0;
  top: 0;
  z-index: -15;
  -webkit-transition: all .94s cubic-bezier(.2, .95, .57, .99);
  -moz-transition: all .4s cubic-bezier(.2, .95, .57, .99);
  -o-transition: all .4s cubic-bezier(.2, .95, .57, .99);
  transition: all .4s cubic-bezier(.2, .95, .57, .99);
  box-shadow: 2px 0px 14px rgba(0, 0, 0, .6);
}
.btn-rq:hover::before, .btn-rq:hover::before {
  opacity: 1;
  width: 116%;
}
.btn-rq:hover::after, .btn-rq:hover::after {
  opacity: 1;
  width: 120%;
}
a {
  text-decoration: none;
}
.theme-p .icons svg {
  filter: brightness(0) saturate(100%) invert(83%) sepia(47%) saturate(3222%) hue-rotate(1deg) brightness(106%) contrast(101%);
  font-size: 15px;
}
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0 20px 0;
  border-bottom: 1px solid #bdb7b1;
}
#header.header-scrolled {
  padding: 5px 0 20px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background: var(--white-color);
}
#header .logo img {
  display: flex;
  flex: 1 0 100px;
  /* padding-top: 20px; */
  max-width: 250px;
}
#header.scrolled {
  background-color: #fff;
}
.top-box {
  display: flex;
  /* align-items: center;*/
  justify-content: end;
}
.top-box .icon-img {
  margin-right: 10px;
}
.top-box .top-text {
  display: grid;
}
.top-box .top-text span {
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 700;
  margin: 0;
}
.top-box .top-text a {
  font-size: 17px;
  font-weight: 500;
  color: var(--primary-color);
}
.top-box .top-text .chat-click {
  font-size: calc(12px + (18 - 12) * ((100vw - 300px) / (1920 - 300)));
  font-weight: bold;
  color: var(--primary-color);
  margin: 0;
  line-height: 1;
  text-decoration: none;
}
/* Header Css Start*/
/* Main Banner Css Endt*/
.lp-banner {
  background-image: url(assets/ghost/main-banner.html);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 800px;
  /* display: flex;*/
  align-items: center;
  /*  padding-top: 200px;*/
  padding: 50px 0;
  /*padding-bottom: 0;*/
  position: relative;
}
.ghostwriting-lp .lp-banner {
  padding: 90px 0 0 0;
}
.ghostwriting-lp #header {
  border-bottom: 0;
}
.ghostwriting-lp #header.scrolled {
  background-color: #fff;
}
.lp-banner .centerBannerImg {
  position: absolute;
  bottom: 0;
  margin: 0 auto;
  left: 40%;
  z-index: 0;
}
#wrapper {
  /* max-width: 350px; */
  width: 100%;
  background: #fff;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
  /* margin-top: 50px; */
  /* margin-bottom: 50px; */
  padding: 0 15px 0;
  border-radius: 0 0 25px 25px;
}
#curved {
  width: 110%;
  text-align: center;
  background: #3EBD89;
  padding: 20px 15px 30px;
  border-radius: 0px 0px 70% 70%;
  position: relative;
  margin-left: -5%;
  box-shadow: 0 15px 0px 0px #57E2A9;
  animation: curvedshadow 4s ease infinite;
  margin-bottom: 26px;
}
@keyframes curvedshadow {
  0% {
    box-shadow: 10px 10px 0px 0px #57E2A9;
  }
  50% {
    box-shadow: -10px 10px 0px 0px #57E2A9;
  }
  100% {
    box-shadow: 10px 10px 0px 0px #57E2A9;
  }
}
.pulse2 {
  -webkit-animation: pulse 620ms infinite alternate;
  animation: pulse 620ms infinite alternate;
  font-size: calc(21px +(30 - 21)*((100vw - 300px) /(1920 - 300)));
}
@keyframes pulse {
  0% {
    color: red;
  }
  100% {
    color: var(--white-color);
  }
}
.lp-banner-content {
  padding-top: 50px;
}
.lp-banner-content h5 {
  /*  font-size: calc(16px + (29 - 16) * ((100vw - 300px) / (1920 - 300)));*/
  font-size: calc(16px + (24 - 16) * ((100vw - 300px) / (1920 - 300)));
  display: inline-block;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  padding: 2px 5px;
  text-transform: uppercase;
  /* font-weight:bold;*/
  font-weight: 400;
  margin: 0;
}
.lp-banner-content h1 {
  font-size: calc(27px + (40 - 28) * ((100vw - 300px) / (1920 - 300)));
  color: var(--white-color);
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 25px 0;
}
.ghostwriting-lp .lp-banner-content h1 {
  color: #0e0d0a;
}
.lp-banner-content h6 {
  font-size: calc(20px + (22 - 20) * ((100vw - 300px) / (1920 - 300)));
  display: inline-block;
  color: var(--black-color);
  /*background-color: var(--primary-color);*/
  padding: 2px 0;
  text-transform: uppercase;
  font-weight: 600;
  margin: 10px 0;
}
.lp-banner-content p {
  font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
  display: inline-block;
  color: var(--white-color);
  font-weight: 400;
}
.ghostwriting-lp .lp-banner-content p {
  color: #0e0d0a;
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: 600;
}
.lp-banner-content h1 span {
  position: relative;
}
.lp-banner-content h1 span::after {
  position: absolute;
  max-width: 100%;
  content: "";
  left: 0;
  bottom: -5px;
  width: 512px;
  height: 9px;
  background: url(../images/mix/sketched-heading-underline.html);
}
.lp-banner-list {
  /* padding-left: 0; */
  position: relative;
}
.lp-banner-list li {
  font-weight: 600;
  padding: 5px 0;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white-color);
}
.lp-banner-list li::before {
  position: absolute;
  justify-content: center;
  display: flex;
  align-items: center;
  content: "";
  left: 0;
  width: 19px;
  height: 20px;
  background-image: url(../img/icons/banner-checkbox-icon.html);
  filter: invert();
}
.banner-partner-logos {
  display: flex;
  flex-direction: row;
  gap: 10px;
  max-width: 100%;
  margin: 0 0 25px 0;
}
.btn-rq.btn-rq1 {
  /*background-color: #3EBD89;*/
  /*padding: 15px 20px;*/
  max-width: 100%;
  font-size: calc(12px +(15 - 12)*((100vw - 300px) /(1920 - 300)));
  font-weight: bold;
}
.btn-rq.btn-rq1:hover {
  border: 2px solid #000;
}
.banner-btn-2.btn-rq2 {
  color: #3EBD89;
  background-color: var(--white-color);
  border: transparent !important;
  padding: 15px 20px;
  max-width: 100%;
  font-size: calc(12px +(15 - 12)*((100vw - 300px) /(1920 - 300)));
  font-weight: bold;
}
.banner-btn-2.btn-rq2:hover {
  border: 0 !important;
}
.main-btn-holder {
  display: flex;
  /*justify-content:space-between;*/
}
.btn-box {
  max-width: 250px;
  margin-right: 15px;
}
.btn-rq1 {
  /*   padding: 10px 40px 10px 12px;
    max-width: 250px;
    font-size: calc(14px + (19 - 14) * ((100vw - 300px) / (1920 - 300)));*/
  /*padding: 12px 20px 12px 20px;*/
  max-width: 250px;
  font-size: calc(12px + (15 - 12) * ((100vw - 300px) / (1920 - 300)));
}
.top-box1 .top-text .chat-click {
  color: var(--black-color);
  font-size: calc(14px + (19 - 14) * ((100vw - 300px) / (1920 - 300)));
}
.logo-slider {
  background-color: #ffffffc9;
  padding: 5px 0;
}
.form-box {
  max-width: 560px;
  margin-left: auto;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 30px 30px 30px 30px;
  background-position: center;
  position: relative;
  background: #000;
  box-shadow: 0 2px 5px 1px rgb(0 0 0);
}
.form-box p {
  color: #fff;
}
.lp-banner .book-shape {
  position: absolute;
  left: -25%;
  bottom: 0;
}
.discount {
  position: absolute;
  /* border-radius: 50%;
    background-image: -moz-radial-gradient( 50% 50%, circle closest-side, rgb(252,210,28) 0%, rgb(244,190,20) 84%, rgb(235,169,11) 100%);
    background-image: -webkit-radial-gradient( 50% 50%, circle closest-side, rgb(252,210,28) 0%, rgb(244,190,20) 84%, rgb(235,169,11) 100%);
    background-image: -ms-radial-gradient( 50% 50%, circle closest-side, rgb(252,210,28) 0%, rgb(244,190,20) 84%, rgb(235,169,11) 100%);*/
  width: 136px;
  height: 136px;
  z-index: 9;
  top: -50px;
  right: -50px;
  display: flow-root;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: calc(10px + (14 - 10) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 900;
  color: var(--black-color);
  padding: 10px;
}
.discount label {
  font-size: calc(18px + (27 - 18) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  color: var(--black-color);
}
.form-box label {
  color: var(--white-color);
  font-size: calc(18px + (20 - 18) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  margin: 0;
  line-height: 1;
  padding: 0;
}
.ghostwriting-lp .form-box label {
  font-size: calc(19px + (24 - 19) * ((100vw - 300px) /(1920 - 300)));
  font-weight: 600;
}
.form-box input, .form-box select {
  background-color: rgb(243, 243, 243);
  height: 50px;
  border: 0;
  border-radius: 3px;
  padding: 5px 20px;
  width: 100%;
  color: #646060;
}
.form-box h2 {
  color: var(--white-color);
  /*font-size: calc(24px + (45 - 24) * ((100vw - 300px) / (1920 - 300)));*/
  font-size: calc(16px + (26 - 17) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 700;
  margin: 10px 0;
  text-transform: uppercase;
}
.ghostwriting-lp .form-box h2 strong {
  font-size: calc(14px + (17 - 14) * ((100vw - 300px) / (1920 - 300)));
}
.form-box .js-submit {
  background-color: #db0000;
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: 4px;
  color: var(--white-color);
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
}
.form-box .js-submit {
  background-color: #db0000;
}
.ghostwriting-lp .form-box .js-submit {
  background-color: var(--secondary-color);
  color: #0e0d0a;
}
.banner-bottom {
  border-top: 1px solid #000;
  padding: 20px 0;
  text-align: center;
  margin-top: 25px;
}
.banner-bottom h6 {
  font-size: calc(14px + (26 - 14) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 700;
  color: #0e0d0a;
  margin: 0;
  text-transform: uppercase;
}
.we-sec {
  position: relative;
  padding: 60px 0;
}
.we-sec h6 {
  font-size: calc(20px + (26 - 20) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 700;
  color: #0c0a0d;
  margin: 0;
  text-transform: uppercase;
}
.common-title {
  color: var(--primary-color);
  font-size: calc(20px + (51 - 28) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  text-transform: uppercase;
  /* text-align: center;*/
}
.ghostwriting-lp .we-sec .common-title {
  font-size: calc(20px + (38 - 20) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 600;
}
.common-title span {
  color: #0c0a0d;
  background-color: var(--secondary-color);
  display: inline-block;
  padding: 2px;
  line-height: 1;
}
.we-box {
  display: flex;
  /*align-items:center;*/
  margin-bottom: 20px;
}
.we-box .we-icon {
  /* border-left: 3px solid var(--secondary-color);
        border-radius: 10px;
        background-color: rgb(255, 255, 255);
        box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.19);*/
  margin-right: 10px;
  /*display: flex;
        align-items: center;
        justify-content: center;*/
}
.we-box .we-icon img {
  width: 71px;
  height: auto;
}
.we-box .we-text {
  margin-left: 25px;
}
.we-box .we-text h5 {
  font-size: calc(18px + (21 - 18) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 600;
  color: #0c0a0d;
}
.we-box .we-text p {
  font-size: calc(12px + (15 - 12) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  color: #190f0f;
}
.amazing-sec {
  background-color: #fffefc;
  padding: 60px 0;
  position: relative;
}
.amaze-box {
  margin-bottom: 25px;
  border: 0;
  border-radius: 12px;
  background-image: url('assets/ghost/box-bg.html');
  background-repeat: no-repeat;
  background-color: #fbf8f0;
  padding: 25px 35px;
  position: relative;
  background-size: cover;
  min-height: 380px;
}
.amaze-box .amaz-icon {
  margin-bottom: 20px;
}
.amaze-box .amaz-text h5 {
  font-size: calc(20px + (28 - 20) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  color: var(--primary-color);
  text-transform: uppercase;
  margin: 0;
}
.azcl1 {
  background-image: url('assets/ghost/box-bg.html');
}
.amaze-box .amaz-text p {
  font-size: calc(12px + (16 - 12) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  color: #636161;
}
.years-sec {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding: 60px 0;
}
.years-sec h1 {
  font-size: calc(32px + (59 - 32) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  color: var(--primary-color);
  text-transform: uppercase;
  margin: 0;
}
.years-sec h2 {
  font-size: calc(24px + (38 - 28) * ((100vw - 300px) / (1920 - 300)));
  color: #0c0a0d;
  background-color: var(--secondary-color);
  display: inline-block;
  padding: 2px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 400;
}
.years-sec h3 {
  font-size: calc(20px + (42 - 20) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 60px;
}
.year-box {
  border-right: 1px solid #cfcec9;
  text-align: left;
  margin-bottom: 20px;
}
.year-box span {
  font-size: calc(28px + (42 - 28) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  line-height: 1;
  margin: 0;
}
.year-box span em {
  font-size: calc(16px + (20 - 16) * ((100vw - 300px) / (1920 - 300)));
  font-weight: bold;
  position: absolute;
  top: 12px;
}
.year-box p {
  font-size: calc(10px + (19 - 10) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  color: #545861;
  margin: 0;
}
.work-sec {
  position: relative;
  padding: 50px 0;
}
.book-sec {
  position: relative;
  padding: 60px 0;
  background-color: #f2f2f2;
}
.book-sec .bookimg {
  position: relative;
  margin-bottom: 20px;
}
.book-sec .bookimg img {
  position: relative;
  margin-top: 50px;
  width: 80%;
  margin-bottom: 40px;
}
.book-sec .bookimg .book-shape {
  position: absolute;
  border-radius: 50%;
  background-image: -moz-radial-gradient(50% 50%, circle closest-side, rgb(252, 210, 28) 0%, rgb(244, 190, 20) 84%, rgb(235, 169, 11) 100%);
  background-image: -webkit-radial-gradient(50% 50%, circle closest-side, rgb(252, 210, 28) 0%, rgb(244, 190, 20) 84%, rgb(235, 169, 11) 100%);
  background-image: -ms-radial-gradient(50% 50%, circle closest-side, rgb(252, 210, 28) 0%, rgb(244, 190, 20) 84%, rgb(235, 169, 11) 100%);
  width: 120px;
  height: 120px;
  z-index: 9;
  top: -50px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: calc(10px + (14 - 10) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 900;
  color: var(--black-color);
  padding: 10px;
}
.book-slider .slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  padding: 1rem 0;
  list-style-type: none;
}
.book-slider .slick-dots li {
  margin: 0 0.10rem;
}
.book-slider .slick-dots button {
  display: block;
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: #8f709e;
  text-indent: -9999px;
}
.book-slider .slick-dots li.slick-active button {
  background-color: var(--primary-color);
  width: 18px;
  border-radius: 40%;
}
.testimonial-sec {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #f2f2f2;
}
.testimonial-sec .common-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
/*.testimonial-slider-lp{
    max-width:950px;
    margin:0 auto;
}*/
.testimonial-slider-lp .slick-slide {
  opacity: 0.3;
}
.testimonial-slider-lp .slick-current {
  opacity: 1;
}
.testimonial-sec .test-slide-box {
  max-width: 600px;
  margin: 0 auto;
}
.testimonial-slider-lp-2 {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.testimonial-slider-lp-2::before {
  content: "";
  background-image: url('assets/ghost/testi-quote.html');
  background-repeat: no-repeat;
  background-size: contain;
  width: 90px;
  height: 60px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.testimonial-slider-lp-2 p {
  color: #312c2c;
  font-size: calc(18px + (20 - 18) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 300;
  font-style: italic;
  line-height: 35px;
  max-width: 700px;
  margin: 0 auto;
}
.testimonial-slider-lp .testi-text span {
  display: block;
  font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  color: #190f0f;
  text-align: center;
}
.testimonial-slider-lp .testi-text label {
  display: block;
  font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 500;
  color: #190f0f;
}
.testimonial-slider-lp .testi-text label {
  display: block;
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 700;
  color: #190f0f;
  text-transform: uppercase;
  text-align: center;
}
/*.testimonial-slider-lp .testi-box  {
    max-width: 250px;
    margin: 0 auto;
    text-align: center;
    justify-content:center;
}*/
.testimonial-slider-lp .testi-box .test-img {
  max-width: 250px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.testimonial-slider-lp .testi-box .test-img img {
  margin-bottom: 10px;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  position: relative;
}
.testimonial-slider-lp .testi-box .test-img:before {
  content: "";
  background-image: url('assets/ghost/testi-before.html');
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 0;
  right: 27%;
  z-index: 98;
}
/*.testi-box-client{
    max-width:800px;
    margin:0 auto;
}*/
.testimonial-sec .container {
  background-color: #fff;
  border: 0;
  border-radius: 15px 15px 0 0;
  padding: 80px 30px 0 30px;
}
.ghostwriting-lp .testiThumb {
  position: relative;
  background: var(--white);
  border: 2px solid #f0f0f0;
  border-left: 1rem solid #f0f0f0;
  border-radius: 4px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05), 0 -8px 15px rgba(0, 0, 0, 0.05);
  padding: 3rem 2rem;
  margin: 2rem 1rem;
  min-height: 22rem;
  text-align: center;
  transition: ease all 0.5s;
}
.ghostwriting-lp .testiThumb .quote {
  position: absolute;
  top: -1.5rem;
  right: 3rem;
}
.ghostwriting-lp .testiThumb .quote img {
  position: relative;
  filter: brightness(0.1) contrast(0.5);
  transition: ease all 0.5s;
}
.ghostwriting-lp .fw-semibold {
  font-weight: 600 !important;
}
.ghostwriting-lp .testiThumb p {
  margin: 0;
  font-weight: 300;
  line-height: 1.7;
}
.ghostwriting-lp .testiThumb label {
  display: inline-block;
  font-weight: 600;
}
.ghostwriting-lp .testiThumb:hover, .ghostwriting-lp .slick-current + .slick-active .testiThumb {
  border: 2px solid var(--primary-color);
  border-left: 1rem solid var(--primary-color);
  transform: scale(1.05);
}
.ghostwriting-lp .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: #fff0;
  border: 0;
  outline: 0;
  background: 0 0;
}
.ghostwriting-lp .slick-dots li button {
  width: 0.8rem;
  height: 0.8rem;
  background: var(--white);
  border-radius: 100px;
  transition: ease all 0.5s;
}
.ghostwriting-lp .testimonialCarousel .slick-dots li button {
  background: var(--primary-color);
}
.ghostwriting-lp .slick-dots li {
  width: auto;
}
.ghostwriting-lp .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.ghostwriting-lp .slick-dots li button:before, .slick-dots li button:after {
  display: none;
}
.ghostwriting-lp .slick-dotted.slick-slider {
  margin-bottom: 50px;
}
.ghostwriting-lp .new-cta {
  background-image: url(assets/ghost/new-cta-bg.html);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}
.ghostwriting-lp .new-cta h4 {
  font-size: calc(24px + (40 - 24) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  color: var(--white-color);
  margin: 0;
  max-width: 1050px;
}
.new-cta .btn-rq2 {
  border: 2px solid var(--white-color) !important;
  color: var(--white-color);
}
.buseness-sec {
  position: relative;
  padding: 80px 0;
  z-index: 9;
  background-color: #f2f0f0;
}
.logo-slider .item {
  text-align: center;
  margin: 0 20px;
}
.buseness-sec h4 {
  font-size: calc(20px + (24 - 20) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  margin-bottom: 5px;
  color: var(--primary-color);
  text-transform: uppercase;
}
.busi-list {
  padding: 0;
  margin: 10px 0;
}
.busi-list li {
  list-style: none;
  font-size: calc(16px + (18 - 16) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  position: relative;
  padding-left: 25px;
  color: #131210;
  margin-bottom: 12px;
}
.busi-list li::before {
  content: "";
  background-image: url('assets/ghost/check-right.html');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 18px;
  height: 14px;
  position: absolute;
  left: 0;
  top: 4px;
}
.pp-box {
  position: relative;
}
.pp-box h4 s {
  font-size: calc(24px + (42 - 24) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 600;
  color: #bbbbba;
}
.pp-box h4 {
  font-size: calc(34px + (60 - 34) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1;
  margin: 0;
}
.pp-box span {
  font-size: calc(22px + (28 - 22) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 700;
  color: #bbbbba;
  line-height: 1;
  margin: 0;
}
.pp-box span em {
  font-size: calc(22px + (28 - 22) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin: 0;
}
.cta-sec {
  position: relative;
  padding: 50px 0;
  /*  margin-top: -200px;
        pointer-events: none;
    */
  background-color: #fdf4ec;
  z-index: 1;
}
.cta-sec .cta-box {
  padding: 30px 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  text-align: center;
  /*
        position: relative;
        bottom: -150px;
        */
  max-width: 1200px;
  border-radius: 30px;
  background: #000;
}
.cta-sec .cta-box h4 {
  font-size: calc(24px + (40 - 24) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  color: var(--white-color);
  margin: 0;
  max-width: 1050px;
}
.cta-sec .cta-box h4 span {
  color: var(--secondary-color);
}
.cta-sec .cta-box p {
  font-size: calc(14px + (17 - 14) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  color: var(--white-color);
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 20px;
}
.cta-box .main-btn-holder {
  justify-content: center;
}
.cta-box .top-box .top-text span {
  color: var(--white-color);
  font-size: 12px;
  font-weight: 700;
  margin: 0;
  text-align: left;
}
.cta-box .btn-rq2 {
  border: 2px solid var(--white-color) !important;
  color: var(--white-color);
}
.cta-box .top-box .top-text a {
  color: var(--white-color);
  font-size: calc(14px + (19 - 14) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  margin: 0;
  text-align: left;
}
.cta-box .top-box .icon-img img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1265%) hue-rotate(336deg) brightness(107%) contrast(101%);
}
.lp-footer {
  background-color: #fdf4ec;
  padding-top: 20px;
  padding-bottom: 20px;
}
.lp-footer p {
  color: #808080;
  font-size: calc(12px + (14 - 12) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  margin: 0;
}
.ft-list {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: end;
}
.ft-list li {
  list-style: none;
  margin: 0 15px;
}
.ft-list li a {
  color: #808080;
  font-size: calc(12px + (15 - 12) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  margin: 0;
}
.social-links {
  display: flex;
  align-items: center;
  padding-left: 0;
  list-style: none;
  justify-content: center;
}
footer .social-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 9px;
  background-color: var(--primary-color);
  transition: 0.3s ease-in;
  text-decoration: none;
  color: #ffffff;
}
footer .social-links li.footer__column-link-item {
  margin-top: 0 !important;
}
.trust-pilot-img {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
  z-index: 99999;
  box-shadow: 0 0 5px rgba(0, 0, 0, .2);
  background-color: #fff;
  display: block;
  text-align: center;
  padding: 5px 2px;
  transition: .3s;
  margin-top: 5px;
  margin-bottom: 5px;
  border-radius: 0 6px 6px 0;
  margin-right: auto;
  max-width: 40px;
  box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}
footer .social-links li .footer__column-link-icon {
  margin: 0;
  padding: 0;
}
/* Fixed Position Button Start*/
.fixed-btm {
  position: fixed;
  right: 0;
  bottom: 30%;
  z-index: 9999;
  writing-mode: tb-rl;
  /*width: 50px;*/
  display: flex;
  align-self: center;
  justify-content: center;
  /*  transform:rotate(180deg);*/
  border: 0;
}
.fixed-list {
  padding: 0;
  margin: 0;
  display: flex;
}
.fixed-list li {
  list-style: none;
  margin: 2px 0;
  background-color: var(--primary-color);
  padding: 0 12px;
  border: 0;
  border-radius: 30px 0px 0px 30px;
}
.fixed-btm a {
  border-radius: 0;
  border: 0;
  color: var(--white-color);
  text-decoration: none;
  padding: 12px 0;
  line-height: 1;
  letter-spacing: 2px;
  font-weight: 500;
  text-align: center;
  font-size: 22px;
}
.fixed-list li a svg {
  font-size: 22px;
}
.fixed-list li:hover {
  background-color: var(--secondary-color);
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
}
.fixed-list li a:hover svg {
  font-size: 22px;
}
/*.fixed-btm:hover {
    background-color: var(--secondary-color);
    border: 0;
}*/
.fixed-btm a:hover {
  /*  background-color:var(--secondary-color);*/
  border: 0;
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7499%) hue-rotate(177deg) brightness(99%) contrast(99%);
}
/*Fixed Position Button End */
.pricing-pkg-sec h3 {
  font-size: calc(24px + (35 - 24) * ((100vw - 300px) / (1920 - 300)));
}
.p-pkg-box {
  padding: 20px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='15' ry='15' stroke='%23783e67' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='24' stroke-linecap='square'/%3e%3c/svg%3e");
  border-radius: 15px;
  border-radius: 15px;
  border-radius: 15px;
  background-color: var(--pricing-package-bg);
  transition: 0.3s ease-in;
  position: relative;
  margin-bottom: 20px;
}
.pkg-tag {
  height: 114px;
  width: 32px;
  background-color: #e56932;
  color: #fff;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-text-orientation: mixed;
  position: absolute;
  right: 5px;
  top: 0;
  padding: 12px 5px;
  box-shadow: 8px 16px 19px 0px #0000004f;
  font-size: 19px;
  font-weight: 700;
}
.pkg-tag:after {
  content: "";
  width: 100%;
  height: 18px;
  display: block;
  position: absolute;
  right: 0;
  bottom: -18px;
  border-width: 16px;
  border-left-color: #e56932;
  border-right-color: #e56932;
  border-bottom-color: transparent;
  border-top: #e56932;
  border-style: solid;
}
.p-pkg-cont {
  height: 390px;
  overflow: auto;
}
.p-pkg-cont::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}
.p-pkg-cont::-webkit-scrollbar {
  width: 5px;
  background-color: #F5F5F5;
}
.p-pkg-cont::-webkit-scrollbar-thumb {
  background-color: #F90;
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent)
}
.pkg-title {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
}
.pkg-main-title {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 5px;
}
.pkg-title:after {
  content: "";
  width: 180px;
  height: 2px;
  background: #4c2344;
  display: block;
  position: absolute;
  bottom: -10px;
  left: -20px;
}
.pkg-main-title {
  font-size: 21px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 5px;
}
.pkg-title:after {
  content: "";
  width: 180px;
  height: 2px;
  background: #4c2344;
  display: block;
  position: absolute;
  bottom: -10px;
  left: -20px;
}
.pkg-list-title {
  display: block;
  text-transform: uppercase;
  color: #4c4d51;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: 10px;
}
.pkg-list {
  list-style: none;
  padding-left: 25px;
}
.pkg-list li:before {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  background-image: url(assets/images/right-icon.html);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-left: -22px;
  margin-right: 10px;
}
.pkg-list li {
  margin-bottom: 16px;
  color: #4c4d51;
}
.p-pkg-footer {
  border-top: 1px solid;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 30px 0px 15px;
}
@media (max-width: 1600px) {
  .p-pkg-footer {
    justify-content: space-between;
  }
  .p-pkg-footer .live-chat img {
    width: 75px;
  }
  .p-pkg-footer .colored-btn {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
  }
}
@media (max-width: 1024px) {
  .p-pkg-footer .live-chat img {
    width: 55px;
  }
}
@media (max-width: 767px) {
  .p-pkg-footer .live-chat img {
    width: 85px;
  }
}
.space-p-t {
  padding-top: 80px;
}
.space-p-b {
  padding-bottom: 80px;
}
.space-p-tb {
  padding: 80px 0;
}
.space-m-t {
  margin-top: 80px;
}
.space-m-b {
  margin-bottom: 80px;
}
.space-m-tb {
  margin: 80px 0;
}
/* Buttons style */
.btn-eq-w {
  min-width: 180px;
  text-align: center;
}
.colored-btn {
  background-color: #f4a721;
  border: 1px solid #f4a721;
  color: #000000;
  border-radius: 0;
  padding: 12px 26px;
  border-radius: 18px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  display: inline-block;
  transition: 0.3s ease-in-out;
  margin-bottom: 8px;
}
.colored-btn:hover {
  background-color: #241b28;
  color: #fff;
  border-color: #241b28;
}
.bordered-btn {
  background-color: transparent;
  border: 1px solid #f4a721;
  color: #fff;
  border-radius: 0;
  padding: 12px 26px;
  border-radius: 18px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  display: inline-block;
  transition: 0.3s ease-in-out;
}
.bordered-btn:hover {
  background-color: #f4a721;
  border-color: #f4a721;
  color: #000;
}
.btn-primary {
  background-color: #f4a721;
  border-color: #f4a721;
  color: #000000;
  border-radius: 0;
  padding: 12px 26px;
  border-radius: 18px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  display: inline-block;
  transition: 0.3s ease-in-out;
}
/* Main Banner Css End*/
/* Process Css Start */
.process-sec {
  position: relative;
  padding-top: 150px;
  padding-bottom: 80px;
  z-index: 99;
}
.process-sec .common-title {
  font-size: calc(20px + (30 - 20) * ((100vw - 300px) / (1920 - 300)));
}
.process-sec .prcline {
  position: relative;
}
.process-sec .prcline::before {
  content: "";
  background-image: url(assets/ghost/process-shape13.html);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 850px;
  position: absolute;
  left: -30px;
  /* right: 0; */
  /*top: -61px;*/
  top: -85px;
  z-index: 0;
  /* margin: 0 auto;*/
}
.process-sec-p .prcline::before {
  content: "";
  background-image: url(assets/ghost/process-shape13.html);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 840px;
  position: absolute;
  left: -30px;
  /* right: 0; */
  top: -61px;
  z-index: 0;
  /* margin: 0 auto;*/
}
.process-sec-p .extra-top {
  margin-top: 60px;
}
.np1 {
  position: absolute;
  top: -35%;
  left: 20%;
}
.np2 {
  position: absolute;
  top: -25%;
  left: 36%;
}
.np3 {
  position: absolute;
  top: -35%;
  left: 36%;
}
.np4 {
  position: absolute;
  top: -20%;
  left: 36%;
}
/* .process-box1 {
    position: relative;
    border-left: 1px solid #111;
    padding-left:20px;
}
.process-box2 {
    position: relative;
    border-top: 1px solid #111;
    padding-left: 20px;
}*/
.extra-top {
  margin-top: 80px;
}
.process-box {
  max-width: 320px;
  margin: 0 auto;
  position: relative;
}
.process-box .process-icon {
  margin-bottom: 15px;
}
.process-box .process-text h6 {
  font-size: calc(16px + (20 - 16) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-color);
}
.number {
  background-color: var(--secondary-color);
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 600;
}
.process-box .n1 {
  position: absolute;
  top: -31%;
  left: 30%;
}
.process-box .n2 {
  position: absolute;
  top: -19%;
  left: 30%;
}
.process-box .n3 {
  position: absolute;
  top: -26%;
  left: 30%;
}
.process-box .n4 {
  position: absolute;
  top: -22%;
  left: 30%;
}
.process-box .process-text h5 {
  font-size: calc(20px + (32 - 20) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
}
.process-box .process-text p {
  font-size: calc(12px + (14 - 12) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  margin-bottom: 10px;
  color: #636161;
}
/* Process Css End */
.live-chat img {
  width: 85%;
}
select.form-control {
  -webkit-appearance: menulist;
}
.kin-img {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  border: 0;
  padding: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 15px;
  background-color: #f2f2f2;
  margin-bottom: 15px;
}
.btn-rq2:hover {
  background-color: var(--secondary-color);
  color: #111;
  border: 2px solid var(--secondary-color) !important;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
/* ===== Scrollbar CSS ===== */
.smooth-sec {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.smoth-box {
  background-color: var(--primary-color);
  border: 0;
  border-radius: 20px;
  padding: 20px;
  min-height: 415px;
  margin-bottom: 20px;
  position: relative;
}
.smoth-yellow {
  background-color: #f4a721;
}
.smoth-box h4 {
  font-size: calc(22px + (30 - 22) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 500;
  color: #fff;
  padding-top: 108px;
}
.smoth-box p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.smoth-box .cirlc-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 109px;
  height: 112px;
  /* background-color: #f4a721;
    border: 0;
    border-radius: 60% 0% 60% 60%;*/
  font-size: calc(28px + (37 - 28) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Firefox */
* {
  appearance: menulist;
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 12px;
}
*::-webkit-scrollbar-track {
  background: #fff;
}
*::-webkit-scrollbar-thumb {
  background-color: #e50300;
  border-radius: 0px;
  border: 0px solid #ffffff;
}
@media(min-width:1920px) {
  .container {
    max-width: 1280px;
  }
}
@media(max-width:1600px) {
  .process-box .n4 {
    top: -25%;
  }
  .process-box .n1 {
    top: -30%;
  }
  .process-sec-p .prcline::before {
    display: none;
  }
  .process-sec .prcline::before {
    display: none;
  }
}
@media(max-width:1400px) {
  .book-shape {
    display: none;
  }
  .book-shape {
    display: none;
  }
  .discount {
    right: 0;
  }
  .discount img {
    width: 130px;
    height: 130px;
  }
  .btn-rq2 {
    padding: 10px 10px 10px 10px;
  }
  .lp-banner {
    /*padding-top: 150px;*/
  }
  .process-box .n3 {
    top: -42%;
  }
  .process-box .n2 {
    top: -30%;
  }
  .process-box .n4 {
    top: -33%;
  }
  .process-box .n1 {
    top: -50%;
  }
  .process-sec .prcline::before {
    display: none;
  }
  .extra-top {
    margin-top: 30px;
  }
  .number {
    display: none;
  }
  .process-sec {
    padding-top: 80px;
  }
  .process-sec-p .prcline::before {
    display: none;
  }
}
@media(max-width:1366px) {
  .process-box .n2 {
    position: absolute;
    top: -30%;
    left: 30%;
  }
  .number {
    display: none;
  }
}
@media(max-width:1199px) {
  .book-shape {
    display: none;
  }
  .discount {
    right: 0;
  }
  .discount img {
    width: 100px;
    height: 100px;
  }
  .process-sec .prcline::before {
    display: none;
  }
  .number {
    display: none;
  }
  .process-sec {
    padding-top: 70px;
  }
  .ft-list li {
    margin: 0 6px;
  }
  .buseness-sec {
    background-color: transparent;
  }
}
@media(max-width:991px) {
  .process-sec .prcline::before {
    display: none;
  }
  .top-righ-first {
    display: none;
  }
  .book-shape {
    display: none;
  }
  .form-box {
    padding: 60px 20px 62px 20px;
    background-size: cover;
  }
  #header .btn-rq {
    display: none;
  }
  #header .top-box {
    display: none;
  }
  .form-box .js-submit {
    width: 100%;
    font-size: 14px;
  }
  .main-btn-holder {
    display: grid;
    justify-content: left;
    margin-bottom: 10px;
  }
  .top-box {
    justify-content: center;
  }
  .discount {
    right: 0;
    margin: 0 auto;
  }
  .discount img {
    width: 80px;
    height: 80px;
  }
  .we-sec {
    position: relative;
    padding: 40px 0;
  }
  .top-right a {
    display: none;
  }
  .amazing-sec {
    padding: 30px 0;
  }
  .years-sec {
    padding: 40px 0;
  }
  .btn-box {
    margin-right: 0;
  }
  .ft-list li {
    margin: 0 8px;
  }
  .cta-sec {
    margin-top: -300px;
  }
  .discount {
    right: 0;
  }
  .process-sec {
    display: none;
  }
  .hidden-md {
    display: none;
  }
}
@media(max-width:767px) {
  .lp-banner {
    padding-top: 80px;
  }
  .top-righ-first {
    display: none;
  }
  .book-shape {
    display: none;
  }
  .form-box {
    padding: 60px 20px 62px 20px;
    background-size: cover;
  }
  #header .btn-rq {
    display: none;
  }
  #header .top-box {
    display: none;
  }
  .form-box .js-submit {
    width: 100%;
    font-size: 14px;
  }
  .main-btn-holder {
    display: grid;
    justify-content: center;
    margin-bottom: 10px;
  }
  .top-box {
    justify-content: center;
  }
  .discount {
    right: 0;
    margin: 0 auto;
  }
  .discount img {
    width: 80px;
    height: 80px;
  }
  .we-sec {
    position: relative;
    padding: 40px 0;
  }
  .top-right a {
    display: none;
  }
  .amazing-sec {
    padding: 30px 0;
  }
  .years-sec {
    padding: 40px 0;
  }
  .btn-box {
    margin-right: 0;
  }
  .ft-list li {
    margin: 0 8px;
  }
  .cta-sec {
    margin-top: -300px;
  }
  .process-sec {
    display: none;
  }
  .trust-pilot-img {
    display: none;
  }
  .years-sec {
    text-align: center;
  }
  .year-box {
    text-align: center;
  }
  .book-sec .bookimg .book-shape {
    top: 0;
    width: 95px;
    height: 95px;
  }
  .book-sec .bookimg {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .work-sec {
    text-align: center;
  }
  .work-slide .circle-img {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .years-sec .hidden-sm {
    display: none !important
  }
  .p-pkg-footer {
    display: grid;
    justify-content: center;
  }
  .buseness-sec {
    padding: 0 0 60px;
  }
  .space-p-tb {
    padding: 40px 0;
  }
  .lp-footer p {
    padding-bottom: 10px;
  }
}
.lp-book-pub .lp-banner-content h1, .lp-book-pub .lp-banner-content p {
  color: #0c0a0d;
}
.lp-book-pub .lp-banner {
  padding: 100px 0 0 0;
}
.lp-book-pub #header {
  border-bottom: 0;
}
.ny-pub-form input[type="checkbox"] {
  height: 15px;
  margin-bottom: 0px;
  margin-top: 0px;
  background: transparent;
  width: 10%;
}
.ny-pub-form .d-flex {
  gap: 0 5px;
}
.ny-pub-form label {
  font-size: 14px;
  /*font-family: "Montserrat";*/
  line-height: 19px;
  color: #fff;
  font-weight: 500;
}
/*modal css*/
.comodal {
  border-radius: 0 !important;
  border: #004aad 3px solid;
  padding: 15px;
  background: #fff;
}
.pop-upform h2 {
  font-size: 25px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  line-height: unset;
  color: #004aad;
  margin: 0 0 15px;
}
.pop-upform p {
  text-align: center;
}
.m-header {
  border-bottom: 0px;
  justify-content: right;
  padding-bottom: 0px;
}
.close-btn {
  position: relative;
  border-radius: 0;
  width: 30px;
  height: 30px;
  background: #f77223;
  display: flex;
  align-items: center;
  justify-content: center;
  border: #fff 3px solid;
  box-shadow: #00000082 0 0 6px;
}
.btn-close1 {
  padding: 0px !important;
  margin: 0px !important;
  --bs-btn-close-bg: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0px;
}
.btn-close1 i {
  color: #fff;
}
.form21 .form-group {
  position: relative;
}
.form21 ::placeholder {
  font-size: 16px;
  color: #000 !important;
  font-weight: 300 !important;
}
.form21 input {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
  border: #dcdcdc 1px solid !important;
  padding: 10px 10px 10px 40px !important;
  background: #fafafa !important;
  color: #757575 !important;
  font-weight: 300 !important;
  border-radius: 0px !important;
  height: 40px;
}
.form21 input:focus {
  box-shadow: none !important;
  border-color: #d73038 !important;
}
.form21 .message {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  border: #dcdcdc 1px solid !important;
  padding: 7px 10px 10px 40px !important;
  background: #fafafa !important;
  color: #757575 !important;
  font-weight: 300 !important;
  border-radius: 0px !important;
  margin-bottom: 15px;
  resize: none;
}
.form21 .message:focus {
  box-shadow: none !important;
  border-color: #004aad !important;
}
.activatenow {
  display: block;
  margin: auto;
  background: #004aad;
  padding: 6px 40px;
  border-radius: 0;
  text-decoration: none;
  color: #fff;
  text-transform: capitalize;
  border: 0px;
  border: 2px solid #004aad;
  font-family: "Poppins", sans-serif;
}
.form-btns {
  justify-content: center;
  display: flex;
}
.chatting-btn {
  background: #f77223;
  border-radius: 0px;
  padding: 6px 15px;
  text-decoration: none;
  color: #fff;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
}
.icons01 {
  position: absolute;
  left: 13px;
  top: 12px;
  /*color: #757575;*/
  color: #004aad;
  font-size: 14px;
}
.icons02 {
  position: absolute;
  left: 21px;
  top: 18px;
  color: #757575;
  font-size: 14px;
}