@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&amp;display=swap");
@font-face {
  font-family: "Brinnan_Black";
  src: url("../fonts/Brinnan_Black.ttf");
}
@font-face {
  font-family: "Brinnan_Bold";
  src: url("../fonts/Brinnan_Bold.ttf");
}
@font-face {
  font-family: "Brinnan_Regular";
  src: url("../fonts/Brinnan_Regular.ttf");
}
@font-face {
  font-family: "Brinnan_Thin";
  src: url("../fonts/Brinnan_Thin.ttf");
}
@font-face {
  font-family: "Brinnan_Light";
  src: url("../fonts/Brinnan_Light.ttf");
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Brinnan_Bold";
  text-transform: uppercase;
}
ul,
li,
p {
  font-family: "Brinnan_Regular";
}
body {
  overflow-x: hidden;
}
main {
  overflow: hidden;
}
a {
  text-decoration: none;
}
.btn:focus {
  outline: none;
  box-shadow: none;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
textarea:focus,
input:focus {
  outline: none !important;
  box-shadow: none !important;
}
button:focus {
  outline: none !important;
  box-shadow: none !important;
}
/* header css start here */
.header-1 {
  background: linear-gradient(80deg, #4b3b72 0, #362c4f 50%, #29223a 100%);
  padding-top: 0;
}
header {
  background: linear-gradient(80deg, #4b3b72 0%, #362c4f 50%, #29223a 100%);
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  transition: all 0.5s ease-in-out;
}
header nav.navbar .navbar-brand .logo {
  width: 150px;
  margin: 0;
  transition: all 0.5s ease-in-out;
  display: block;
}
header .navbar-toggler {
  border: none;
  color: transparent;
}
header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}
header .container {
  max-width: 1640px;
}
header nav.navbar {
  padding: 10px 0;
}
header nav.navbar .navbar-brand {
  padding: 0 0;
  margin: 0;
}
header .navbar-collapse ul.navbar-nav {
  width: 100%;
  margin: 0 10px 0;
  justify-content: center;
}
header .navbar-nav .nav-item.dropdown .dropdown-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .navbar-expand-lg .navbar-collapse {
  justify-content: space-between;
}
header .navbar-collapse ul.navbar-nav li.nav-item {
  margin: 0 10px 0;
}
header .navbar-collapse ul.navbar-nav li.nav-item a.nav-link {
  background: transparent;
  color: #fff;
  font-size: 16px;
  padding: 20px 0px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
header .navbar-nav .nav-item.dropdown .dropdown-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav.navbar .navbar-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
header nav.navbar .navbar-buttons a.call-btn {
  background: #ee9237;
  color: #fff;
  font-size: 16px;
  width: 150px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 10px 10px;
  margin: 0 10px 0 0;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
header nav.navbar .navbar-buttons a.call-btn:hover {
  transform: scale(1.1);
}
header .navbar-collapse ul.navbar-nav li.nav-item.dropdown {
  position: inherit;
  display: flex;
  align-items: center;
}
header .navbar-nav .nav-item.dropdown button.dropdown-icon-btn {
  background: none;
  color: #fff;
  outline: none;
  box-shadow: none;
  margin: 0px 0 0 5px;
  font-size: 14px;
  font-weight: 600;
  border: none;
}
header .navbar-nav .nav-item.dropdown button.dropdown-icon-btn i {
}
header .navbar-nav .nav-item ul.dropdown-menu li a.dropdown-item:focus,
header .navbar-nav .nav-item ul.dropdown-menu li a.dropdown-item:hover {
  background: #f49720;
  color: #fff;
}
header .navbar-nav .nav-item ul.dropdown-menu {
  background: #fff;
  top: 75px;
  left: 0;
  right: 0;
  width: 75%;
  margin: 0 auto;
  border: none;
  border-radius: 0px;
  box-shadow: 0 5px 20px -12px #212529;
  padding: 0px 0px;
  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;
}
/*.fa-chevron-down:before {*/
/*    content: "Ã¯ÂÂ¸";*/
/*}*/
.navbar-nav .dropdown-menu {
  position: static;
}
header .navbar-nav .nav-item ul.dropdown-menu li a {
  color: #212529;
  font-size: 16px;
  border-bottom: 1px solid #d1e0e7;
  border-radius: 0;
  padding: 8px 8px;
  margin: 0;
  text-align: left;
  text-transform: capitalize;
}
header .navbar-nav .nav-item ul.dropdown-menu li {
  border-right: 1px solid #d1e0e7;
  padding: 0;
  width: 100%;
}
header .navbar-nav .nav-item ul.dropdown-menu.dropdown-menu-single {
  width: 250px;
  margin: -11px 0 0 0;
}
header .navbar-collapse ul.navbar-nav li.nav-item.dropdown.dropdown-single {
  position: relative;
}
/* header css end here */
/* hero banner css start here */
.hero-banner {
  background: #e1f2f9;
  padding-top: 150px;
  padding-bottom: 50px;
  background-image: url(../images/hero-banner.webp) !important;
}
.hero-banner h1 {
  font-weight: 700;
}
.banner-sub-heading {
  font-size: 20px;
  font-weight: 700;
}
.banner-list {
  padding-left: 0;
}
.banner-list li span i {
  color: #fff;
  font-size: 10px;
}
.banner-list li {
  padding-top: 15px;
  display: flex;
}
.banner-list li span {
  width: 20px;
  height: 20px;
  background-color: #413362;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  display: flex;
}
.banner-list li span i {
  color: #fff;
  font-size: 10px;
}
/* .fa-check:before {
  content: "Ã¯â‚¬Å’";
} */
.btn:hover {
  color: #212529;
}
.bg-purple {
  color: #fff;
  background-color: #413362;
}
.bg-purple:hover,
.cta-btn2:hover {
  color: #fff;
  background-color: #413362;
}
.hero-banner-form {
  color: #fff;
  background-color: #413362;
  border-radius: 15px;
  padding: 25px 38px;
}
.hero-banner-form .form-control::placeholder {
  color: #fff;
}
.hero-banner-form .form-control {
  background: 0 0;
  border: 1.5px solid #fff;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
}
.hero-banner-form input.form-control {
  height: 45px;
}
.hero-banner-form textarea.form-control {
  height: 165px;
}
.banner-btns {
  padding-top: 40px;
}
.banner-form-new-btn {
  color: #fff;
  width: 100%;
  background-color: #f49720;
  padding: 15px 0;
  display: block;
  border: none;
}
.banner-form-new-btn:hover {
  background-color: #f49720;
  color: #fff;
}
/* hero banner css  end here */
/* booksell-platform sec css start here */
.sec {
  padding-top: 50px;
}
.platform-logo-booksell {
  margin-right: 20px;
}
.pt-new-img {
  margin-top: 20px;
}
.pt-sec-new .nav-tabs .nav-link {
  width: 155px;
  color: #000;
  background-color: #f49720;
  border-radius: 5px;
  margin-right: 20px;
  font-size: 16px;
  font-weight: 700;
}
.pt-sec-new .nav-tabs {
  border-bottom: 0;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: #0000;
  border: 1px solid #000;
}
.sec-light-color {
  background-color: #e1f2f9;
}
.sec-mt {
  margin-top: 30px;
}
.pt-portfolio-wrap {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  margin-top: 30px;
  display: grid;
}
/* booksell-platform sec css end here */
/*sec-pb css start here  */
.new-company-sec {
  color: #fff;
  background-color: #231d34;
}
.new-company-sec ul li {
  list-style: disc;
}
.new-company-sec .sec-heading-new {
  font-size: 25px;
  font-weight: 700;
}
.sec-pb {
  padding-bottom: 50px;
}
.sec-heading-new {
  font-size: 35px;
}
/*sec-pb css end here  */
.genre-grid-wrap {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  margin-top: 20px;
  display: grid;
}
.revies-platform-images {
  grid-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  display: grid;
}
.platform-wrap {
  color: #000;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}
.pf-logo {
  align-items: center;
  display: flex;
}
.btn-cta {
  width: 150px;
  height: 40px;
  background-color: #f49720;
  margin-top: 15px;
  margin-right: 10px;
  font-size: 16px;
  font-weight: 700;
}
.btn-cta img {
  margin-right: 5px;
}
.cta-btn2 {
  color: #fff;
  background-color: #413362;
}
.btn-dark-new {
  padding: 10px 40px;
  font-size: 16px;
  font-weight: 700;
}
.btn-dark-new img {
  margin-right: 5px;
}
.bg-dark-btn {
  background-color: #f49720;
  border: none;
}
.bg-dark-btn:hover {
  background-color: #f49720;
  border: none;
}
.inner-hd-sm {
  font-size: 22px;
}
.award-winning-wrap {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  display: grid;
}
.award-winning-logo {
  margin-left: 32px;
}
.testi-box-new-detail {
  width: 50%;
}
.new-test-box {
  background-color: #fff;
  border-radius: 30px;
  margin: 20px;
  padding: 30px 10px 30px 30px;
}
.testi-heading {
  color: #72c2db;
  font-size: 70px;
  font-weight: 900;
}
.new-test-box:hover {
  background: linear-gradient(#e6faff 0, #dce3e5 100%);
  transform: scale(0.9);
}
.new-test-box {
  transition: all 0.3s ease-in-out;
  position: relative;
}
.new-test-box:before {
  content: "";
  width: 80px;
  height: 80px;
  background: 0 0;
  border: 0 solid #72c2db;
  border-width: 0 0 10px 10px;
  border-radius: 0 0 0 50px;
  position: absolute;
  bottom: -5px;
  left: -5px;
}
.serbox-new a {
  color: #fff;
}
.serbox-new {
  color: #fff;
  background-color: #413362;
  margin-right: 10px;
  padding-top: 15px;
  padding-bottom: 38px;
}
.ser-box-new-wrap {
  grid-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  display: grid;
}
.serbox-new h4 {
  padding-top: 10px;
}
p a {
  color: #f49720;
}
.serbox-new {
  color: #fff;
  padding-top: 15px;
  padding-bottom: 38px;
  padding-right: 30p;
  background-color: #413362;
  border-radius: 10px;
  margin-top: 20px;
  padding-left: 30px;
  padding-right: 30px;
}
.client-detail-wrap h4 {
  color: #72c2db;
  font-weight: 900;
}
.test-stars i {
  color: #ffc200;
}
.new-test-sec {
  padding-left: 50px;
  padding-right: 50px;
}
.slider-btn {
  width: 30px;
  height: 30px;
  color: #fff;
  background-color: #4b3b72;
  border: none;
}
.our-ser-new-sec {
  position: relative;
}
.prev-slide {
  position: absolute;
  top: 54%;
  left: 10%;
  transform: translateY(-50%);
}
.next-slide {
  position: absolute;
  top: 54%;
  right: 10%;
  transform: translateY(-50%);
}
/* banner css end here */
/* new-company-sec css start here */
.new-books-sec {
  background-image: url(../images/genre-bg.php);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-left: 50px;
  padding-right: 50px;
}
.platform-wrap {
  color: #000;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}
.slick-dots {
  display: none !important;
}
/* new-company-sec css end here */
.frequently-asked-questions {
  background-color: #f4f4f4;
  padding: 80px 0 50px;
}
.frequently-asked-questions .frequently-heading {
  text-align: center;
}
.frequently-asked-questions .accordion-item {
  background: 0 0;
  border: none;
  margin: 0 0 15px;
}
.frequently-asked-questions .accordion-header {
  margin: inherit;
}
.frequently-asked-questions .accordion-item:first-of-type .accordion-button {
  text-transform: capitalize;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.frequently-asked-questions .accordion-button:not(.collapsed):after {
  background-image: inherit;
  transform: inherit;
  font-size: 25px;
  line-height: 31px;
  content: "-" !important;
}
.frequently-asked-questions .accordion-button {
  width: 100%;
  color: #212529;
  text-align: left;
  overflow-anchor: none;
  color: #fff;
  text-transform: capitalize;
  background-color: #ee9237;
  border: 0;
  border-radius: 10px;
  flex-direction: row-reverse;
  order: 2;
  justify-content: flex-end;
  align-items: center;
  margin: 0 0 0 auto;
  padding: 1rem 1.25rem;
  font-size: 14px;
  font-weight: 500;
  /* transition: color 0.15s ease-in-out,
     background-color 0.15s ease-in-out, 
     border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s; */
  display: flex;
  position: relative;
  width: 100% !important;
}
.frequently-asked-questions .accordion-button:after {
  width: 30px;
  height: 30px;
  content: "+";
  color: #fff;
  text-align: center;
  background: #574b80;
  border-radius: 50%;
  flex-shrink: 0;
  margin: 0 9px;
  font-size: 19px;
  font-weight: 500;
  line-height: 30px;
  transition: transform 0.2s ease-in-out;
  background-image: inherit !important;
}
.frequently-asked-questions .accordion-body {
  color: #939393;
  background-color: #fff;
  border: 1px solid #ffa32d;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: 18.01px;
  font-weight: 500;
}
/* g-services css start here */
.g-process-bg {
  background-image: url(../images/texture-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0;
  position: relative;
  padding: 50px 0;
}
.g-cta-1-content h5:after {
  content: "";
  width: 100%;
  height: 30px;
  background-image: url(../images/g-cta-2.webp);
  background-repeat: no-repeat;
  position: absolute;
  bottom: -28px;
  left: 36%;
  right: 0;
}
.g-cta-1-content h5,
.g-cta-1-content h3 {
  color: #fff;
  font-size: 40px;
  position: relative;
}
.g-cta-1-content p {
  color: #fff;
  padding: 25px 0 0;
}
.btn-9 {
  text-transform: capitalize;
  color: #2d243e;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  margin-right: 10px;
  padding: 10px 30px;
  font-size: 14px;
  font-weight: 700;
}
.btn-9:hover {
  color: #fff;
  background-color: #f1974b;
  border: 2px solid #f1974b;
  transition: all 0.3s;
  box-shadow: 0 0 #0000;
}
.g-process-inner {
  height: 1335px;
  background-image: url(../images/process-bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
}
.g-process-inner-content {
  height: 240px;
  color: #fff;
  margin: 10px 0 0;
}
.g-process-inner-content1 h3 {
  color: #fff;
  padding: 60px 0 0 50px;
}
.g-process-inner-content1-1 p {
  color: #fff;
  padding: 20px 20px;
}
.g-process-bg a {
  color: #ee9237;
}
.g-services-bg .row {
  padding: 50px 0;
}
.g-process-inner-content2-2 p {
  padding: 20px 20px;
}
.g-process-inner-content2 h3 {
  padding: 70px 0 0 300px;
}
.g-process-inner-content3 h3 {
  padding: 60px 0 0 50px;
}
.g-process-inner-content3-3 p {
  padding: 20px 20px;
}
.g-process-inner-content4-4 p {
  padding: 20px 20px;
}
.g-process-inner-content4 h3 {
  text-align: left;
  padding: 50px 0 0 300px;
}
.g-process-inner-content5 h3 {
  padding: 50px 0 0 50px;
}
.g-process-inner-content5-5 p {
  padding: 20px 20px;
}
/* g-services css end here */
.bgnewcolor {
  background-color: #e1f2f9;
}
.g-cta {
  background-image: -webkit-linear-gradient(90deg, #231e32, #231e32 100%);
  background-image: -ms-linear-gradient(90deg, #154890, #1d6bda 100%);
  text-align: center;
  background-image: -webkit-linear-gradient(90deg, #231e32, #231e32 100%);
  background-color: #154890fe;
  background-image: -moz-linear-gradient(90deg, #154890, #1d6bda 100%);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
  padding: 60px 50px;
  position: relative;
}
.root-g-cta-title-h2 {
  color: #fff;
  background: 0 0;
  background-clip: unset;
  transform-origin: unset;
  -webkit-text-fill-color: unset;
  margin-bottom: 15px;
  font-size: 40px;
  font-weight: 400;
  display: block;
}
.g-cta p {
  color: #fff;
}
.btn-9 {
  text-transform: capitalize;
  color: #2d243e;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  margin-right: 10px;
  padding: 10px 30px;
  font-size: 14px;
  font-weight: 700;
}
.btn-9:hover {
  color: #fff;
  background-color: #f1974b;
  border: 2px solid #f1974b;
  transition: all 0.3s;
  box-shadow: 0 0 #0000;
}
.g-cta img {
  content: "";
  center: 100% no-repeat;
  height: 355px;
  position: absolute;
  bottom: 0%;
  right: 0;
}
/* cta css start here */
.cta-sec-new {
  position: relative;
}
.cta-sec-new {
  background-image: url(../images/cta-bg-img-new.webp);
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
}
.sec-heading-new {
  font-weight: 700;
}
.white {
  color: #fff;
}
.cta-sec-new p {
  color: #fff;
}
.btn-9 {
  text-transform: capitalize;
  color: #2d243e;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  margin-right: 10px;
  padding: 10px 30px;
  font-size: 14px;
  font-weight: 700;
}
.btn-9:hover {
  color: #fff;
  background-color: #f1974b;
  border: 2px solid #f1974b;
  transition: all 0.3s;
  box-shadow: 0 0 #0000;
}
.frm_area_btm form button {
  color: #fff;
  background: #fda12a;
  border: 1px solid #0000;
  border-radius: 48px;
  outline: none;
  margin: 50px auto 0;
  padding: 10px 50px;
  font-size: 16px;
  transition: all 0.3s;
  display: block;
}
/* cta css end here */
/* contact css start here */
.section__title {
  text-align: center;
  color: #302946;
  margin: 7px 0 58px;
  font-size: 50px;
  font-weight: 700;
}
.section__title span {
  display: block;
}
#contact-section-g {
  padding-left: 250px;
  padding-right: 250px;
  padding-bottom: 50px;
}
.frm_area_btm form {
  background: linear-gradient(80deg, #534180 23%, #272136 77%);
  border-radius: 15px;
  padding: 3rem 5rem;
}
.frm_area_btm form h4 {
  text-align: center;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}
.frm_area_btm form input[type="text"],
.frm_area_btm form input[type="email"],
.frm_area_btm form input[type="tel"] {
  width: 100%;
  color: #fff;
  background: 0 0;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  margin: 67px 0;
  font-size: 16px;
  display: block;
}
.frm_area_btm form input::-webkit-input-placeholder,
.frm_area_btm form textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
.frm_area_btm form input::-moz-placeholder,
.frm_area_btm form textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
.frm_area_btm form input:-ms-input-placeholder,
.frm_area_btm form textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
.frm_area_btm form input:-moz-placeholder,
.frm_area_btm form textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}
.frm_area_btm form textarea {
  width: 100%;
  color: #fff;
  background: 0 0;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  margin: 22px 0 47px;
  font-size: 16px;
  display: block;
  resize: vertical;
}
.frm_area_btm form label {
  color: #fff;
  font-size: 15px;
}
.form-check {
  min-height: 1.5rem;
  margin-bottom: 0.125rem;
  padding-left: 1.5em;
  display: block;
}
.frm_area_btm form button {
  color: #fff;
  background: #fda12a;
  border: 1px solid #0000;
  border-radius: 48px;
  outline: none;
  margin: 50px auto 0;
  padding: 10px 50px;
  font-size: 16px;
  transition: all 0.3s;
  display: block;
}
.contact-flow {
  min-height: 100%;
  background-color: #0000;
  border-radius: 9px;
  margin-top: 4px;
  margin-left: -10px;
  margin-right: -10px;
  padding: 2rem 3rem;
}
.contact-flow__title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
}
.in-violet-450 {
  color: #ee9237 !important;
}
.contact-flow__list-item {
  opacity: 0.8;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.86;
  position: relative;
  margin-bottom: 37px;
  padding-left: 47px;
}
.ordered-list__item:before {
  content: counter(item) "";
  width: 32px;
  height: 32px;
  color: #fff;
  text-align: center;
  counter-increment: item;
  counter-increment: item;
  background: #fea12a;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 500;
  line-height: 32px;
  position: absolute;
  top: 0;
  left: 0;
}
.pt-0 {
  padding-top: 0 !important;
}
.ordered-list {
  counter-reset: item;
  margin-bottom: 0;
  padding-top: 10px;
  padding-left: 0;
  list-style: none;
}
/* contact css end here */
/* breadcrumb css start here */
.custom-breadcrumb {
  background-color: #fff;
  padding: 10px 0;
}
.custom-breadcrumb ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-direction: row;
  flex-wrap: nowrap;
}
.custom-breadcrumb ul li a {
  font-family: "Brinnan_Regular";
  color: #302946;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease-in-out;
}
.custom-breadcrumb ul li a:hover {
  color: #f49720;
}
.custom-breadcrumb ul li.breadcrumb-item.active {
  text-transform: capitalize;
}
.breadcrumb-item.active {
  color: #6c757d;
}
/* .fa-angle-right:before {
  content: "Ã¯â€žâ€¦";
} */
/* breadcrumb css end  here */
/* ghostwriting-services all sec css start here */
/*services-together-wrap css start here */
section.services-together-wrap {
  background: #fff;
  padding: 50px 0;
}
.services-together-wrap .services-together-head {
  margin: 0 0 20px;
}
.services-together-wrap .services-together-head h2 {
  color: #000;
  font-size: 40px;
  line-height: 48px;
  font-weight: 600;
  margin: 0 0 10px;
}
.services-together-wrap .services-together-inner {
}
.services-together-inner .services-together-box {
  border: 1px solid #dedede;
  border-radius: 5px;
  padding: 20px 20px;
  margin: 0 0 20px;
  display: flex;
  transition: all 0.3s ease-in-out;
}
.services-together-box .services-together-icon {
  margin: 0 10px 0 0;
  width: 120px;
  height: 75px;
}
.services-together-icon img {
  width: 100%;
}
.services-together-box .services-together-content {
}
.services-together-content h3 {
  color: #000;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 10px;
}
.services-together-content p {
  color: #212529;
  font-size: 16px;
  line-height: 22px;
  padding: 0 5px 0 0;
  margin: 0 0 10px;
  min-height: 75px;
  max-height: 100px;
  overflow-y: auto;
}
.services-together-content a.more-btn {
  color: #000;
  width: 100px;
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid #000;
  display: block;
  text-align: left;
  transition: all 0.3s ease-in-out;
}
.services-together-inner .services-together-box:hover {
  background: #e1f2f9;
}
.services-together-content a.more-btn:hover {
  border-bottom: 1px solid #f49720;
}
/*services-together-wrap css end here */
/*editing-sec5-box-main-bg  css start here */
.editing-sec5-box-main-bg {
  background-image: url(../images/texture.webp);
  background-repeat: no-repeat;
  padding: 100px 0;
}
.editing-sec5-box-main-bg h4,
.editing-sec5-box-main-bg h2 {
  color: #ee9237;
  font-size: 50px;
  line-height: 53px;
}
.editing-sec5-box-main {
  background-color: #f79c3d;
  border: 1px solid #000;
  border-radius: 30px;
  margin-bottom: 20px;
  padding: 30px 25px;
  transition: all 0.3s;
  position: relative;
}
.editing-sec5-box-main:hover {
  border: 1px solid #0000;
  box-shadow: 0 0 15px #2d2540;
}
.editing-sec5-box-img img {
  width: 50px;
}
.editing-sec5-box-main h5,
.editing-sec5-box-main h3 {
  height: 50px;
  padding: 10px 0;
  font-size: 18px;
}
.editing-sec5-box-txt p {
  height: 120px;
  overflow-y: overlay;
  padding: 0 10px 0 0;
}
/* width */
.editing-sec5-box-txt p::-webkit-scrollbar {
  width: 10px;
}
/* Track */
.editing-sec5-box-txt p::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 50px;
}
/* Handle */
.editing-sec5-box-txt p::-webkit-scrollbar-thumb {
  background: #4b3b72;
  border-radius: 50px;
}
/* Handle on hover */
.editing-sec5-box-txt p::-webkit-scrollbar-thumb:hover {
  background: #4b3b72;
}
.editing-sec5-box-txt h3 a {
  color: #212529;
}
.editing-sec5-box-txt a {
  color: #fff;
}
/*editing-sec5-box-main-bg  css end here */
/* why-choose-service css start here */
.why-choose-service {
  background-position-x: right;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #f0eff2;
  padding: 100px 0 0;
}
.why-choose-service-head p {
  color: #000;
  padding: 0 0 10px;
  font-size: 16px;
  line-height: 24px;
}
.why-choose-service-head h4,
.why-choose-service-head h2,
.why-choose-service-head h3 {
  font-weight: 600;
  color: #000;
  padding: 0 0 15px;
  font-size: 40px;
}
.why-choose-img img {
  width: 100%;
}
/* why-choose-service css end here */
/* faq css start here */
.frequently-asked-questions .frequently-heading h2,
.frequently-asked-questions .frequently-heading h4,
.frequently-heading h5 {
  color: #302946;
  margin: 0 0 35px;
  font-size: 50px;
  font-weight: 700;
}
.frequently-asked-questions .frequently-heading {
  text-align: center;
}
/* faq css end here */
/*book-editing-section css start here */
.book-editing-section {
  padding: 50px 0;
}
.section-title h2 {
  color: #ee9237;
  font-size: 50px;
}
.book-editing-section ul#pills-tab {
  padding: 20px 0 0;
}
.tab-content > .active {
  display: block;
}
.book-editing-section h3 {
  color: #353a4d;
  margin-bottom: 20px;
  font-size: 2.5rem;
}
.book-editing-section ul.check-50-li li {
  min-width: 48%;
  /*align-items: flex-start;*/
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  list-style: none;
  /*display: inline-flex;*/
}
.book-editing-section ul.check-50-li li img {
  margin-right: 10px;
  position: relative;
  top: 5px;
  width: 20px;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  border: #0000;
  background-color: #ee9237 !important;
  border: 2px solid #ee9237 !important;
}
.book-editing-section .book-tab-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.book-editing-section img {
  max-width: 100%;
  min-height: calc(100% - 30px);
  object-fit: cover;
}
/*book-editing-section css end here */
.new-test-sec {
  padding-left: 150px;
  padding-right: 150px;
}
/* ghostwriting-services all sec css end here */
/* about all sec css  start here */
/****************************** new-editing-bg css start here***********************/
.new-editing-bg {
  background-image: url(../images/about-texture.php);
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  padding: 140px 0 0 !important;
}
.new-editing-bg h1 {
  font-size: 33px;
  font-weight: 700;
}
.new-editing-bg h2 {
  font-size: 15px;
}
.contact-us .ways-to-connect .ways-to-connect-connect:nth-child(2) {
  border-left: 1px solid #000;
  /* border-right: 1px solid #000; */
  padding: 0 50px;
}
.contact-us .contact-us-heading p:first-child:before {
  content: "";
  height: 1px;
  width: 13%;
  background-color: #000;
  position: absolute;
  bottom: 45%;
  left: 18%;
}
.contact-us .contact-us-heading p:first-child:after {
  content: "";
  height: 1px;
  width: 13%;
  background-color: #000;
  position: absolute;
  bottom: 45%;
  right: 18%;
}
.about-who-we-are .about-who-head h2 {
  color: #1e1d1d;
  padding: 0 0 20px;
  font-size: 52px;
  font-weight: 600;
}
.about-who-we-are .about-who-head p {
  color: #1e1d1d;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.about-who-we-are .about-who-box {
  background-color: #fff;
  margin: 0 0 18px;
  padding: 30px 25px;
  transition: all 0.5s;
  box-shadow: 0 0 43px #12121214;
}
.about-who-we-are .about-who-box h5,
.about-who-we-are .about-who-box h3 {
  color: #1e1d1d;
  font-size: 25px;
  font-weight: 500;
}
.about-who-we-are .about-who-box p {
  color: #1e1d1d;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}
.btn-8 {
  text-transform: capitalize;
  color: #2d243e;
  background-color: #ee9237;
  border: 2px solid #ee9237;
  border-radius: 50px;
  margin-right: 10px;
  padding: 10px 30px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s;
}
.btn-8:hover {
  background-color: #fff;
  border: 1px solid #ee9237;
  box-shadow: 0 0 #0000;
}
/****************************** new-editing-bg css end here***********************/
/*g-about-texture-bg  css start here */
.g-about-texture-bg {
  background-image: url(../images/texture.webp);
  background-repeat: no-repeat;
}
.g-about-service {
  padding: 20px 0;
}
.g-accomplishments-card {
  padding: 40px;
}
/*g-about-texture-bg  css end here */
/* about contact css start here */
#contact-section {
  margin: 0;
  padding: 0;
}
.frm_area_btm form {
  background: linear-gradient(80deg, #534180 23%, #272136 77%);
  border-radius: 15px;
  padding: 3rem 5rem;
}
/* about contact css end here */
/* new-editing-bg css end here*/
.testimonials {
  padding: 50px 0 245px;
}
.testimonials .best-reviews {
  text-align: center;
}
.testimonials .best-reviews h3,
.best-reviews h2 {
  color: #574b80;
  font-size: 50px;
  font-weight: 700;
  position: relative;
}
.testimonials .best-reviews p {
  color: #a2a2a2;
  width: 50%;
  margin: 0 auto 1rem;
  font-size: 18.01px;
  font-weight: 400;
}
.testimonials .review-card {
  width: 87%;
  height: 400px;
  background-color: #fff;
  border-radius: 10px;
  align-items: center;
  padding: 32px 25px 21px 0;
  display: flex;
  box-shadow: 0 0 8px 4px #b9b9b9;
}
.dp-wrap {
  perspective: 1000px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
#dp-slider {
  height: 278px;
  overflow: hidden;
}
#dp-slider .dp_item:first-child {
  z-index: 10 !important;
  transform: rotateY(0) translate(10%) !important;
}
.dp_item {
  text-align: center;
  color: #fff;
  border-radius: 10px;
  transition: transform 1.2s;
  display: block;
  position: absolute;
}
.testimonials .review-card {
  width: 87%;
  height: 400px;
  background-color: #fff;
  border-radius: 10px;
  align-items: center;
  padding: 32px 25px 21px 0;
  display: flex;
  box-shadow: 0 0 8px 4px #b9b9b9;
}
.testimonials .content-1 {
  position: relative;
}
.testimonials .content-1 img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px 50px;
}
.testimonials .content p {
  color: #4d4d4d;
  letter-spacing: 3px;
  margin: 33px 0 15px;
  font-size: 16px;
  font-weight: 300;
}
.testimonials .content h3 {
  color: #ee9237;
  font-size: 17.99px;
  font-weight: 600;
}
.testimonials .content-1 :after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.dp_item[data-position="2"] {
  z-index: 9;
  transform: rotateY(0) translate(16%) scale(0.9);
}
.dp_item[data-position="3"] {
  z-index: 8;
  transform: rotateY(0) translate(22%) scale(0.8);
}
.dp_item[data-position="4"] {
  z-index: 7;
  transform: rotateY(0) translate(28%) scale(0.7);
}
.dp_item[data-position="5"] {
  z-index: 6;
  transform: rotateY(0) translate(34%) scale(0.6);
}
.testimonials .arrow-main {
  position: absolute;
  bottom: -61%;
  right: 28px;
}
.testimonials .arrow-main span:nth-child(1) {
  margin: 0 20px;
}
.testimonials .arrow-main span {
  opacity: 0.5;
}
/****************************** new-editing-bg css end here***********************/
/*book-trailer-services css for all sec start here  */
.book-editing-section .nav-pills .nav-link {
  color: #000;
  text-transform: capitalize;
  width: 225px;
  background: 0 0;
  border: 2px solid #231e32;
  border-radius: 25px;
  margin: 5px 15px;
  font-size: 13px;
  font-weight: 700;
}
/*book-trailer-services css for all sec end here  */
/* g-how-we css start here */
.sec {
  padding-top: 50px;
}
.g-how-we-content h4,
.g-how-we-content h2 {
  color: #000;
  padding: 0 0 10px;
  font-size: 40px;
  font-weight: 700;
  position: relative;
}
.g-how-we-content h4:after {
  content: "";
  width: 100%;
  height: 40px;
  background-image: url(../images/underline2.webp);
  background-repeat: no-repeat;
  position: absolute;
  bottom: -30px;
  left: 27%;
  right: 0;
}
.g-how-we-content p {
  color: #000;
  padding: 20px 0 0;
}
.btn-10 {
  text-transform: capitalize;
  color: #fff;
  background-color: #231e32;
  border: 2px solid #231e32;
  border-radius: 50px;
  margin-right: 10px;
  padding: 10px 30px;
  font-size: 14px;
  font-weight: 700;
}
.btn-10:hover {
  color: #fff;
  background-color: #f1974b;
  border: 2px solid #f1974b;
  transition: all 0.3s;
  box-shadow: 0 0 #0000;
}
/* g-how-we css end here */
/* contact us css start here */
.new-editing-bg {
  background-image: url(../images/contact-texture.webp);
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  padding: 140px 0 0 !important;
}
.new-editing-bg h1 {
  font-size: 33px;
  font-weight: 700;
}
.new-editing-bg h2 {
  font-size: 15px;
}
.contact-us {
  padding: 50px 0;
}
.contact-us .contact-us-heading {
  text-align: center;
}
.contact-us .contact-us-heading p:first-child {
  color: #292929;
  font-size: 24px;
  font-weight: 600;
  position: relative;
}
.contact-us .contact-us-heading h5 {
  text-transform: capitalize;
  color: #ee9237;
  font-size: 60px;
  font-weight: 700;
}
.contact-us .contact-us-heading p:last-child {
  color: #bfbfbf;
  font-size: 18px;
  font-weight: 400;
}
.contact-us .ways-to-connect {
  margin: 0 0 50px;
}
.contact-us .ways-to-connect .ways-to-connect-connect {
  padding: 0 25px;
}
.contact-us .ways-to-connect .ways-to-connect-connect {
  align-items: center;
  display: flex;
}
.contact-us .ways-to-connect .ways-to-connect-connect i {
  color: #ffa32d;
  font-size: 24px;
}
/* .fa-phone:before {
  content: "Ã¯â€šâ€¢";
} */
.contact-us .ways-to-connect .ways-to-connect-connect .ways-to-connect-para {
  margin: 0 0 0 14px;
  display: inline-block;
}
.contact-us .ways-to-connect .ways-to-connect-connect .ways-to-connect-para a,
.contact-us .ways-to-connect .ways-to-connect-connect .ways-to-connect-para p {
  color: #272137;
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}
.contact-us .ways-to-connect {
  justify-content: center;
  display: flex;
}
.contact-us .row .ways-to-connect-top-form-heading {
  margin: 0 0 25px;
}
.contact-us .row .ways-to-connect-top-form-heading h5 {
  text-transform: capitalize;
  color: #292929;
  font-size: 60px;
  font-weight: 700;
}
.contact-us .row .ways-to-connect-top-form-heading p {
  color: #bfbfbf;
  font-size: 16px;
  font-weight: 400;
}
.contact-us .row .input-row1 {
  display: flex;
}
.contact-us .row input {
  width: 100%;
  height: 50px;
  border: 1px solid #bdbdbd;
  border-radius: 10px;
  margin: 0 0 40px;
  padding: 0 20px;
  font-size: 15.99px;
  font-weight: 300;
}
.contact-us .row input:nth-child(2) {
  margin: 0 0 0 35px;
}
.contact-us .row input {
  width: 100%;
  height: 50px;
  border: 1px solid #bdbdbd;
  border-radius: 10px;
  margin: 0 0 40px;
  padding: 0 20px;
  font-size: 15.99px;
  font-weight: 300;
}
.contact-us .row textarea {
  width: 100%;
  height: 200px;
  border: 1px solid #bdbdbd;
  border-radius: 10px;
  margin: 0 0 40px;
  padding: 20px 0 0 29px;
  font-size: 15.99px;
  font-weight: 300;
}
.contact-us .row .form-button button {
  height: 65px;
  width: 229px;
  color: #fff;
  background-color: #231e33;
  border: #0000;
  border-radius: 50px;
  margin: 0 10px;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 0 12px 1px #231e33;
}
/* contact us css end here */
.banner {
  padding: 270px 0;
  position: relative;
}
.banner .banner-content {
  text-align: center;
  margin: 0 0 2em;
}
.banner .banner-content .thank-you-img {
  filter: brightness(0) invert();
}
.banner .banner-content h1,
.banner-content h5 {
  text-transform: capitalize;
  color: #fff;
  margin: 0 0 25px;
  font-size: 50px;
  font-weight: 700;
}
.banner .banner-content .thank-you-btn {
  width: 178px;
  height: 52px;
  color: #fff;
  background-color: #ee9237;
  border: #0000;
  border-radius: 50px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 500;
  line-height: 52px;
  text-transform: capitalize;
}
.tc-image-effect-shine:before {
  content: "";
  height: 100%;
  width: 50%;
  z-index: 2;
  background: linear-gradient(90deg, #fff0 0%, #ffffff4d 100%);
  display: block;
  position: absolute;
  top: 0;
  left: -75%;
  transform: skew(-25deg);
}
.banner .banner-content h2,
.banner-content p {
  text-transform: capitalize;
  color: #ee9237;
  margin: 0 0 50px;
  font-family: Rubik, sans-serif;
  font-size: 24px;
  font-weight: 400;
}
.tc-image-effect-shine {
  position: relative;
  overflow: hidden;
}
.hvr-grow {
  vertical-align: middle;
  transition-property: transform;
  transition-duration: 0.3s;
  display: inline-block;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px #0000;
}
.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
  transform: scale(1.1);
}
.inner-ser-banner {
  z-index: -1;
  position: absolute;
  top: 0;
}
/* Term And Condition Css Start */
.term-sec-wrap {
  padding: 170px 0 50px;
}
.term-sec-wrap .terms-content {
  margin: 0 0 40px;
}
/* Term And Condition Css Start */
/* Thank You Page Start */
.terms-page.thankyouBanner {
  height: 25vh;
}
.thankyouPage svg {
  width: 35% !important;
}
.errorPage svg {
  width: 50% !important;
}
/* Thank You Page End */
/* footer css start here */
footer {
  background: linear-gradient(162deg, #262035 0%, #392e54 48%, #534180 100%);
}
footer.footer-main-sec {
  background-image: url(../images/footer-main-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 50%;
  position: relative;
  z-index: 1;
}
.footer-main-sec .footer-top {
  padding: 50px 0 20px 0;
}
.footer-top .footer-logo-area {
  width: 100%;
  margin: 0 0 20px;
}
.footer-top .footer-logo-area .footer-logo {
  margin: 0 0 20px;
}
.footer-logo-area .footer-info {
  margin: 0 0 20px;
}
.footer-logo-area .footer-info ul {
}
.footer-logo-area .footer-info ul li {
  margin: 0 0 10px;
}
.footer-logo-area .footer-info ul li a {
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  margin: 0;
  display: block;
  transition: all 0.3s ease-in-out;
}
.footer-logo-area ul.footer-social-links {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
}
ul.footer-social-links li {
  margin: 0 7px 0;
}
ul.footer-social-links li a {
  color: #fff;
  font-size: 22px;
  display: block;
  transition: all 0.3s ease-in-out;
}
.footer-links-area h4 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 20px 0;
}
.footer-links-area h4 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 20px 0;
}
.footer-links-area ul.footer-nav-links li {
  margin: 0 0 10px 0;
}
.footer-links-area ul.footer-nav-links a {
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  margin: 0;
  transition: all 0.3s ease-in-out;
  display: block;
}
.footer-links-area .footer-services-nav-links {
  display: flex;
}
.footer-brands-area .footer-brands-logos img {
  width: 125px;
  height: 75px;
  object-fit: contain;
  margin: 0 10px 0;
}
.footer-brands-area .footer-brands-logos {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}
.footer-brands-area .footer-dmc-logos {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}
.footer-brands-area .footer-dmc-logos img {
  margin: 0 10px 0;
}
.footer-top .footer-disclaimer-area {
}
.footer-top .footer-disclaimer-area p {
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  margin: 0 0 10px;
}
.footer-main-sec .footer-bottom {
  padding: 20px 0;
  background: #f49720;
}
.footer-copyright p {
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  margin: 0;
}
.footer-bottom-links ul {
  display: flex;
  align-items: center;
  justify-content: end;
}
.footer-bottom-links ul li a {
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  margin: 0;
  transition: all 0.3s ease-in-out;
  display: block;
}
.footer-bottom-links ul li a:hover {
  color: #413362;
}
.footer-bottom-links ul li:not(:last-child) {
  margin: 0 20px 0 0;
}
.footer-services-nav-links ul.footer-nav-links {
  margin: 0 20px 0 0;
}
/* footer css end here */
/* staticdrop down css start here */
.modal {
  z-index: 1055;
  width: 100%;
  height: 100%;
  outline: 0;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
}
#staticBackdrop .modal-dialog {
  max-width: 500px !important;
  margin: 100px auto 0;
}
#staticBackdrop .modal-content {
  background-image: url(../images/popup-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border: none;
  border-radius: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#staticBackdrop .modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #392657;
  opacity: 0.5;
  width: 100%;
  z-index: -1;
}
#staticBackdrop .modal-content .btn-close {
  position: absolute;
  right: 12px;
  top: 12px;
  background: 0 0;
  color: #fff;
  width: 15px;
  height: 15px;
  line-height: 13px;
  border: 2px solid #fff;
  border-radius: 20px 20px;
  outline: 0;
  box-shadow: none;
  cursor: pointer;
  z-index: 4;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
#staticBackdrop .modal-content .btn-close:hover {
  color: #f49720;
  border: 2px solid #f49720;
}
#staticBackdrop .modal-content .btn-close i {
  font-weight: 600;
}
#staticBackdrop .modal-dialog {
  max-width: 500px !important;
  margin: 100px auto 0;
}
#staticBackdrop .modal-header {
  padding: 0;
  border-bottom: none;
}
#staticBackdrop .modal-body {
  padding: 30px 20px;
}
#staticBackdrop .modal-body .modal-body-form {
  text-align: center;
}
.modal-body-form h5 {
  font-size: 22px;
  line-height: 28px;
  color: #f49720;
  margin: 0 !important;
}
.flip-counter-popup {
  text-align: center;
}
#clock1 {
  width: 100%;
  height: 70px;
  margin: 0 auto 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flip-clock-divider .flip-clock-label {
  display: none;
}
.flip-clock-wrapper ul {
  width: 40px;
  height: 50px;
  font-size: 40px;
  line-height: 45px;
  border-radius: 5px;
  background: #000;
}
.flip-clock-wrapper ul li {
  line-height: 45px;
}
.flip-clock-wrapper ul li a div div.inn {
  font-size: 40px;
  border-radius: 5px;
}
.flip-clock-wrapper ul li a div.up:after {
  top: 24px;
  height: 3px;
}
.flip-clock-dot {
  color: #fff;
  background: #fff;
}
.modal-body-form h3 {
  font-size: 28px;
  line-height: 34px;
  color: #fff;
  margin: 0 0 10px 0 !important;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}
.modal-body-form h3 span {
  font-size: 86px;
  line-height: 92px;
  font-weight: 700;
  display: block;
  margin: 0 10px 0 0;
}
.modal-body-form .popup-form-list .form-group {
  margin: 0 0 10px 0;
}
.modal-body-form .popup-form-list .form-group.form-group-last {
  margin: 0;
}
.modal-body-form .popup-form-list .form-group input {
  background: 0 0;
  color: #fff;
  font-size: 16px;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 10px 10px;
}
.modal-body-form .popup-form-list .form-group input::placeholder {
  color: #fff;
  font-size: 16px;
}
.modal-body-form .popup-form-list .form-group textarea {
  background: 0 0;
  color: #fff;
  font-size: 16px;
  width: 100%;
  height: 120px;
  resize: none;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 10px 10px;
}
.modal-body-form .popup-form-list .form-group textarea::placeholder {
  color: #fff;
  font-size: 16px;
}
.modal-body-form .popup-form-list .form-group button.submit-btn {
  background: #f49720;
  color: #fff;
  font-size: 18px;
  width: 100%;
  border: 2px solid #f49720;
  border-radius: 10px;
  padding: 10px 10px;
  margin: 0;
  text-transform: capitalize;
  outline: 0;
  transition: all 0.3s ease-in-out;
}
.modal-body-form .popup-form-list .form-group button.submit-btn:hover {
  background: #fff;
  color: #f49720;
  border: 2px solid #fff;
}
.modal.show {
  padding-right: 0 !important;
}
.modal-body-form h3 {
  font-size: 28px;
  line-height: 34px;
  color: #fff;
  margin: 0 0 10px 0 !important;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}
.modal-body-form h3 span {
  font-size: 86px;
  line-height: 92px;
  font-weight: 700;
  display: block;
  margin: 0 10px 0 0;
}
.modal .modal-dialog .modal-content .modal-body form {
  flex-direction: column;
  display: flex;
  padding: 0 !important;
}
/* staticdrop down css end here */
/* floatbutton start here */
.floatbutton {
  -o-transition: 0.4s;
  width: 420px;
  z-index: 9;
  font-size: 0;
  transition: all 0.4s;
  position: fixed;
  top: 16%;
  right: -370px;
}
.floatbutton.active {
  right: 0;
  z-index: 999;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.floatbutton .btns_wrap {
  position: fixed;
  right: -6px;
}
.floatbutton .btns_wrap .chat_wrap {
  width: 280px;
  -o-transition: all 0.3s ease;
  background: #fff;
  border-radius: 50px 0 0 50px;
  padding: 0;
  transition: all 0.3s;
  display: block;
  position: absolute;
  top: 40px;
  right: -225px;
  overflow: hidden;
  box-shadow: 0 0 40px #00000026 !important;
}
.floatbutton .btns_wrap .chat_wrap span.icoo,
.floatbutton .btns_wrap .call_wrap span.icoo {
  color: #fff;
  vertical-align: middle;
  background: linear-gradient(45deg, #ee9237, #f39a28);
  border-right: 1px solid #ded9d9;
  border-radius: 50px 0 0 50px;
  padding: 18px 20px 16px;
  font-size: 18px;
  display: inline-block;
  box-shadow: 1px 0 13px #184dc1c2;
}
.floatbutton .btns_wrap .call_wrap {
  width: 280px;
  -o-transition: all 0.3s ease;
  background: #fff;
  border-radius: 50px 0 0 50px;
  padding: 0;
  transition: all 0.3s;
  position: absolute;
  top: 120px;
  right: -225px;
  overflow: hidden;
  box-shadow: 0 0 40px #00000026 !important;
}
.floatbutton .btns_wrap .call_wrap span {
  color: #333;
  vertical-align: middle;
  background: #fff;
  padding: 15px 20px 15px 15px;
  font-size: 20px;
}
.floatbutton .btns_wrap .chat_wrap span {
  color: #333;
  vertical-align: middle;
  background: #fff;
  padding: 15px 30px 15px 15px;
  font-size: 20px;
}
.floatbutton .btns_wrap a:hover {
  right: 0;
  text-decoration: none !important;
}
.floatbutton .btns_wrap .call_wrap {
  width: 280px;
  -o-transition: all 0.3s ease;
  background: #fff;
  border-radius: 50px 0 0 50px;
  padding: 0;
  transition: all 0.3s;
  position: absolute;
  top: 120px;
  right: -225px;
  overflow: hidden;
  box-shadow: 0 0 40px #00000026 !important;
}
.floatbutton .clickbutton {
  width: 50px;
  z-index: 999;
  height: 270px;
  cursor: pointer;
  vertical-align: middle;
  color: #fff;
  text-transform: uppercase;
  -ms-box-shadow: 0px 0px 40px #00000026;
  -o-box-shadow: 0px 0px 40px #00000026;
  background: linear-gradient(45deg, #ee9237, #f39a28);
  border-radius: 30px 0 0 30px;
  margin-top: 198px;
  padding-top: 0;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  position: relative;
  box-shadow: -20px 7px 18px -7px #57b89717;
}
.floatbutton .clickbutton .crossplus {
  -o-transition: 0.4s;
  -o-transition: 0.4s;
  color: #fff;
  white-space: pre;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.4s;
  display: block;
  position: absolute;
  bottom: 122px;
  left: -79px;
  transform: rotate(-90deg);
}
.floatbutton .banner-form {
  z-index: 9;
  width: 370px;
  background: #fff;
  border-radius: 5px 0 0 5px;
  margin: 0;
  padding: 30px;
  display: inline-block;
  position: relative;
  box-shadow: 0 0 30px #0000001f;
}
.floatbutton .banner-form h3 {
  color: #333;
  margin-bottom: 20px;
  font-size: 24px;
}
.floatbutton .banner-form .ban-form input {
  width: 100%;
  color: gray;
  height: 50px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  margin: 0 0 15px;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 400;
  outline: none !important;
}
.floatbutton .banner-form .ban-form textarea {
  width: 100%;
  color: gray;
  height: 120px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  margin: 15px 0 0;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 400;
  outline: none !important;
}
.floatbutton .banner-form .ban-form input[type="submit"] {
  color: #fff;
  text-align: center;
  background: linear-gradient(45deg, #ee9237, #f39a28);
  border: #0000;
  border-radius: 3px;
  margin: 20px 0 0;
  padding: 10px 15px;
  font-weight: 600;
}
#clock1 {
  width: 100%;
  height: 70px;
  margin: 0 auto 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flip-clock-divider .flip-clock-label {
  display: none;
}
.flip-clock-wrapper ul {
  width: 40px;
  height: 50px;
  font-size: 40px;
  line-height: 45px;
  border-radius: 5px;
  background: #000;
}
.flip-clock-wrapper ul li {
  line-height: 45px;
}
.flip-clock-wrapper ul li a div div.inn {
  font-size: 40px;
  border-radius: 5px;
}
.flip-clock-wrapper ul li a div.up:after {
  top: 24px;
  height: 3px;
}
.flip-clock-dot {
  color: #fff;
  background: #fff;
}
.fa-phone-alt:before {
  content: "\f095";
}
/* floatbutton end here */
.cta-book-img-new2 {
  display: none;
}
@media only screen and (min-width: 1400px) and (max-width: 1699px) {
  /**************************************************************************
--------------- Home Page Folds Responsive Css Start Here ----------------
--------------------------------------------------------------------------
**************************************************************************/
  .g-process-inner-content1 h3 {
    padding: 90px 0 0 50px;
  }
  .g-process-inner-content1-1 p {
    padding: 40px 20px 20px;
  }
  .g-process-inner-content2 h3 {
    padding: 85px 0 0 300px;
  }
  .g-process-inner-content2-2 p {
    padding: 40px 15px 20px;
  }
  .g-process-inner-content3 h3 {
    padding: 70px 0 0 50px;
  }
  .g-process-inner-content3-3 p {
    padding: 25px 25px 25px;
  }
  .g-process-inner-content4 h3 {
    text-align: left;
    padding: 60px 0 0 285px;
  }
  .g-process-inner-content4-4 p {
    font-size: 15px;
    padding: 15px 20px 20px;
  }
  .g-process-inner-content5 h3 {
    padding: 70px 0 0 50px;
  }
  .g-process-inner-content5-5 p {
    font-size: 15px;
    padding: 20px 20px 20px 20px;
  }
  section.contact-section #contact-section-g {
    padding: 0 50px;
  }
  /**************************************************************************
--------------- Home Page Folds Responsive Css End Here ------------------
--------------------------------------------------------------------------
**************************************************************************/
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  /*Header Responsive Css Start Here*/
  header nav.navbar .navbar-brand .logo {
    width: 120px;
  }
  header .navbar-nav .nav-item.dropdown button.dropdown-icon-btn {
    font-size: 12px;
  }
  header nav.navbar .navbar-buttons a.call-btn {
    font-size: 14px;
    width: 125px;
    padding: 8px 8px;
  }
  /*Header Responsive Css End Here*/
  /**************************************************************************
--------------- Home Page Folds Responsive Css Start Here ----------------
--------------------------------------------------------------------------
**************************************************************************/
  .cta-book-img-new2 {
    display: none;
  }
  .g-process-inner {
    height: 1075px;
  }
  .g-process-inner-content {
    height: 200px;
  }
  .g-process-inner-content1 h3 {
    padding: 70px 0 0 50px;
  }
  .g-process-inner-content1-1 p {
    font-size: 15px;
    padding: 30px 15px 20px;
  }
  .g-process-inner-content2 h3 {
    padding: 60px 0 0 250px;
  }
  .g-process-inner-content2-2 p {
    font-size: 15px;
    padding: 30px 15px 20px;
  }
  .g-process-inner-content3 h3 {
    padding: 70px 0 0 50px;
  }
  .g-process-inner-content3-3 p {
    font-size: 15px;
    padding: 25px 25px 25px;
  }
  .g-process-inner-content4 h3 {
    text-align: left;
    padding: 60px 0 0 250px;
  }
  .g-process-inner-content4-4 p {
    font-size: 15px;
    padding: 15px 20px 20px;
  }
  .g-process-inner-content5 h3 {
    padding: 70px 0 0 50px;
  }
  .g-process-inner-content5-5 p {
    font-size: 15px;
    padding: 20px 20px 20px 20px;
  }
  .g-process-inner-content1 h3,
  .g-process-inner-content2 h3,
  .g-process-inner-content3 h3,
  .g-process-inner-content4 h3,
  .g-process-inner-content5 h3 {
    font-size: 24px;
  }
  section.contact-section #contact-section-g {
    padding: 0 50px;
  }
  /**************************************************************************
--------------- Home Page Folds Responsive Css End Here ------------------
--------------------------------------------------------------------------
**************************************************************************/
  /* Footer Responsive Css Start Here */
  .footer-logo-area .footer-info ul li a {
    font-size: 14px;
    line-height: 20px;
  }
  .footer-brands-area .footer-brands-logos img {
    width: 100px;
  }
  /* Footer Responsive Css End Here */
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  /*Header Responsive Css Start Here*/
  header nav.navbar .navbar-brand .logo {
    width: 100px;
  }
  header .navbar-collapse ul.navbar-nav li.nav-item {
    margin: 0 5px 0;
  }
  header .navbar-collapse ul.navbar-nav li.nav-item a.nav-link {
    font-size: 14px;
  }
  header .navbar-nav .nav-item.dropdown button.dropdown-icon-btn {
    font-size: 12px;
  }
  header .navbar-nav .nav-item ul.dropdown-menu {
    width: 65%;
  }
  header .navbar-nav .nav-item ul.dropdown-menu li a {
    font-size: 14px;
  }
  header nav.navbar .navbar-buttons a.call-btn {
    font-size: 14px;
    width: 125px;
    padding: 8px 8px;
  }
  /*Header Responsive Css End Here*/
  /**************************************************************************
--------------- Home Page Folds Responsive Css Start Here ----------------
--------------------------------------------------------------------------
**************************************************************************/
  .cta-book-img-new2 {
    display: none;
  }
  .g-process-inner {
    margin: 20px 0;
    height: inherit;
  }
  .g-process-inner-content {
    height: 175px;
  }
  .g-process-inner-content1 h3 {
    padding: 60px 0 0 40px;
  }
  .g-process-inner-content1-1 p {
    font-size: 12px;
    padding: 20px 20px 20px;
  }
  .g-process-inner-content2 h3 {
    padding: 40px 0 0 225px;
  }
  .g-process-inner-content2-2 p {
    font-size: 12px;
    padding: 20px 20px 20px;
  }
  .g-process-inner-content3 h3 {
    padding: 40px 0 0 40px;
  }
  .g-process-inner-content3-3 p {
    font-size: 12px;
    padding: 15px 20px 15px;
  }
  .g-process-inner-content4 h3 {
    text-align: left;
    padding: 20px 20px 20px 225px;
  }
  .g-process-inner-content4-4 p {
    font-size: 12px;
    padding: 0px 20px 20px;
  }
  .g-process-inner-content5-5 p {
    font-size: 12px;
    padding: 0px 20px 20px 20px;
  }
  .g-process-inner-content1 h3,
  .g-process-inner-content2 h3,
  .g-process-inner-content3 h3,
  .g-process-inner-content4 h3,
  .g-process-inner-content5 h3 {
    font-size: 22px;
  }
  .g-cta img {
    height: 300px;
  }
  section.contact-section #contact-section-g {
    padding: 0 30px;
  }
  /**************************************************************************
--------------- Home Page Folds Responsive Css End Here ------------------
--------------------------------------------------------------------------
**************************************************************************/
  /* Footer Responsive Css Start Here */
  .footer-logo-area .footer-info ul li a {
    font-size: 14px;
    line-height: 20px;
  }
  .footer-top .footer-links-area {
    margin: 0 0 20px;
  }
  .footer-brands-area .footer-brands-logos img {
    width: 100px;
  }
  .footer-brands-area .footer-dmc-logos {
    margin: 0 0 20px;
  }
  /* Footer Responsive Css End Here */
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  /*Header Responsive Css Start Here*/
  header .navbar-toggler {
    background: #ee9237;
  }
  header .navbar-expand-lg .navbar-collapse {
    padding: 10px 0;
  }
  header .navbar-collapse ul.navbar-nav {
    margin: 0;
  }
  header .navbar-collapse ul.navbar-nav li.nav-item {
    border-bottom: 2px solid #ee9237;
  }
  header .navbar-collapse ul.navbar-nav li.nav-item a.nav-link {
    padding: 10px 0;
    width: 100%;
  }
  header .navbar-collapse ul.navbar-nav li.nav-item.dropdown {
    justify-content: space-between;
    position: relative;
  }
  header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu {
    position: absolute;
    top: 47px;
    transform: inherit;
    opacity: inherit;
    visibility: inherit;
    display: inherit;
    min-height: 250px;
    max-height: 250px;
    overflow-y: auto;
  }
  header
    .navbar-nav
    .nav-item.dropdown
    ul.dropdown-menu::-webkit-scrollbar-track {
    border-radius: 0px;
  }
  header .navbar-nav .nav-item.dropdown ul.dropdown-menu::-webkit-scrollbar {
    width: 3px;
    background: #ffffff;
    border-radius: 0px;
  }
  header
    .navbar-nav
    .nav-item.dropdown
    ul.dropdown-menu::-webkit-scrollbar-thumb {
    background-color: #353a4d;
    border-radius: 0px;
  }
  header .navbar-nav .nav-item ul.dropdown-menu {
    position: unset;
    width: 100%;
    border-radius: 0;
    border: 1px solid #ef9541;
    box-shadow: none;
    padding: unset;
    opacity: unset;
    visibility: unset;
    transform: inherit;
    display: none;
  }
  header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu {
    display: none;
  }
  header .navbar-nav .nav-item ul.dropdown-menu.dropdown-menu-single {
    top: 0;
    width: 100%;
    margin: 0;
    min-height: inherit !important;
    max-height: inherit !important;
    overflow: inherit;
  }
  header nav.navbar .navbar-buttons {
    margin: 10px 0;
  }
  header nav.navbar .navbar-buttons a.call-btn {
    font-size: 14px;
    padding: 8px 8px;
  }
  /*Header Responsive Css End Here*/
  /**************************************************************************
--------------- Home Page Folds Responsive Css Start Here ----------------
--------------------------------------------------------------------------
**************************************************************************/
  .hero-banner {
    padding: 120px 0 50px;
  }
  .banner-btns {
    margin: 0 0 20px;
  }
  .sec {
    padding: 30px 0;
  }
  .booksell-platform {
    text-align: center;
  }
  .booksell-platform .d-flex {
    justify-content: center;
  }
  .booksell-platform .platform-logo-booksell {
    margin: 0 10px 0px 0;
  }
  .booksell-platform .platform-logo-booksell img {
    width: 100px;
  }
  .pt-sec-new.sec-mt {
    margin: 0;
  }
  .pt-sec-new .nav-tabs .nav-link {
    margin: 0 10px 10px;
  }
  .pt-portfolio-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .pt-portfolio-wrap .pt-new-img {
    width: 25%;
  }
  .new-company-sec ul {
    padding: 0 0 0 20px;
  }
  .new-company-sec img {
    margin: 20px 0;
  }
  .revies-platform-images .pf-logo {
    margin: 0 8px 0px 0;
  }
  .revies-platform-images .pf-logo img {
    width: 100px;
    margin: 0;
  }
  .award-winning-wrap .award-winning-logo img {
    width: 100px;
  }
  .cta-sec-new {
    padding: 30px 0;
  }
  .cta-sec-new .cta-btns .btn-cta {
    margin: 0 5px 10px;
  }
  .cta-book-img-new2 {
    display: none;
  }
  .our-ser-new-sec .serbox-new {
    margin: 20px 10px 0;
  }
  .g-process-bg {
    padding: 30px 0;
  }
  .g-process-inner {
    margin: 20px 0;
    background-image: none;
    height: inherit;
  }
  .g-process-inner-content {
    height: inherit;
  }
  .g-process-inner-content1 h3,
  .g-process-inner-content2 h3,
  .g-process-inner-content3 h3,
  .g-process-inner-content4 h3,
  .g-process-inner-content5 h3 {
    padding: 0;
  }
  .g-process-inner-content4 h3 {
    text-align: left;
  }
  .g-process-inner-content2-2 p {
    padding: 0;
  }
  .bgnewcolor .g-cta {
    padding: 30px 30px;
  }
  .g-cta img {
    height: 250px;
    position: inherit;
  }
  .g-how-we-content {
    margin: 20px 0;
  }
  .new-test-sec .new-test-box {
    padding: 20px 20px;
  }
  section.frequently-asked-questions {
    padding: 30px 0;
  }
  .frequently-asked-questions .frequently-heading {
    padding: 0 50px;
  }
  .frequently-asked-questions .frequently-heading h4 {
    font-size: 32px;
    margin: 0 0 20px;
  }
  section.contact-section .section__title {
    margin: 0 0 20px;
    font-size: 32px;
  }
  section.contact-section #contact-section-g {
    padding: 0 50px;
  }
  .new-editing-bg {
    padding: 120px 0 30px !important;
    text-align: center;
  }
  .services-together-wrap .services-together-head h2 {
    font-size: 32px;
    line-height: 38px;
  }
  section.editing-sec5-box-main-bg {
    padding: 30px 0;
  }
  .editing-sec5-box-main-bg h4,
  .editing-sec5-box-main-bg h2 {
    font-size: 32px;
    line-height: 38px;
  }
  section.why-choose-service {
    padding: 30px 0;
  }
  .why-choose-service-head h4,
  .why-choose-service-head h2,
  .why-choose-service-head h3 {
    font-size: 32px;
    line-height: 38px;
  }
  .why-choose-img {
    margin: 20px 0 20px;
  }
  section.about-who-we-are {
    padding: 30px 0;
    text-align: center;
  }
  .about-who-we-are .about-who-head {
    margin: 0 0 20px;
  }
  .testimonials .review-card {
    height: 600px;
    padding: 20px 20px;
  }
  #dp-slider {
    height: 450px;
  }
  .testimonials .arrow-main {
    z-index: 999;
    bottom: -40%;
  }
  section.contact-section picture img {
    display: none;
  }
  .contact-us .ways-to-connect {
    flex-direction: column;
  }
  .contact-us .ways-to-connect .ways-to-connect-connect {
    justify-content: left;
    margin: 0 0 20px;
  }
  .contact-us .ways-to-connect .ways-to-connect-connect:nth-child(2) {
    padding: 0 25px;
    border: none;
  }
  /**************************************************************************
--------------- Home Page Folds Responsive Css End Here ------------------
--------------------------------------------------------------------------
**************************************************************************/
  /* Footer Responsive Css Start Here */
  .footer-logo-area .footer-info ul li a {
    font-size: 14px;
    line-height: 20px;
  }
  .footer-top .footer-links-area {
    margin: 0 0 20px;
  }
  .footer-links-area h4 {
    font-size: 18px;
    line-height: 24px;
  }
  .footer-brands-area .footer-brands-logos img {
    width: 100px;
  }
  .footer-brands-area .footer-dmc-logos {
    margin: 0 0 20px;
  }
  /* Footer Responsive Css End Here */
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  /*Header Responsive Css Start Here*/
  header .navbar-toggler {
    background: #ee9237;
  }
  header .navbar-expand-lg .navbar-collapse {
    padding: 10px 0;
  }
  header .navbar-collapse ul.navbar-nav {
    margin: 0;
  }
  header .navbar-collapse ul.navbar-nav li.nav-item {
    border-bottom: 2px solid #ee9237;
  }
  header .navbar-collapse ul.navbar-nav li.nav-item a.nav-link {
    padding: 10px 0;
    width: 100%;
  }
  header .navbar-collapse ul.navbar-nav li.nav-item.dropdown {
    justify-content: space-between;
    position: relative;
  }
  header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu {
    position: absolute;
    top: 47px;
    transform: inherit;
    opacity: inherit;
    visibility: inherit;
    display: inherit;
    min-height: 250px;
    max-height: 250px;
    overflow-y: auto;
  }
  header
    .navbar-nav
    .nav-item.dropdown
    ul.dropdown-menu::-webkit-scrollbar-track {
    border-radius: 0px;
  }
  header .navbar-nav .nav-item.dropdown ul.dropdown-menu::-webkit-scrollbar {
    width: 3px;
    background: #ffffff;
    border-radius: 0px;
  }
  header
    .navbar-nav
    .nav-item.dropdown
    ul.dropdown-menu::-webkit-scrollbar-thumb {
    background-color: #353a4d;
    border-radius: 0px;
  }
  header .navbar-nav .nav-item ul.dropdown-menu {
    position: unset;
    width: 100%;
    border-radius: 0;
    border: 1px solid #ef9541;
    box-shadow: none;
    padding: unset;
    opacity: unset;
    visibility: unset;
    transform: inherit;
    display: none;
  }
  header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu {
    display: none;
  }
  header .navbar-nav .nav-item ul.dropdown-menu.dropdown-menu-single {
    top: 0;
    width: 100%;
    margin: 0;
    min-height: inherit !important;
    max-height: inherit !important;
    overflow: inherit;
  }
  header nav.navbar .navbar-buttons {
    margin: 10px 0;
  }
  header nav.navbar .navbar-buttons a.call-btn {
    font-size: 14px;
    padding: 8px 8px;
  }
  /*Header Responsive Css End Here*/
  /**************************************************************************
--------------- Home Page Folds Responsive Css Start Here ----------------
--------------------------------------------------------------------------
**************************************************************************/
  .hero-banner {
    padding: 120px 0 50px;
    text-align: center;
  }
  .banner-list {
    text-align: left;
  }
  .banner-btns {
    margin: 0 0 20px;
  }
  .hero-banner-form {
    padding: 25px 25px;
  }
  .sec {
    padding: 30px 0;
  }
  .booksell-platform {
    text-align: center;
  }
  .booksell-platform .d-flex {
    flex-wrap: wrap;
    justify-content: center;
  }
  .booksell-platform .platform-logo-booksell {
    margin: 0 10px 10px;
  }
  .booksell-platform .platform-logo-booksell img {
    width: 120px;
  }
  .pt-sec-new.sec-mt {
    margin: 0;
  }
  .pt-sec-new .nav-tabs .nav-link {
    margin: 0 10px 10px;
  }
  .pt-portfolio-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .pt-portfolio-wrap .pt-new-img {
    width: 33%;
  }
  .new-company-sec {
    text-align: center;
  }
  .new-company-sec ul {
    text-align: left;
    padding: 0 0 0 20px;
  }
  .new-company-sec img {
    margin: 20px 0;
  }
  .revies-platform-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 0;
  }
  .revies-platform-images .pf-logo {
    margin: 0 8px 10px;
  }
  .revies-platform-images .pf-logo img {
    width: 120px;
    margin: 0;
  }
  .award-winning-new-sec {
    text-align: center;
  }
  .award-winning-new-sec .award-winning-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 0;
  }
  .award-winning-wrap .award-winning-logo {
    margin: 0 8px 10px;
  }
  .award-winning-wrap .award-winning-logo img {
    width: 100px;
    margin: 0;
  }
  .new-books-sec {
    text-align: center;
  }
  .new-books-sec .genre-grid-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 0;
  }
  .genre-grid-wrap .genre-wrap-item {
    width: 45%;
    margin: 0 8px 10px;
  }
  .genre-grid-wrap .genre-wrap-item img {
    margin: 0;
  }
  .cta-sec-new {
    padding: 30px 0;
  }
  .cta-sec-new .cta-btns .btn-cta {
    margin: 0 5px 10px;
  }
  .cta-book-img-new2 {
    display: none;
  }
  .our-ser-new-sec {
    text-align: center;
  }
  .our-ser-new-sec .serbox-new {
    margin: 20px 10px 0;
  }
  .our-ser-new-sec .prev-slide {
    left: 0;
  }
  .our-ser-new-sec .next-slide {
    right: 0;
  }
  .g-process-bg {
    padding: 30px 0;
  }
  .g-process-bg .g-cta-1-content h5:after {
    left: 0;
    right: 0;
  }
  .g-process-inner {
    margin: 20px 0;
    background-image: none;
    text-align: center;
    height: inherit;
  }
  .g-process-inner-content {
    height: inherit;
  }
  .g-process-inner-content1 h3,
  .g-process-inner-content2 h3,
  .g-process-inner-content3 h3,
  .g-process-inner-content4 h3,
  .g-process-inner-content5 h3 {
    padding: 0;
  }
  .g-process-inner-content2-2 p {
    padding: 0;
  }
  .g-process-bg .order-one {
    order: 1;
  }
  .g-process-bg .order-two {
    order: 2;
  }
  .bgnewcolor .g-cta {
    padding: 30px 30px;
  }
  .g-cta img {
    display: none;
  }
  .bgnewcolor {
    text-align: center;
  }
  .bgnewcolor picture img {
    margin: 20px 0;
  }
  .g-how-we-content h4:after {
    left: 0;
    right: 0;
  }
  .our-value-sec picture img {
    margin: 20px 0;
  }
  .new-test-sec .testi-heading {
    font-size: 32px;
  }
  .new-test-sec .new-test-box {
    padding: 20px 20px;
  }
  .new-test-sec .new-test-box .d-flex {
    flex-wrap: wrap;
    justify-content: center;
  }
  .new-test-box .testi-box-new-detail {
    width: 100%;
    text-align: center;
  }
  .new-test-box .new-testi-box-img {
    text-align: center;
    width: 100%;
  }
  .new-test-box .new-testi-box-img img {
    margin: 0 auto;
  }
  section.frequently-asked-questions {
    padding: 30px 0;
  }
  .frequently-asked-questions .frequently-heading {
    padding: 0 50px;
  }
  .frequently-asked-questions .frequently-heading h4 {
    font-size: 32px;
    margin: 0 0 20px;
  }
  section.contact-section .section__title {
    margin: 0 0 20px;
    font-size: 32px;
  }
  section.contact-section #contact-section-g {
    padding: 0 50px;
  }
  .frm_area_btm form {
    padding: 30px 30px;
  }
  .frm_area_btm form .form-check {
    text-align: left;
  }
  #contact-section-g .contact-flow {
    padding: 20px 20px;
  }
  .contact-flow__list-item {
    text-align: left;
  }
  .new-editing-bg {
    padding: 120px 0 30px !important;
    text-align: center;
  }
  .services-together-wrap .services-together-head {
    text-align: center;
  }
  .services-together-wrap .services-together-head h2 {
    font-size: 32px;
    line-height: 38px;
  }
  section.editing-sec5-box-main-bg {
    padding: 30px 0;
  }
  .editing-sec5-box-main-bg h4,
  .editing-sec5-box-main-bg h2 {
    font-size: 32px;
    line-height: 38px;
  }
  section.why-choose-service {
    padding: 30px 0;
  }
  .why-choose-service-head {
    text-align: center;
  }
  .why-choose-service-head h4,
  .why-choose-service-head h2,
  .why-choose-service-head h3 {
    font-size: 32px;
    line-height: 38px;
  }
  .why-choose-img {
    margin: 20px 0 20px;
    text-align: center;
  }
  .why-choose-img img {
    width: 75%;
  }
  section.about-who-we-are {
    padding: 30px 0;
    text-align: center;
  }
  .about-who-we-are .about-who-head {
    margin: 0 0 20px;
  }
  section.g-about-service {
    text-align: center;
  }
  .testimonials .review-card {
    height: 600px;
    padding: 20px 20px;
  }
  #dp-slider {
    height: 450px;
  }
  .testimonials .arrow-main {
    z-index: 999;
    bottom: -40%;
  }
  section.contact-section picture img {
    display: none;
  }
  .contact-us .ways-to-connect {
    flex-direction: column;
  }
  .contact-us .ways-to-connect .ways-to-connect-connect {
    justify-content: left;
    margin: 0 0 20px;
  }
  .contact-us .ways-to-connect .ways-to-connect-connect:nth-child(2) {
    padding: 0 25px;
    border: none;
  }
  /**************************************************************************
--------------- Home Page Folds Responsive Css End Here ------------------
--------------------------------------------------------------------------
**************************************************************************/
  /* Footer Responsive Css Start Here */
  .footer-logo-area .footer-info ul li a {
    font-size: 14px;
    line-height: 20px;
  }
  .footer-top .footer-links-area {
    margin: 0 0 20px;
  }
  .footer-links-area h4 {
    font-size: 18px;
    line-height: 24px;
  }
  .footer-links-area .footer-services-nav-links {
    flex-direction: column;
  }
  .footer-brands-area .footer-brands-logos img {
    width: 100px;
    margin: 0 10px 0;
  }
  .footer-brands-area .footer-dmc-logos {
    justify-content: center;
    margin: 0 0 20px;
  }
  .footer-bottom .footer-copyright {
    text-align: center;
  }
  .footer-copyright p {
    margin: 0 0 10px;
  }
  .footer-bottom-links ul {
    justify-content: center;
  }
  /* Footer Responsive Css End Here */
  .flip-clock-wrapper ul {
    width: 40px;
    height: 50px;
    font-size: 40px;
    line-height: 50px;
    margin: 3px;
  }
  .flip-clock-wrapper ul li {
    line-height: 50px;
  }
  .flip-clock-wrapper ul li a div div.inn {
    font-size: 40px;
  }
  .flip-clock-wrapper ul li a div.up:after {
    top: 23px;
    height: 3px;
  }
  .floatbutton {
    display: none;
  }
}
@media only screen and (min-width: 300px) and (max-width: 575px) {
  /*Header Responsive Css Start Here*/
  header .navbar-toggler {
    background: #ee9237;
  }
  header .navbar-expand-lg .navbar-collapse {
    padding: 10px 0;
  }
  header .navbar-collapse ul.navbar-nav {
    margin: 0;
  }
  header .navbar-collapse ul.navbar-nav li.nav-item {
    border-bottom: 2px solid #ee9237;
  }
  header .navbar-collapse ul.navbar-nav li.nav-item a.nav-link {
    padding: 10px 0;
    width: 100%;
  }
  header .navbar-collapse ul.navbar-nav li.nav-item.dropdown {
    justify-content: space-between;
    position: relative;
  }
  header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu {
    position: absolute;
    top: 47px;
    transform: inherit;
    opacity: inherit;
    visibility: inherit;
    display: inherit;
    min-height: 250px;
    max-height: 250px;
    overflow-y: auto;
  }
  header
    .navbar-nav
    .nav-item.dropdown
    ul.dropdown-menu::-webkit-scrollbar-track {
    border-radius: 0px;
  }
  header .navbar-nav .nav-item.dropdown ul.dropdown-menu::-webkit-scrollbar {
    width: 3px;
    background: #ffffff;
    border-radius: 0px;
  }
  header
    .navbar-nav
    .nav-item.dropdown
    ul.dropdown-menu::-webkit-scrollbar-thumb {
    background-color: #353a4d;
    border-radius: 0px;
  }
  header .navbar-nav .nav-item ul.dropdown-menu {
    position: unset;
    width: 100%;
    border-radius: 0;
    border: 1px solid #ef9541;
    box-shadow: none;
    padding: unset;
    opacity: unset;
    visibility: unset;
    transform: inherit;
    display: none;
  }
  header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu {
    display: none;
  }
  header .navbar-nav .nav-item ul.dropdown-menu.dropdown-menu-single {
    top: 0;
    width: 100%;
    margin: 0;
    min-height: inherit !important;
    max-height: inherit !important;
    overflow: inherit;
  }
  header nav.navbar .navbar-buttons {
    margin: 10px 0;
  }
  header nav.navbar .navbar-buttons a.call-btn {
    font-size: 14px;
    padding: 8px 8px;
  }
  /*Header Responsive Css End Here*/
  /**************************************************************************
--------------- Home Page Folds Responsive Css Start Here ----------------
--------------------------------------------------------------------------
**************************************************************************/
  .hero-banner {
    padding: 120px 0 50px;
    text-align: center;
  }
  .banner-list {
    text-align: left;
  }
  .banner-btns {
    margin: 0 0 20px;
  }
  .btn-dark-new {
    margin: 0 5px 10px;
  }
  .hero-banner-form {
    padding: 25px 25px;
  }
  .sec {
    padding: 30px 0;
  }
  .booksell-platform {
    text-align: center;
  }
  .booksell-platform .d-flex {
    flex-wrap: wrap;
    justify-content: center;
  }
  .booksell-platform .platform-logo-booksell {
    margin: 0 10px 10px;
  }
  .booksell-platform .platform-logo-booksell img {
    width: 100px;
  }
  .pt-sec-new.sec-mt {
    margin: 0;
  }
  .pt-sec-new .nav-tabs .nav-link {
    margin: 0 10px 10px;
  }
  .pt-portfolio-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .pt-portfolio-wrap .pt-new-img {
    width: 45%;
  }
  .new-company-sec {
    text-align: center;
  }
  .new-company-sec ul {
    text-align: left;
    padding: 0 0 0 20px;
  }
  .new-company-sec img {
    margin: 20px 0;
    width: 100%;
  }
  .revies-platform-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 0;
  }
  .revies-platform-images .pf-logo {
    margin: 0 8px 10px;
  }
  .revies-platform-images .pf-logo img {
    width: 100px;
    margin: 0;
  }
  .award-winning-new-sec {
    text-align: center;
  }
  .award-winning-new-sec .award-winning-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 0;
  }
  .award-winning-wrap .award-winning-logo {
    margin: 0 8px 10px;
  }
  .award-winning-wrap .award-winning-logo img {
    width: 100px;
    margin: 0;
  }
  .new-books-sec {
    text-align: center;
  }
  .new-books-sec .genre-grid-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 0;
  }
  .genre-grid-wrap .genre-wrap-item {
    margin: 0 8px 10px;
  }
  .genre-grid-wrap .genre-wrap-item img {
    margin: 0;
  }
  .cta-sec-new {
    padding: 30px 0;
  }
  .cta-sec-new .cta-btns .btn-cta {
    margin: 0 5px 10px;
  }
  .cta-book-img-new2 {
    display: none;
  }
  .our-ser-new-sec {
    text-align: center;
  }
  .our-ser-new-sec .serbox-new {
    margin: 20px 10px 0;
  }
  .our-ser-new-sec .prev-slide {
    left: 0;
  }
  .our-ser-new-sec .next-slide {
    right: 0;
  }
  .g-process-bg {
    padding: 30px 0;
  }
  .g-process-bg .g-cta-1-content h5:after {
    left: 0;
    right: 0;
  }
  .g-process-inner {
    margin: 20px 0;
    background-image: none;
    text-align: center;
    height: inherit;
  }
  .g-process-inner-content {
    height: inherit;
  }
  .g-process-inner-content1 h3,
  .g-process-inner-content2 h3,
  .g-process-inner-content3 h3,
  .g-process-inner-content4 h3,
  .g-process-inner-content5 h3 {
    padding: 0;
  }
  .g-process-inner-content2-2 p {
    padding: 0;
  }
  .g-process-bg .order-one {
    order: 1;
  }
  .g-process-bg .order-two {
    order: 2;
  }
  .bgnewcolor .g-cta {
    padding: 30px 30px;
  }
  .g-cta img {
    display: none;
  }
  .bgnewcolor {
    text-align: center;
  }
  .bgnewcolor picture img {
    margin: 20px 0;
  }
  .g-how-we-content h4:after {
    left: 0;
    right: 0;
  }
  .our-value-sec picture img {
    margin: 20px 0;
  }
  .new-test-sec {
  }
  .new-test-sec .testi-heading {
    font-size: 32px;
  }
  .new-test-sec .new-test-box {
    padding: 20px 20px;
  }
  .new-test-sec .new-test-box .d-flex {
    flex-wrap: wrap;
    justify-content: center;
  }
  .new-test-box .testi-box-new-detail {
    width: 100%;
    text-align: center;
  }
  .new-test-box .new-testi-box-img {
    display: none;
  }
  section.frequently-asked-questions {
    padding: 30px 0;
  }
  .frequently-asked-questions .frequently-heading h4 {
    font-size: 32px;
    margin: 0 0 20px;
  }
  section.contact-section .section__title {
    margin: 0 0 20px;
    font-size: 32px;
  }
  section.contact-section #contact-section-g {
    padding: 0 20px;
  }
  .frm_area_btm form {
    padding: 30px 30px;
  }
  #contact-section-g .contact-flow {
    padding: 20px 20px;
  }
  .contact-flow__list-item {
    text-align: left;
  }
  .new-editing-bg {
    padding: 120px 0 30px !important;
    text-align: center;
  }
  .services-together-wrap .services-together-head {
    text-align: center;
  }
  .services-together-wrap .services-together-head h2 {
    font-size: 32px;
    line-height: 38px;
  }
  section.editing-sec5-box-main-bg {
    padding: 30px 0;
  }
  .editing-sec5-box-main-bg h4,
  .editing-sec5-box-main-bg h2 {
    font-size: 32px;
    line-height: 38px;
  }
  section.why-choose-service {
    padding: 30px 0;
  }
  .why-choose-service-head {
    text-align: center;
  }
  .why-choose-service-head h4,
  .why-choose-service-head h2,
  .why-choose-service-head h3 {
    font-size: 32px;
    line-height: 38px;
  }
  .why-choose-img {
    margin: 20px 0 20px;
    text-align: center;
  }
  section.about-who-we-are {
    padding: 30px 0;
    text-align: center;
  }
  .about-who-we-are .about-who-head {
    margin: 0 0 20px;
  }
  section.g-about-service {
    text-align: center;
  }
  .testimonials .review-card {
    height: 850px;
    padding: 20px 20px;
  }
  #dp-slider {
    height: 700px;
  }
  .testimonials .arrow-main {
    z-index: 999;
    bottom: -30%;
  }
  section.contact-section picture img {
    display: none;
  }
  .contact-us .ways-to-connect {
    flex-direction: column;
  }
  .contact-us .ways-to-connect .ways-to-connect-connect {
    justify-content: left;
    margin: 0 0 20px;
  }
  .contact-us .ways-to-connect .ways-to-connect-connect:nth-child(2) {
    padding: 0 25px;
    border: none;
  }
  /**************************************************************************
--------------- Home Page Folds Responsive Css End Here ------------------
--------------------------------------------------------------------------
**************************************************************************/
  /* Footer Responsive Css Start Here */
  .footer-top .footer-logo-area {
    text-align: center;
  }
  .footer-logo-area .footer-logo {
    margin: 0 auto 20px;
  }
  .footer-logo-area .footer-info ul li a {
    font-size: 14px;
    line-height: 20px;
  }
  .footer-logo-area ul.footer-social-links {
    justify-content: center;
  }
  .footer-top .footer-links-area {
    text-align: center;
    margin: 0 0 20px;
  }
  .footer-links-area h4 {
    font-size: 18px;
    line-height: 24px;
  }
  .footer-links-area .footer-services-nav-links {
    flex-direction: column;
  }
  .footer-services-nav-links ul.footer-nav-links {
    margin: 0;
  }
  .footer-brands-area .footer-brands-logos {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-brands-area .footer-brands-logos img {
    width: 100px;
    margin: 0 10px 0;
  }
  .footer-brands-area .footer-dmc-logos {
    justify-content: center;
    margin: 0 0 20px;
  }
  .footer-top .footer-disclaimer-area {
    text-align: center;
  }
  .footer-top .footer-disclaimer-area p b {
    display: block;
  }
  .footer-bottom .footer-copyright {
    text-align: center;
  }
  .footer-copyright p {
    margin: 0 0 10px;
  }
  .footer-bottom-links ul {
    justify-content: center;
    flex-direction: column;
  }
  .footer-bottom-links ul li {
    margin: 0 0 5px;
  }
  /* Footer Responsive Css End Here */
  /* media query 300px to 575px start here */
  #staticBackdrop .modal-dialog {
    max-width: 100% !important;
    margin: 100px 10px 0;
  }
  .modal-body-form h5 {
    font-size: 18px;
    line-height: 24px;
  }
  .flip-clock-wrapper ul {
    width: 25px;
    height: 40px;
    font-size: 30px;
    line-height: 40px;
    margin: 2px;
  }
  .flip-clock-wrapper ul li {
    line-height: 40px;
  }
  .flip-clock-wrapper ul li a div div.inn {
    font-size: 30px;
    border-radius: 5px;
  }
  .flip-clock-wrapper ul li a div.up:after {
    top: 19px;
    height: 3px;
  }
  .flip-clock-dot {
    width: 7px;
    height: 7px;
    left: 4px;
  }
  .flip-clock-dot.top {
    top: 36px;
  }
  .flip-clock-dot.bottom {
    bottom: 36px;
  }
  .modal-body-form h3 {
    font-size: 22px;
    line-height: 26px;
  }
  .modal-body-form h3 span {
    font-size: 54px;
    line-height: 60px;
  }
  .modal-body-form .popup-form-list .form-group button.submit-btn {
    font-size: 16px;
  }
  /* media query 300px to 575px end here */
  .floatbutton {
    display: none;
  }
}
/*Childrens Book Illustration Page CSS Start Here*/
/* -------------------------sec1-------------------------- */
.sec1 {
  background-image: url("images/children-book-illustration/child-banner-bg.png");
  background-size: cover;
  background-position: right bottom;
  width: 100%;
  min-height: 725px;
  align-items: center;
  position: relative;
  padding: 170px 0 0;
}
.btn-sec1 {
  color: white;
  padding: 10px 40px;
  border: 2px solid #fa690c;
  background-color: #fa690c;
  border-radius: 40px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.btn-sec1:hover {
  color: black;
  padding: 10px 40px;
  border: 2px solid black;
  background-color: white;
  border-radius: 40px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.btn-sec2 {
  color: black;
  padding: 10px 40px;
  border: 2px solid black;
  background-color: white;
  border-radius: 40px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.btn-sec2:hover {
  color: white;
  padding: 10px 40px;
  border: 2px solid #fa690c;
  background-color: #fa690c;
  border-radius: 40px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.sec1-head {
  font-family: "Brinan-black";
  font-weight: 500;
  line-height: 55px;
  size: 50px;
}
.vec_img1 {
  position: absolute;
  left: 81px;
  top: 110px;
}
.vec_img2 {
  position: absolute;
  left: 89px;
  bottom: 241px;
}
.banner_boxes_mm .title_m {
  font-size: 50px;
  margin: 0;
}
.banner_text_mm h1:before {
  content: "";
  width: 280px;
  background-color: #fff;
  height: 9px;
  position: absolute;
  top: 42px;
  z-index: -1;
  left: -15px;
}
.banner_text_mm h1 {
  position: relative;
  z-index: 1;
}
.illus-span {
  margin-left: 113px;
}
.banner_form_m {
  background-image: url("images/children-book-illustration/child-banner-form.png");
  background-size: 90%;
  background-position: center center;
  padding: 0 130px;
  margin: -110px -90px -240px 0;
  float: right;
  height: 650px;
  background-repeat: no-repeat;
  position: relative;
}
.banner_form_m h3 {
  color: #000;
  font-size: 24px;
  margin: 171px 0 20px;
  text-transform: uppercase;
}
.banner_form_m h3 span {
  margin: 0;
  color: #f7931e;
}
.banner_form_m input.form-control,
.banner_form_m textarea.form-control {
  height: 45px;
  background-color: #f1f1f1;
  color: #494949;
  border: none;
  box-shadow: inset 0 0 0 rgb(0 0 0 / 8%);
  margin-top: 8px;
  margin-bottom: 8px;
}
.banner_form_m:before {
  content: "";
  background-image: url("images/children-book-illustration/child-banner-vec-img3.png");
  background-repeat: no-repeat;
  position: absolute;
  width: 147px;
  height: 339px;
  left: 0px;
  bottom: 100px;
}
.banner_form_m:after {
  content: "";
  background-image: url("images/children-book-illustration/child-banner-vec-img4.png");
  background-repeat: no-repeat;
  position: absolute;
  width: 199px;
  height: 276px;
  right: -103px;
  bottom: 170px;
}
.btn-sec1-3 {
  color: white;
  padding: 10px 40px;
  border: 2px solid #f7931e;
  background-color: #f7931e;
  border-radius: 40px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.btn-sec1-3:hover {
  color: white;
  padding: 10px 40px;
  border: 2px solid #f7931e;
  background-color: #f7931e;
  border-radius: 40px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.clr_black_m {
  font-family: "Brinnan_Bold";
  font-weight: 500;
  font-size: 40px;
  line-height: 47px;
  color: black;
}
/* -------------------------sec1-------------------------- */
/* -------------------------sec2-------------------------- */
.sec2 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.sec2-head {
  font-family: "Brinnan_Bold";
  font-weight: 500;
  font-size: 35px;
  line-height: 39px;
  color: black;
}
.sec2-small-head {
  font-family: "Brinnan_Bold";
  font-size: 16px;
  line-height: 22px;
  font-weight: 900 !important;
  margin-left: 10px;
}
.sec-2-icon {
  margin-top: -22px;
}
.blankdiv-sec2 {
  height: 2px;
  background-color: #d9d9d9;
  margin-top: -17px;
}
.para_m {
  font-size: 16px;
  color: black;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
}
/* -------------------------sec2-------------------------- */
/* -------------------------sec3-------------------------- */
.sec3 {
  background-image: url("images/cta-bg-1.php");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-top: 100px;
  padding-bottom: 80px;
}
.cta-txt h5 {
  color: #fff;
  /* font-family: 'Brinan-black' !important; */
  font-size: 34px;
  line-height: 28px;
  font-weight: 500;
}
.cta-head-2 {
  font-family: "Brinnan_Bold";
  color: #fff;
  font-weight: 700;
  font-size: 37px;
  line-height: 41px;
}
.btn-1-sec3 {
  color: #fff;
  padding: 10px 40px;
  border: 2px solid black;
  background-color: #7c2791;
  border-radius: 40px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.btn-1-sec3:hover {
  color: black;
  background-color: #fff;
}
.btn-2-sec3 {
  color: black;
  padding: 10px 40px;
  border: 2px solid black;
  background-color: #fff;
  border-radius: 40px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.btn-2-sec3:hover {
  color: white;
  padding: 10px 40px;
  border: 2px solid black;
  background-color: #7c2791;
  border-radius: 40px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.ctanum {
  color: white;
  text-decoration-line: none;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
}
.call-us {
  font-weight: 400px;
  color: white;
  text-decoration-line: none;
  font-size: 20px;
  line-height: 26px;
}
.cta-call {
  text-decoration-line: none;
}
.cta-txt1 {
  margin-top: -35px;
  color: white;
  font-size: 34px;
  line-height: 28px;
  font-weight: 500;
}
.cta-txt1 h5 {
  font-size: 32px;
  line-height: 39px;
}
/* -------------------------sec3-------------------------- */
/* -------------------------sec4-------------------------- */
.sec4 {
  padding-top: 80px;
  padding-bottom: 60px;
}
.sec4-head1 {
  font-family: "Brinnan_Bold";
  font-weight: 500;
  font-size: 35px;
  line-height: 39px;
  color: black;
  text-align: center;
}
.sec4-p1 {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: black;
  text-align: center;
}
.btn-1-sec4 {
  color: #fff;
  padding: 10px 40px;
  border: 2px solid#fa690c;
  background-color: #fa690c;
  border-radius: 40px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.btn-2-sec4 {
  color: black;
  padding: 10px 40px;
  border: 2px solid black;
  background-color: white;
  border-radius: 40px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.btn-2-sec4:hover {
  color: #fff;
  padding: 10px 40px;
  border: 2px solid#fa690c;
  background-color: #fa690c;
  border-radius: 40px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.fb-img::after {
  content: "+";
  position: absolute;
  top: 0;
  left: 0;
  background: #0000009c;
  color: #fff;
  font-size: 40px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}
.showcase-wrap {
  padding: 0px 0 50px;
  position: relative;
  z-index: 1;
}
.showcase-wrap .showcase-head h3 {
  font-family: "perpeta-bold-font";
  font-size: 54px;
  font-weight: 600;
  color: rgb(33, 33, 33);
  text-align: center;
}
.showcase-wrap .showcase-head p {
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgb(33, 33, 33);
  line-height: 24px;
  text-align: center;
  width: 65%;
  margin: 0 auto;
}
.showcase-inner-buttons ul.nav-pills {
  justify-content: center;
  align-items: center;
}
.showcase-inner-buttons ul.nav-pills li.nav-item button.nav-link {
  background: transparent;
  color: #212121;
  border-right: 1px solid #707070;
  font-size: 18px;
  font-weight: 600;
  font-family: "serif";
  width: 170px;
  height: 25px;
  line-height: 25px;
  border-radius: 0;
  padding: 10px 10px;
  margin: 0;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.showcase-inner-buttons ul.nav-pills li.nav-item button.nav-link.active {
  color: #358f45;
}
.showcase-inner-buttons ul.nav-pills li.nav-item button.nav-link:hover {
  color: #358f45;
}
.showcase-inner-buttons ul.nav-pills li.nav-item button.nav-link.active:after,
.showcase-inner-buttons ul.nav-pills li.nav-item button.nav-link:hover:after {
  content: "";
  margin: 0 auto;
  bottom: 0;
  width: 10px;
  height: 10px;
  left: 0px;
  top: 7px;
  padding: absolute;
  background: #358f45;
  border-radius: 100%;
}
.showcase-inner-tabs .showcase-tabitem-books {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 45px;
}
.showcase-tabitem-books .showcase-books-box {
  text-align: center;
  margin: 0 10px 20px;
}
.showcase-books-box a {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.showcase-books-box a::after {
  content: "\f06e";
  font-family: "FontAwesome";
  position: absolute;
  top: 0;
  border-radius: 50%;
  left: 0;
  background: #0000009c;
  color: #fff;
  font-size: 40px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}
.showcase-inner-wrap .showcase-inner-buttons {
  margin: 0 0 30px;
}
.showcase-inner-buttons ul.nav-pills {
  justify-content: center;
  align-items: center;
}
.showcase-inner-buttons ul.nav-pills li.nav-item {
  margin: 0 10px 10px;
}
.showcase-inner-buttons ul.nav-pills li.nav-item button.nav-link {
  background: transparent;
  color: #212121;
  border-right: 1px solid #707070;
  font-size: 18px;
  font-weight: 600;
  width: 170px;
  height: 25px;
  line-height: 25px;
  border-radius: 0;
  padding: 10px 10px;
  margin: 0;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.showcase-inner-buttons ul.nav-pills li.nav-item button.nav-link.active,
.showcase-inner-buttons ul.nav-pills li.nav-item button.nav-link:hover {
  color: #358f45;
}
.showcase-inner-buttons ul.nav-pills li.nav-item button.nav-link.active:after,
.showcase-inner-buttons ul.nav-pills li.nav-item button.nav-link:hover:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  top: 7px;
  background: #358f45;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin: 0 auto;
}
.showcase-books-box a {
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.showcase-books-box a:hover::after {
  transform: scale(1);
  border-radius: 0;
}
.our-portfolio-wrap .bnr-end-img {
  text-align: center;
  margin-top: 30px;
}
/* -------------------------sec4-------------------------- */
/* -------------------------sec5-------------------------- */
.sec5-head1 {
  font-family: "Brinnan_Bold";
  font-weight: 500;
  font-size: 35px;
  line-height: 39px;
  color: black;
  text-align: center;
}
.sec5-p1 {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: black;
  text-align: center;
}
.sec5 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.slef_published_m_box_icons h4 {
  font-size: 23px;
  color: #172117;
  margin: 40px;
}
.slef_published_m_box {
  background-color: #fff;
  box-shadow: 0 1px 20px rgb(0 0 0 / 19%);
  padding-top: 40px;
  padding-bottom: 50px;
  padding-left: 30px;
  padding-right: 30px;
  height: 235px;
  align-content: center;
  border-radius: 10px;
  transition-duration: 0.5s;
  margin: 0 0 30px;
}
.slef_published_m_box:hover {
  background-color: #b1ffb1;
}
.slef_published_m_box p {
  color: #546368;
  font-size: 16px;
  line-height: 22px;
}
/* -------------------------sec5-------------------------- */
/* -------------------------sec6-------------------------- */
.cta-child-img {
  width: 75%;
  display: flex;
  margin: 0 auto;
}
.sec6 {
  background-image: url("images/children-book-illustration/cta-bg-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 0px;
  height: auto;
}
.sec6-p1 {
  line-height: 24px;
  font-size: 18px;
  color: white;
  font-weight: 400;
}
/* -------------------------sec6-------------------------- */
/* -------------------------sec7-------------------------- */
.sec7 {
  padding-top: 80px;
  padding-bottom: 60px;
}
.img-sec7 {
  margin: 15px 0 0 -70px;
}
.sec7-head {
  font-family: "Brinnan_Bold";
  font-weight: 500;
  font-size: 30px;
  line-height: 35px;
}
.sec7-p1 {
  line-height: 24px;
  font-size: 16px;
  color: rgb(33, 37, 41);
  font-weight: 400;
}
.list-process ol li {
  counter-increment: process-counter;
  margin-bottom: 40px;
  position: relative;
  font-size: 18px;
  font-weight: 400;
  color: #455a64;
}
.list-process ol li em,
.list-process ol li span {
  display: block;
  font-family: "Brinnan_Bold";
  font-size: 25px;
  font-style: normal;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 10px;
  color: #212121;
  position: relative;
}
.list-process ol li:before {
  content: "0" counter(process-counter);
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
  color: #fbc02d;
  margin-right: 40px;
  position: absolute;
  top: 0;
  left: -93px;
}
.list-process ol li:after {
  content: "step";
  position: absolute;
  top: 36px;
  left: -88px;
  font-size: 12px;
  font-weight: 400;
  color: #c4c4c4;
  text-transform: uppercase;
}
.blank-div {
  height: 2px;
  background-color: #fcc360;
  width: 75px;
  margin-bottom: 5px;
}
.sec7-btn {
  color: white;
  padding: 10px 40px;
  border: 2px solid #7076fb;
  background-color: #7076fb;
  border-radius: 40px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.sec7-btn:hover {
  color: black;
  padding: 10px 40px;
  border: 2px solid black;
  background-color: #7076fb;
  border-radius: 40px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
/* -------------------------sec7-------------------------- */
/* -------------------------sec8-------------------------- */
.sec8 {
  background-color: #fcc360;
  padding-top: 50px;
  padding-bottom: 50px;
}
.sec8-head {
  font-family: "Brinnan_Bold";
  font-weight: 500;
  font-size: 35px;
  line-height: 39px;
  text-align: center;
}
.testimonails_sec_m_box {
  background-color: #fff;
  border-radius: 10px;
  padding-top: 20px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  overflow: visible !important;
  width: 100% !important;
}
.testimonils_comma img {
  position: absolute;
  right: 34px;
  top: -86px;
}
.stars_comama {
  margin: 21px 0;
  float: left;
  width: 100%;
}
.testimonils_comma {
  float: right;
  width: 80px;
  position: relative;
}
.fa-star {
  color: #7076fb;
}
.testimonails_sec_m_box p b {
  margin: 20px auto 0;
  display: block;
  color: #000;
  font-size: 20px;
}
.testimonails_sec_m_box p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
.slick-slider2 .slick-next {
  display: none !important;
}
.slick-slider2 .slick-prev {
  display: none !important;
}
/* -------------------------sec8-------------------------- */
/* -------------------------sec9-------------------------- */
.cta_1or_box {
  padding-top: 50px;
  padding-bottom: 50px;
}
.sec9 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.sec9-head {
  font-family: "Brinnan_Bold";
  line-height: 39px;
  font-weight: 500;
}
.sec9-p {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
}
/* -------------------------sec9-------------------------- */
/* -------------------------sec10-------------------------- */
.sec10-head {
  font-family: "Brinnan_Bold";
  font-size: 35px;
  line-height: 39px;
  font-weight: 500;
}
.sec10-p {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
}
.sec10 {
  padding-top: 50px;
  padding-bottom: 50px;
}
/* -------------------------sec10-------------------------- */
/* -------------------------sec11-------------------------- */
.sec11 {
  background-color: #1b1f2e;
  padding-top: 80px;
  padding-bottom: 60px;
}
.img-11 {
  float: right;
}
.sec11-span {
  color: #7076fb;
  font-size: 18px;
  font-weight: bold;
}
.fa-circle {
  color: #7076fb;
  font-size: 10px !important;
}
.sec11-head2 {
  font-size: 20px;
  font-family: "Brinnan_Bold";
  font-weight: 600;
  color: white;
}
.sec-11-p {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: white;
}
.paddings-sec11 {
  padding-left: 20px;
}
.sec11-head {
  font-family: "Brinnan_Bold";
  font-size: 35px;
  line-height: 39px;
  font-weight: 500;
  color: white;
}
/* -------------------------sec11-------------------------- */
/* --------------------------Responsive Css--------------------------------- */
@media only screen and (min-width: 992px) {
  .sec2-col2 {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .colz2-sec6 {
    display: none;
  }
  .sec6 {
    height: auto;
  }
  .sec2-colz-main,
  .sec11-head {
    text-align: center;
  }
  .sec-2-icon-flex,
  .btn-flex {
    justify-content: center;
  }
  .cta-txt,
  .sec7-col1,
  .sec10-col1,
  .cta-txt1 {
    text-align: center;
  }
  .cta-txt1 {
    margin-top: 0px;
  }
  .img-sec7 {
    display: block;
    margin: auto !important;
  }
  .list-col {
    margin-top: 30px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .banner_form_m:after {
    display: none;
  }
  .banner_form_m:before {
    display: none;
  }
  .banner_form_m {
    background: white;
    margin: 0;
    padding: 70px 35px 0px;
    height: auto;
    border-radius: 100px;
  }
  .banner_form_m h3.text-center {
    margin: 0;
  }
  .vec_img1 {
    display: none;
  }
  .vec_img2 {
    display: none;
  }
  .paddings-sec11 {
    padding-left: 0px;
  }
  .testimonails_sec_m_box {
    height: 395px;
  }
  .banner_text_mm h1,
  .clr_black_m,
  .sec2-head,
  .cta-head-2,
  .sec4-head1,
  .sec5-head1,
  .sec7-head,
  .sec8-head,
  .sec9-head,
  .sec10-head,
  .sec10-head,
  .sec11-head {
    font-size: 25px;
  }
}
@media only screen and (min-width: 578px) and (max-width: 767px) {
  .banner_form_m:after {
    display: none;
  }
  .banner_form_m:before {
    display: none;
  }
  .banner_form_m {
    background: white;
    margin: 0;
    padding: 70px 35px;
    height: auto;
    border-radius: 100px;
  }
  .banner_form_m h3.text-center {
    margin: 0;
  }
  .vec_img1 {
    display: none;
  }
  .vec_img2 {
    display: none;
  }
  .testimonails_sec_m_box {
    height: 350px;
  }
  .banner_text_mm h1,
  .clr_black_m,
  .sec2-head,
  .cta-head-2,
  .sec4-head1,
  .sec5-head1,
  .sec7-head,
  .sec8-head,
  .sec9-head,
  .sec10-head,
  .sec10-head,
  .sec11-head {
    font-size: 28px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .testimonails_sec_m_box {
    height: 300px;
  }
}
@media only screen and (min-width: 1200px) {
  .testimonails_sec_m_box {
    height: 300px;
  }
}
@media only screen and (min-width: 1400px) {
  .cta-child-img {
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-txt {
    margin-top: -50px;
  }
  .cta-child-img {
    position: relative;
    top: -90px;
  }
  .sec7-head {
    margin-top: 134px;
  }
  .cta-txt1 {
    margin-top: -73px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sec7-head {
    margin-top: 218px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .sec7-head {
    margin-top: 132px;
  }
}
@media only screen and (min-width: 1600px) and (max-width: 1681px) {
  .banner_form_m:after {
    content: "";
    background-image: url(../images/children-book-illustration/child-banner-vec-img4.png);
    background-repeat: no-repeat;
    position: absolute;
    width: 199px;
    height: 278px;
    right: -32px;
    bottom: 170px;
  }
  .banner_form_m textarea.form-control {
    height: 45px;
    background-color: #f1f1f1;
    color: #494949;
    border: none;
    box-shadow: inset 0 0 0 rgb(0 0 0 / 8%);
    margin-top: 8px;
    margin-bottom: 8px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .banner_form_m:before {
    content: "";
    background-image: url(../images/children-book-illustration/child-banner-vec-img3.png);
    background-repeat: no-repeat;
    position: absolute;
    width: 147px;
    height: 339px;
    left: -83px;
    bottom: 100px;
  }
  .banner_form_m {
    background-image: url(../images/children-book-illustration/child-banner-form.png);
    background-size: 90%;
    background-position: -24px top;
    padding: 0px 120px;
    margin: -199px -25px -256px -29px;
    float: right;
    height: 650px;
    background-repeat: no-repeat;
    position: relative;
  }
  .vec_img1 {
    top: 50px;
    left: 20px;
  }
  .vec_img2 {
    bottom: 100px;
    left: 20px;
  }
  .sec1 .para_m {
    width: 90%;
  }
  .banner_form_m h3 {
    text-align: left !important;
  }
  .banner_form_m:after {
    content: "";
    background-image: url(../images/children-book-illustration/child-banner-vec-img4.png);
    background-repeat: no-repeat;
    position: absolute;
    width: 199px;
    height: 276px;
    right: -21px;
    bottom: 170px;
  }
  .banner_form_m textarea.form-control {
    height: 45px;
    background-color: #f1f1f1;
    color: #494949;
    border: none;
    box-shadow: inset 0 0 0 rgb(0 0 0 / 8%);
    margin-top: 8px;
    margin-bottom: 8px;
    margin-left: -62px;
  }
  .banner_form_m input.form-control,
  .banner_form_m textarea.form-control {
    height: 45px;
    background-color: #f1f1f1;
    color: #494949;
    border: none;
    box-shadow: inset 0 0 0 rgb(0 0 0 / 8%);
    margin-top: 8px;
    margin-bottom: 8px;
    margin-left: -60px;
  }
}
@media only screen and (min-width: 300px) and (max-width: 1399px) {
  /*.banner_form_m:before {*/
  /*  background-image: none;*/
  /*}*/
  /*.banner_form_m:after {*/
  /*  background-image: none;*/
  /*}*/
  .clr_black_m {
    font-size: 30px;
    line-height: 37px;
  }
  .banner_text_mm h1:before {
    top: 30px;
  }
  .sec1-colz2 {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .sec1 {
    background-image: url("images/children-book-illustration/child-banner-bg.png");
    background-size: cover;
    background-position: right bottom;
    width: 100%;
    min-height: 585px;
    position: relative;
    padding: 120px 0px 50px;
  }
  /*.vec_img1,*/
  /*.vec_img2 {*/
  /*  display: none;*/
  /*}*/
}
/* --------------------------Responsive Css--------------------------------- */
/*FAQs Section Start*/
.sec12-head {
  font-family: "Brinnan_Bold";
  font-size: 35px;
  line-height: 39px;
  font-weight: 500;
}
.sec12-head2 {
  font-size: 20px;
  font-family: "Brinnan_Bold";
  font-weight: 600;
  color: black;
}
.sec-12-p {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: black;
}
section.faqs-sec-wrap {
  background: white;
  padding: 50px 0;
}
.faqs-sec-head p {
  color: #181223;
  margin: 0 0 10px;
}
.faqs-sec-wrap .faqs-sec-head {
  width: 90%;
  margin: 0 auto 50px;
  text-align: center;
}
.faqs-sec-wrap .faqs-sec-head h4 {
  font-size: 54px;
  color: #fff;
  font-weight: 600;
}
.faqs-sec-wrap .faqs-sec-head h4 span {
  color: #358f45;
}
.faqs-sec-item .accordion .accordion-item {
  margin: 0 0 0px;
  border-radius: 0px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #212121;
}
.faqs-sec-item .accordion-item .accordion-header button.accordion-button {
  background: transparent;
  color: #fff;
  font-size: 24px;
  line-height: 30px;
  box-shadow: none;
  border-radius: 0px;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  margin: 0;
}
.faqs-sec-head .heading-two {
  color: #fff;
  margin: 0 0 10px;
  font-size: 54px;
  font-weight: 500;
}
.faqs-sec-item.accordion-item.accordion-header
  .accordion-button:not(.collapsed) {
  color: #358f45;
}
.faqs-sec-item.accordion-item.accordion-header
  .accordion-button:not(.collapsed)::after {
  content: "\f068";
  color: #358f45;
  font-size: 20px;
  transform: rotate(0deg);
}
.faqs-sec-item .accordion-item .accordion-collapse .accordion-body {
  background: transparent;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  padding: 10px 10px;
  border-radius: 0px;
}
.faqs-sec-item .accordion-item .accordion-header .accordion-button::after {
  content: "\2b";
  background-image: none;
  background: transparent;
  color: #212121;
  font-size: 24px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 0px;
  text-align: center;
  transform: rotate(-90deg);
  transition: all 0.3s ease-in-out;
}
.faqs-sec-item
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed) {
  color: #358f45;
}
/*FAQs Section  End*/
/* New Media Query Start here */
@media (min-width: 320px) and (max-width: 575px) {
  .sec1-head br {
    display: none;
  }
  .sec1-head:before {
    display: none;
  }
  .sec1-head span.illus-span {
    margin: 0;
  }
  section.sec5 {
    padding-top: 0;
  }
  section.sec6 {
    padding-top: 30px;
  }
  .cta-txt h5 {
    font-size: 25px;
    line-height: 32px;
  }
  .cta-txt1 {
    margin-top: 0;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  section.sec5 {
    padding-top: 0;
  }
  section.sec4 {
    padding-bottom: 10px;
    padding-top: 30px;
  }
  .banner_form_m:after {
    display: none;
  }
  .banner_form_m:before {
    display: none;
  }
  .banner_form_m {
    background: white;
    margin: 0;
    padding: 70px 35px 0px;
    height: auto;
    border-radius: 100px;
  }
  .banner_form_m h3.text-center {
    margin: 0;
  }
  .vec_img1 {
    display: none;
  }
  .vec_img2 {
    display: none;
  }
  .sec1-head br {
    display: none;
  }
  .sec1-head:before {
    display: none;
  }
  .sec1-head span.illus-span {
    margin: 0;
  }
  section.sec5 {
    padding-top: 0;
  }
  section.sec6 {
    padding-top: 30px;
  }
  .cta-txt h5 {
    font-size: 25px;
    line-height: 32px;
  }
  .cta-txt1 {
    margin-top: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .vec_img1 {
    top: 50px;
    left: 20px;
  }
  .vec_img2 {
    bottom: 100px;
    left: 20px;
  }
  .sec1 .para_m {
    width: 90%;
  }
  .banner_form_m h3 {
    text-align: left !important;
  }
  .banner_form_m:before {
    left: 0px;
  }
  .banner_form_m {
  }
  .sec1 {
    padding: 150px 0px;
  }
  .sec1-colz2 {
    margin-left: -90px;
  }
  .banner_form_m:after {
    height: 100%;
    right: -40px;
    width: 100%;
    background-position: bottom right;
  }
  img.cta_vec_img2 {
    width: 100%;
  }
  img.cta_vec_img1 {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .banner_form_m {
    margin: 0;
    background-size: 100%;
  }
  .banner_form_m h3 {
    margin-top: 100px;
  }
  .banner_form_m:before {
    bottom: 20%;
  }
  .banner_form_m:after {
    right: 0;
  }
  .sec1-head span.illus-span {
    margin: 0;
  }
  .sec1-head br {
    display: none;
  }
  .vec_img1 {
    right: 10px;
    left: auto;
    top: 20%;
  }
  img.cta_vec_img2,
  img.cta_vec_img1 {
    width: 30%;
  }
  .banner_text_mm h1:before {
    top: 35px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .banner_form_m {
    margin: 0;
    background-size: 580px;
    padding: 0 100px 60px;
    width: 100%;
    height: 100%;
    float: left;
  }
  .banner_form_m h3 {
    margin-top: 100px;
  }
  .banner_form_m:before {
    bottom: 130px;
    left: -30px;
  }
  .banner_form_m:after {
    right: 0px;
    width: 200px;
    background-position: bottom right;
    bottom: 0;
    background-size: contain;
  }
  .sec1-head span.illus-span {
    margin: 0;
  }
  .sec1-head br {
    display: none;
  }
  .vec_img1 {
    right: 0;
    left: 0;
    top: 100px;
    width: 80px;
  }
  img.cta_vec_img2,
  img.cta_vec_img1 {
    width: 100%;
  }
  .banner_text_mm h1:before {
    top: 30px;
    left: 0;
  }
  .sec1-colz2 {
    margin: 0;
  }
  .vec_img2 {
    bottom: 40px;
    left: 150px;
  }
  .btn {
    font-size: 16px;
    padding: 10px 20px;
  }
  .sec1 {
    min-height: 700px;
  }
}
/* New Media Query End here */
/*Childrens Book Illustration Page CSS End Here*/