@font-face {
  font-family: "brisk";
  src: url("https://res.cloudinary.com/dvmnlnikb/raw/upload/v1743634271/brisk-kidsregular_c4cjlz.woff2")
      format("woff2"),
    url("https://res.cloudinary.com/dvmnlnikb/raw/upload/v1743634268/brisk-kidsregular_x3q3lx.woff")
      format("woff");
}
:root {
  --heading-font: "brisk";
  --text-font: "Poppins", sans-serif;
  --selection-color: #6f40f295;
  --black-color: #000000;
  --white-color: #ffffff;
  --text-color: #160e17;
  --ease: all 350ms ease-in-out;
  --scrollbar: #f5f5f5;
  --purple-color: #d3a566;
  --dpurple-color: #fba734;
  --pink-color: #e7376b;
  --orange-color: #ff4d12;
  --border-color: #d4d6db59;
}
html,
body {
  height: 100%;
}
.content-side .color_text {
  background-image: linear-gradient(
    90deg,
    rgb(163 99 0) 35%,
    rgb(153 88 0) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
html {
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--heading-font);
}
::selection {
  background: var(--selection-color);
  color: var(--white-color);
  text-shadow: none;
}
::-webkit-scrollbar {
  width: 5px;
  background-color: var(--scrollbar);
}
.tabs-portfolio .nav-tabs::-webkit-scrollbar,
.pic-portfolio .nav-tabs::-webkit-scrollbar {
  height: 5px;
  background-color: var(--scrollbar);
}
.tabs-portfolio .nav-tabs::-webkit-scrollbar-button:start:decrement,
.pic-portfolio .nav-tabs::-webkit-scrollbar-button:start:decrement,
.tabs-portfolio .nav-tabs::-webkit-scrollbar-button:end:increment,
.pic-portfolio .nav-tabs::-webkit-scrollbar-button:end:increment {
  display: none;
}
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none;
}
::-webkit-scrollbar-thumb:vertical {
  border-radius: 10px;
  background-color: var(--pink-color);
}
.tabs-portfolio .nav-tabs::-webkit-scrollbar-thumb,
.pic-portfolio .nav-tabs::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--pink-color);
}
body {
  background-color: var(--white-color);
  font-size: 16px;
  color: var(--text-color);
  position: relative;
  font-family: var(--text-font);
}
ul {
  padding: 0;
  list-style: none;
}
a {
  text-decoration: none;
  transition: var(--ease);
  color: var(--text-color);
}
i {
  transition: var(--ease);
}
.white-btn {
  background-color: #fff;
  color: #000;
  border-color: #fff;
  border-width: 1px;
}
.white-outline-btn {
  color: #fff;
  border: 1px solid #fff !important;
}
.color_text {
  color: #8d0003;
  background-image: linear-gradient(
    90deg,
    rgb(199 125 25) 35%,
    rgb(211 124 5) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--heading-font);
  -webkit-text-stroke: 0px;
  letter-spacing: 1px;
}
.sec-head > span {
  font-size: 18px;
}
.sec-head h2 {
  font-size: 56px;
  line-height: 56px;
  margin: 0 0 15px;
  text-transform: uppercase;
}
.sec-head h2 span {
  font-weight: normal;
}
.sec-head p {
  font-size: 18px;
}
.cen-head {
  text-align: center;
  max-width: 78%;
  margin: 0 auto 20px;
}
.cen-head p {
  max-width: 1000px;
  margin: 0 auto 20px;
}
@-webkit-keyframes opacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes zooming {
  0% {
    transform: rotate(25deg);
  }
  50% {
    transform: rotate(-25deg);
  }
  100% {
    transform: rotate(25deg);
  }
}
@-webkit-keyframes updown {
  0% {
    -webkit-transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(15px);
  }
  100% {
    -webkit-transform: translateY(0px);
  }
}
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.up-down-ani {
}
.up-lr-ani {
  -webkit-animation: zooming 3s infinite linear;
}
.btn-style {
  padding: 15px 20px;
  border-radius: 0;
  border: 1px solid transparent;
  display: inline-block;
}
.yellow-btn {
  background-color: #ffc703;
  border: 1px solid transparent;
}
.yellow-outline-btn {
  border: 1px solid #ffc703;
  color: #fff;
}
.black-btn {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
.btn-get-started {
  background-color: #000;
  border: none;
  color: #fff;
  padding: 18px 30px;
}
.yellow-outline-btn.icon-style {
  background: linear-gradient(
    90deg,
    rgba(194, 57, 0, 0) 0%,
    rgba(194, 57, 0, 0) 50%,
    rgba(255, 199, 3, 1) 50%,
    rgba(255, 199, 3, 1) 100%
  );
  background-size: 202%;
  background-position: -1px 0;
}
.purple-outline-btn.icon-style {
  background: linear-gradient(
    90deg,
    rgba(194, 57, 0, 0) 0%,
    rgba(194, 57, 0, 0) 50%,
    #701a81 50%,
    #701a81 100%
  );
  background-size: 202%;
  background-position: -1px 0;
  border-color: #701a81;
  color: var(--white-color);
}
.pink-outline-btn.icon-style {
  background: linear-gradient(
    90deg,
    rgba(194, 57, 0, 0) 0%,
    rgba(194, 57, 0, 0) 50%,
    #ad6500 50%,
    #bb761a 100%
  );
  background-size: 202%;
  background-position: -1px 0;
  border-color: #cb7d10;
  color: var(--white-color);
}
.yellow-btn.icon-style {
  background: linear-gradient(
    90deg,
    rgba(255, 199, 3, 1) 0%,
    rgba(255, 199, 3, 1) 50%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 1) 100%
  );
  background-size: 202%;
  background-position: -1px 0;
}
.purple-btn.icon-style {
  background: linear-gradient(
    90deg,
    #d5861d 0%,
    #e58500 50%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 1) 100%
  );
  background-size: 202%;
  background-position: -1px 0;
  color: var(--white-color);
  border: 2px solid white;
}
.pink-btn.icon-style {
  background: linear-gradient(
    90deg,
    #f49e2b 0%,
    #f18d01 50%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 1) 100%
  );
  background-size: 202%;
  background-position: -1px 0;
  color: var(--white-color);
  border: 2px solid white;
}
.black-btn.icon-style {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 50%,
    rgba(255, 199, 3, 1) 50%,
    rgba(255, 199, 3, 1) 100%
  );
  background-size: 202%;
  background-position: -1px 0;
}
.black-outline-btn.icon-style {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 1) 100%
  );
  background-size: 202%;
  background-position: -1px 0;
}
.white-btn.icon-style {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 1) 100%
  );
  background-size: 202%;
  background-position: -1px 0;
}
.white-outline-btn.icon-style {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 1) 100%
  );
  background-size: 202%;
  background-position: -1px 0;
}
.yellow-btn.icon-style:hover,
.black-outline-btn.icon-style:hover {
  color: var(--white-color);
}
.icon-style {
  border-radius: 35px;
  padding: 6px 6px 6px 20px;
  font-family: var(--heading-font);
  font-size: 21px;
  min-width: 190px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--ease);
}
.icon-style:hover {
  background-position: right -1px center;
}
.icon-style i {
  width: 45px;
  min-width: 45px;
  height: 45px;
  background: linear-gradient(144deg, #f49d27 0%, #d97f03 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 20px;
  font-size: 18px;
  color: var(--white-color);
}
.pink-btn.icon-style i {
  background: linear-gradient(144deg, #ffffff 0%, #ffffff 100%);
  color: var(--black-color);
}
.icon-style span {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}
.bp-icon img {
  -webkit-animation: zooming 2s infinite linear;
  width: 44px;
}
.navbar-collapse {
  justify-content: end;
}
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 101;
  background-color: #ff9408;
}
header:after {
  content: "";
  width: 100%;
  height: 136px;
  background-image: url("/lp2/image/upload/liquid_n5pkpd.webp");
  position: absolute;
  background-position: center top;
  top: 85px;
  z-index: -1;
}
header.scrolled:after {
  top: -200%;
}
.navbar {
  transition: var(--ease);
}
.main-banner {
  padding: 280px 0 190px;
  background-color: #250c26;
  background-image: linear-gradient(
    180deg,
    rgba(254, 221, 18, 1) 0%,
    rgba(245, 103, 61, 1) 100%
  );
  background-size: cover;
  mask-image: url(https://res.cloudinary.com/dvmnlnikb/image/upload/v1743630785/Group1000005826_g7bdfx.webp);
  mask-mode: alpha;
  mask-repeat: no-repeat;
  mask-size: 100%;
  mask-position: bottom center;
  position: relative;
  overflow: hidden;
}
.pos-abs {
  position: absolute;
}
.biglogo {
  right: 0;
  bottom: 4px;
  width: 41%;
}
.main-banner .bannerkid {
  position: absolute;
  left: 580px;
  bottom: -180px;
  width: 425px;
}
.bannerbar {
  width: 100%;
  position: absolute;
  bottom: 0;
}
.main-banner .b-fimg {
  position: absolute;
  width: 440px;
  bottom: -70px;
  right: 27%;
}
.main-banner .content-side h1 {
  font-size: 56px;
  line-height: 56px;
  text-transform: uppercase;
}
.main-banner .form-box {
  max-width: 500px;
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 50px 40px;
  float: right;
  color: #000;
  border: 3px solid #000;
  position: relative;
  z-index: 3;
}
.main-banner .form-box h3 {
  font-size: 40px;
  line-height: 40px;
}
.main-banner .form-box .form-control {
  border-color: #000;
  border-radius: 0;
  border-width: 0 0 1px 0;
}
.main-banner .btn-get-started {
  margin: 13px 0 0;
}
.main-banner .row {
  position: relative;
  z-index: 2;
  align-items: center;
}
.main-banner .container {
  position: relative;
}
.main-banner .content-side {
  padding: 0 17% 0 0;
  position: relative;
}
.main-banner .dual-btn {
  margin: 30px 0 40px;
}
.main-banner .content-side p {
  font-size: 18px;
}
.bannerbook02 {
  right: 510px;
  top: -20px;
  width: 180px;
}
.bannerbook01 {
  right: 0;
  top: 48%;
  width: 120px;
}
.banner-splash-3 {
  bottom: 30px;
  left: 390px;
}
.banner-splash-2 {
  bottom: 60px;
  left: -61px;
}
.banner-splash-1 {
  right: 6%;
  width: 140px;
  top: -64px;
}
.form-holder > span {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f29411;
  max-width: 500px;
  right: 28px;
  bottom: -16px;
  z-index: 1;
  border: 3px solid #000;
  border-radius: 20px;
}
.want-sec .content-side {
  padding-right: 45px;
}
.want-sec .container {
  position: relative;
}
.want-sec .pencil {
  position: absolute;
  top: -80px;
  left: 46%;
}
.want-sec {
  padding: 130px 0 80px;
}
.want-sec .img-holder {
  padding-left: 95px;
  position: relative;
}
.want-sec .img-holder span {
  position: absolute;
}
.want-sec .img-holder img {
  position: relative;
  z-index: 3;
}
.pink-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: #ff9408;
  border: 2px solid #000;
  top: -40px;
  left: 20%;
}
.yellow-circle {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background-color: #fee22b;
  border: 2px solid #000;
  top: 30px;
  left: 17%;
}
.want-sec .splash-kids {
  width: 130px;
  position: absolute !important;
  right: 90px;
  bottom: -78px;
}
.want-sec p {
  margin-bottom: 30px;
}
.pur-sec {
  padding: 90px 0 10px;
  position: relative;
  background-color: #250c26;
  color: var(--white-color);
  overflow: hidden;
}
.globe-2 {
  right: 0;
  top: 40%;
}
.globe-1 {
  left: 0;
  top: 0;
  width: 110px;
  z-index: 4;
}
.clouds {
  top: -100px;
  width: 100%;
}
.pur-sec strong {
  text-transform: uppercase;
  font-size: 20px;
  display: block;
  margin: 18px 0 10px;
}
.pur-sec ul {
  column-count: 2;
  list-style: disc;
  padding: 0 0 0 20px;
  max-width: 600px;
}
.pur-sec li {
  margin: 0 0 10px;
}
.create-sec {
  padding: 80px 0 60px;
  position: relative;
}
.box-pencil {
  left: 0;
  top: 30%;
}
.globe-box {
  right: 4%;
  top: 0;
}
.create-sec .cen-head {
  margin: 0 auto 70px;
}
.cs-box {
  border: 2px solid #000;
  text-align: center;
  padding: 40px 30px;
  border-radius: 10px;
  transition: var(--ease);
  margin: 0 0 20px;
  min-height: 350px;
}
.cs-icon img {
  width: 50px;
  margin: 0 auto 17px;
}
.cs-box:hover {
  background-color: var(--dpurple-color);
  color: var(--white-color);
}
.csb-1 {
  background-color: #f5f2e9;
}
.csb-2 {
  background-color: #f295144d;
}
.csb-3 {
  background-color: #e9f1f5;
}
.csb-4 {
  background-color: #fff3e2;
}
.cs-area button {
  width: 35px;
  height: 55px;
}
.cs-area .slick-arrow img {
  width: 100%;
}
.cs-area button:before {
  content: none;
}
.cs-area .slick-slide {
  margin: 70px 0 30px 0;
  padding: 0 15px;
}
.cs-text h4 {
  text-transform: uppercase;
}
.emark-sec {
  overflow: hidden;
  position: relative;
  margin: -180px 0 0;
  padding: 0 0 50px;
  z-index: 3;
}
.covers-slider {
  pointer-events: none;
  transform: rotate(-5deg) scale(1.1);
}
.covers-slider .img-holder {
  padding: 80px 15px 80px;
}
.covers-slider img {
  width: 100%;
}
.pink-sec {
  position: relative;
  background-color: #f49b24;
  padding: 60px 0;
  border-width: 4px 0 4px 0;
  border-style: solid;
}
.pink-sec .sec-head {
  color: #814c08;
}
.pink-sec .form-control {
  background: none;
  border-width: 0 0 2px 0;
  border-radius: 0;
  border-color: var(--white-color);
  box-shadow: none;
}
.pink-sec .form-control::placeholder {
  color: var(--white-color);
}
.t-bar:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 13px;
  background-color: #bb6f04;
  left: 0;
}
.t-bar:before {
  content: "";
  position: absolute;
  top: 0;
  width: 13px;
  height: 100%;
  background-color: #d39644;
  left: 0;
}
.b-bar:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 13px;
  background-color: #895816;
  left: 0;
}
.b-bar:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 13px;
  height: 100%;
  background-color: #895816;
  right: 0;
}
.kid-sitting {
  padding: 70px 0 70px;
}
.owl-sec {
  padding: 20px 0 0;
  background-color: #250c26;
  background-image: url(https://res.cloudinary.com/dvmnlnikb/image/upload/v1743630797/letters-bg_bcygey.webp);
  background-size: cover;
  color: var(--white-color);
  mask-image: url(https://res.cloudinary.com/dvmnlnikb/image/upload/v1743630804/oval_pqj3vp.webp);
  mask-mode: alpha;
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  mask-position: center;
  position: relative;
  overflow: hidden;
}
.owl-sec .content-side {
  margin: 110px 0 0;
}
.owl-sec .img-holder {
  margin: 0 0 -10px;
}
.owl-sec p {
  margin: 0 0 30px;
}
.portfolio-sec {
  padding: 80px 0;
}
.portfolio-box {
  margin: 60px 0 0;
}
.portfolio-box .img-holder {
  margin: 0 0 30px;
}
.portfolio-box img {
  filter: drop-shadow(22px 5px 12px #00000038);
  max-width: 240px !important;
  margin: 0 auto;
  display: block;
}
.dpink-sec {
  position: relative;
  background-color: #db8919;
  padding: 60px 0;
  border-width: 4px 0 4px 0;
  border-style: solid;
}
.dpink-sec .sec-head {
  color: var(--white-color);
}
.dpink-sec .t-bar:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 13px;
  background-color: #f49d29;
  left: 0;
}
.dpink-sec .t-bar:before {
  content: "";
  position: absolute;
  top: 0;
  width: 13px;
  height: 100%;
  background-color: #f49d29;
  left: 0;
}
.dpink-sec .b-bar:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 13px;
  background-color: #a76c1d;
  left: 0;
}
.dpink-sec .b-bar:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 13px;
  height: 100%;
  background-color: #a76c1d;
  right: 0;
}
.dpink-sec .in-a-row {
  justify-content: center;
  display: flex;
  gap: 35px;
}
.dpink-sec > img {
  position: absolute;
  right: 0;
  width: 210px;
  top: -170px;
  z-index: 5;
}
.company-logo {
  background-color: #101010;
  padding: 10px 0 18px;
}
.company-logo-img .slick-track {
  display: flex;
  align-items: center;
  filter: brightness(0) invert(1);
}
.company-logo p {
  padding: 20px 0 0;
  color: #fff;
}
.company-logo-img {
  margin: 0 !important;
}
.company-logo-img img {
  max-width: 162px;
  margin: 0 auto;
}
.talk-with .row {
  position: relative;
  z-index: 2;
}
.talk-with .boy-read {
  position: absolute;
  bottom: -44px;
  left: 50%;
  transform: translateX(-50%);
  width: 390px;
}
.talk-with .container {
  position: relative;
}
.talk-with {
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}
.b-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  background-color: #fee22b;
  border: 2px solid var(--black-color);
  border-radius: 50%;
  right: 26%;
  top: 13%;
}
.tf-holder > span {
  position: absolute;
  width: 100%;
  height: 80%;
  background-color: #e77c15;
  max-width: 500px;
  right: 28px;
  bottom: 100px;
  z-index: 1;
  border: 3px solid #000;
  border-radius: 20px;
}
.talk-with .ryt-book-1 {
  position: absolute;
  right: 0;
  top: 0;
  width: 220px;
}
.talk-with .lft-book-1 {
  position: absolute;
  left: 0;
  bottom: 14%;
  width: 180px;
}
.talk-with .sec-head {
  width: 500px;
  margin: 50px 0 20px;
}
.talk-with .sec-head + p {
  width: 450px;
}
.talk-form {
  width: 500px;
  background: var(--white-color);
  padding: 40px 40px;
  border-radius: 20px;
  float: right;
  margin: 0 0 120px;
  border: 3px solid var(--dpurple-color);
  position: relative;
  z-index: 3;
}
.talk-form h4 {
  font-size: 40px;
}
.talk-form p {
  margin: 0 0 22px;
}
.talk-form .form-control {
  border-radius: 0;
  border-width: 0 0 1px 0;
  background: transparent;
  box-shadow: none !important;
}
.talk-form .form-control::placeholder {
}
.lf-icons {
  position: fixed;
  left: 15px;
  bottom: 15px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lf-icons .float-call {
  background-color: #ffc703;
}
.float i {
  width: 45px;
  height: 45px;
  background: linear-gradient(144deg, #f39515 0%, #bf791b 100%);
  opacity: 0.9;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
}
.testio-sec {
  padding: 60px 0 60px;
}
.testio-sec .sec-head {
  margin-bottom: 50px;
}
.tes-box {
  border-radius: 15px;
  padding: 40px 40px;
  position: relative;
  border: 2px solid #4a0059;
  text-align: center;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--white-color);
}
.testi-slider .slick-slide {
  padding: 25px 10px;
  transition: var(--ease);
}
.testi-slider .slick-slide strong {
  font-weight: normal;
  font-size: 22px;
  text-transform: uppercase;
}
.tes-box ul i {
  color: gold;
}
.tes-box ul {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}
.t-txt p {
  font-size: 18px;
}
.tes-box .t-mark {
  filter: invert(1);
  position: absolute;
  opacity: 0.5;
  bottom: 10px;
  right: 10px;
  width: 120px;
}
.t-icon {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 320px;
  opacity: 0.2;
}
.grad-bg {
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 36%,
    rgb(227 182 120) 100%
  );
}
.ts-outer {
  position: relative;
}
.ts-outer > span {
  position: absolute;
  width: 96%;
  height: 100%;
  border-radius: 15px;
  bottom: -10px;
  right: -10px;
  border: 2px solid var(--dpurple-color);
}
.testi-slider .slick-slide:nth-of-type(3n + 1) .ts-outer > span {
  background-color: #37b5e7;
}
.testi-slider .slick-slide:nth-of-type(3n + 2) .ts-outer > span {
  background-color: #e77c15;
}
.testi-slider .slick-slide:nth-of-type(3n + 3) .ts-outer > span {
  background-color: #f49c25;
}
.testi-slider .slick-slide {
  transform: scale(0.9);
}
.testi-slider .slick-center {
  transform: scale(1.06);
}
.book-carousel {
  padding: 70px 0 0;
  text-align: center;
}
.book-carousel .wrap {
  position: relative;
  z-index: 100;
  width: 100%;
  height: 100%;
  padding: 0 60px;
  overflow: hidden;
}
.book-carousel .wrap:after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.book-slider {
  position: relative;
  z-index: 200;
  padding: 0 0px;
  margin: 5rem auto 60px;
  max-width: 800px;
  width: 100%;
}
.book-carousel .slick-arrow {
  z-index: 300;
}
.book-carousel .slick-prev {
  left: -50px;
}
.book-carousel .slick-next {
  right: -50px;
}
.book-carousel .item.slick-slide {
  width: 400px;
  height: 566px !important;
  transition: transform 0.4s;
  position: relative;
}
.book-carousel .slick-slide:after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: transform 0.4s;
}
.book-carousel .item.slick-slide {
  transform: scale(0.7) translate(640px);
}
.book-carousel .item.slick-slide.slick-center + .slick-slide {
  transform: scale(0.8) translate(-250px);
  z-index: 10;
}
.book-carousel
  .item.slick-slide.slick-center
  + .slick-slide
  + .item.slick-slide {
  transform: scale(0.7) translate(-640px);
  z-index: 5;
}
.book-carousel .item.slick-slide.slick-active {
  transform: scale(0.8) translate(250px);
}
.book-carousel .item.slick-slide.slick-center {
  transform: scale(1);
  z-index: 30;
}
.book-carousel .slick-center:after {
  opacity: 0;
}
.book-carousel .moon-bg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  max-width: 1800px;
  width: 100%;
}
.book-slider button:before {
  content: none;
}
.book-slider button {
  color: #000 !important;
  background-color: #fff;
  box-shadow: 0 4px 9px #00000061;
  height: 69px;
  width: 69px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  transition: all 350ms ease-in-out !important;
}
.book-slider button:hover {
  color: #fff !important;
  background-color: #000;
}
.book-slider button i {
  transition: none;
}
.counter {
  margin-top: -1px;
  padding: 18px 0;
  background-color: #000;
}
.counter-number {
  font-weight: 400;
  font-family: "Space Grotesk";
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin: 1.5%;
  font-size: 64px;
  color: #ffffff;
  vertical-align: middle;
}
.counter-p p {
  color: #fff;
  text-align: center;
  font-size: 16px;
}
.book-cta-two {
  background-image: url(../images/OwlPublishers-Banner.webp);
  background-repeat: no-repeat;
  background-position: center;
  padding: 140px 0 101px 0;
  background-size: cover;
}
.book-cta-two h3 {
  color: #fff;
  font-size: 44px;
}
.book-cta-two p {
  color: #fff;
}
.banner-form-two h3 {
  text-align: center;
}
.banner-form-two {
  padding: 50px 0 50px 0;
  background-image: url(../images/orange-pat.webp);
  background-color: #f27b5f;
  background-position: center;
}
.why-choose {
  padding: 70px 0;
}
.choose-heading h3 {
  font-size: 33px;
}
.head-why-choose p {
  padding-left: 40px;
}
.choose-inner-head p {
  padding: 0;
  margin-top: 20px;
}
.choose-inner-head a {
  font-weight: bold;
}
.choose-icon-text-1 {
  background-color: #fff;
  border-radius: 70%;
  height: 75px;
  width: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.choose-icon-text-1 img {
  max-width: 50px;
}
.why-choose-h {
  margin-bottom: 55px;
}
.company-logo-second h3 {
  color: #fff;
  font-size: 40px;
  margin-left: 54px;
}
.company-logo-second {
  background-color: #101010;
  padding: 17px 0;
}
.company-logo-second img {
  max-width: 162px;
  height: 100px;
  margin-left: 13px;
}
.faq-sec .row {
  justify-content: end;
}
.faq-sec .accordion-button:not(.collapsed) {
  color: #000;
  font-weight: 600;
  background: none;
  border-bottom: 3px solid #c4c7ee;
}
.faq-sec .accordion-button {
  box-shadow: none !important;
  padding-left: 0;
}
.faq-sec .sec-head {
  margin-bottom: 30px;
}
.faq-sec .accordion-body {
  padding-left: 0;
}
.faq-sec {
  padding: 60px 0;
  position: relative;
}
.fimg {
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background-image: url(../images/image_here.webp);
  background-size: cover;
  background-position: center right;
}
footer {
  background-color: #000;
  color: #fff;
}
.contact-details li a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-top .footer-logo img {
  max-width: 190px;
}
footer h5 {
  font-size: 25px;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.payment-logos ul {
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 0;
}
.footer-bottom .lets-work {
  font-family: var(--heading-font);
  font-size: 125px;
  line-height: 120px;
}
.copy-r {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.copy-r p {
  margin: 0;
}
.ftr-copy ul {
  margin: 0;
  display: flex;
  justify-content: end;
}
.ftr-copy ul a {
  color: #fff;
}
.ftr-copy li:last-child:before {
  content: "|";
  margin: 0 15px 0;
}
.contact-details a {
  color: #fff;
}
.contact-details i {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-flex;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(
    144deg,
    rgb(243 150 24) 0%,
    rgb(242 147 15) 100%
  );
  min-width: 35px;
}
.contact-details li {
  margin: 0 0 18px;
}
.footer-top {
  padding: 30px 0;
  border-bottom: 1px solid #272727;
}
.footer-bottom .row > div:last-child {
  border-left: 1px solid #272727;
}
.ftr-copy {
  border-top: 1px solid #272727;
  padding: 0px 0;
}
.ftr-copy .row > div:last-child {
  border-left: 1px solid #272727;
}
.ftr-copy .row {
  align-items: center;
}
.ftr-copy .row > div {
  padding-top: 15px;
  padding-bottom: 15px;
}
.footer-bottom .row > div {
  padding-top: 30px;
  padding-bottom: 50px;
}
.footer-bottom h5 {
  margin: 0 0 30px;
}
.num-boxes:after {
  content: "";
  background-color: #542862;
  width: 100px;
  height: 100px;
  right: -50px;
  top: 10%;
  position: absolute;
  border-radius: 50%;
}
.num-boxes:before {
  content: "";
  background-color: #542862;
  width: 180px;
  height: 180px;
  left: -90px;
  bottom: 10%;
  position: absolute;
  border-radius: 50%;
}
.main-banner .ryt-form {
  background-color: #b84dc59e;
  border-radius: 15px;
  padding: 50px 60px;
  backdrop-filter: blur(4px);
  box-shadow: 0px 0px 0px 3px #fff;
  background-size: 100%;
  background-position: right top;
}
.main-banner .ryt-form h4 {
  font-family: "Space Grotesk";
  font-size: 28px;
  margin: 0 0 30px;
  color: #fff;
}
.main-banner .ryt-form input,
.main-banner .ryt-form select,
.main-banner .ryt-form textarea {
  border-radius: 0;
  border-color: #000;
  padding: 12px 15px;
  font-size: 14px;
}
.main-banner .ryt-form button {
  font-size: 16px;
  font-weight: normal;
  min-width: 150px;
  margin: 0 auto;
  display: block;
}
.inner-head {
  text-align: center;
  padding: 200px 0 100px;
  background-color: #31163a;
  overflow: hidden;
  position: relative;
  color: var(--white-color);
}
.inner-head h1 {
  font-size: 64px;
  font-family: var(--secondary-font);
  text-transform: capitalize;
}
.inner-head:after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background-image: linear-gradient(
    145deg,
    rgba(241, 129, 73, 1) 0%,
    rgba(245, 102, 171, 1) 100%
  );
  border-radius: 50%;
  left: 50px;
  top: -130px;
}
.inner-head:before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: linear-gradient(
    145deg,
    rgba(213, 87, 197, 1) 0%,
    rgba(97, 46, 198, 1) 100%
  );
  border-radius: 50%;
  right: 90px;
  bottom: -120px;
}
.know-sec {
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}
.know-sec .img-holder img {
  max-width: 80%;
  margin: 0 auto;
  display: block;
}
.know-sec:after {
  content: "";
  position: absolute;
  top: 50px;
  right: -50px;
  background-image: linear-gradient(
    145deg,
    rgba(213, 87, 197, 1) 0%,
    rgba(97, 46, 198, 1) 100%
  );
  border-radius: 50%;
  height: 100px;
  width: 100px;
}
.know-sec:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100px;
  background-image: linear-gradient(
    145deg,
    rgba(241, 129, 73, 1) 0%,
    rgba(245, 102, 171, 1) 100%
  );
  border-radius: 50%;
  height: 200px;
  width: 200px;
}
.know-sec .sec-head {
  margin: 0 0 20px;
}
.know-sec .button-header {
  margin-top: 40px;
}
.once-sec {
  margin: 30px 0 0;
  padding: 80px 0;
}
.once-sec .img-holder img {
  max-width: 80%;
}
.once-sec .sec-head {
  margin: 0 0 20px;
}
.once-sec .button-header {
  margin-top: 40px;
}
.cta-50 {
  position: relative;
  background-color: #542862;
  color: #fff;
  margin: 60px 0 0;
  z-index: 1;
}
.cta-50 .img-holder img {
  width: 100%;
  margin: -70px 0;
}
.dream-sec {
  padding: 130px 0 80px;
}
.dream-sec .sec-head {
  margin-bottom: 50px;
}
.dream-sec h4 {
  font-size: 28px;
  font-family: "Satoshi-Bold";
  margin: 0 0 30px;
}
.dream-sec ul span {
  background-color: #542862;
  color: #fff;
  width: 43px;
  position: absolute;
  left: 0;
  top: 0;
  height: 43px;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
}
.dream-sec li {
  position: relative;
  padding: 0 0 0 70px;
}
.dream-sec .ryt-form {
  background-color: #542862;
  border-radius: 15px;
  padding: 50px 60px;
  backdrop-filter: blur(6px);
  box-shadow: 0px 0px 0px 3px #fff;
  background-image: url(../images/Frame2147223396.webp);
  background-size: 100%;
  background-position: right top;
  max-width: 90%;
}
.dream-sec .ryt-form h4 {
  color: #fff;
}
.dream-sec .ryt-form input,
.dream-sec .ryt-form select {
  border-radius: 0;
  border-color: #000;
  padding: 12px 15px;
  font-size: 14px;
  background-color: #fffffff2;
}
.dream-sec .ryt-form button {
  font-size: 16px;
  font-weight: normal;
  min-width: 150px;
  margin: 0 auto;
  display: block;
}
.services-banner h1 {
  font-family: "Space Grotesk";
  font-size: 51px;
}
.services-banner .container {
  min-height: auto;
}
.services-banner .container > .row > div {
  height: auto;
  padding-top: 170px;
  padding-bottom: 40px;
}
.ss-01 .img-holder img {
  width: 80%;
  margin: 0 auto;
  display: block;
}
.ss-01 {
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
  background-color: #fefbf6;
}
.ss-01 .sec-head {
  margin: 0 0 20px;
}
.ss-01 .button-header {
  margin-top: 40px;
}
.ss-01 .row {
  align-items: center;
}
.ser-list {
  background-color: #f6f6f6;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.ser-list .sec-head {
  margin: 0 0 70px;
}
.ser-box {
  display: flex;
  gap: 15px;
  margin: 0 0 30px;
}
.ser-box span {
  display: block;
  font-family: "Satoshi-Bold";
  font-size: 20px;
  margin: 0 0 5px;
  color: #4d4d4d;
}
.sb-icon img {
  width: 55px;
}
.sb-icon {
  width: 74px;
  height: 74px;
  min-width: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 10px;
  overflow: hidden;
  background-color: #f3f3f0;
}
.ser-list:after {
  content: "";
  position: absolute;
  right: -220px;
  top: 40px;
  width: 350px;
  height: 350px;
  background-image: linear-gradient(
    145deg,
    rgba(213, 87, 197, 1) 0%,
    rgba(97, 46, 198, 1) 100%
  );
  border-radius: 50%;
}
.ser-list:before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 250px;
  height: 250px;
  background-image: linear-gradient(
    145deg,
    rgba(241, 129, 73, 1) 0%,
    rgba(245, 102, 171, 1) 100%
  );
  border-radius: 50%;
}
.blue-sec {
  background-color: #31163a;
  color: #fff;
  padding: 80px 0 0;
}
.blue-sec .img-holder img {
  width: 100%;
}
.blue-sec .button-header {
  margin-top: 40px;
  margin-bottom: 60px;
}
.blue-sec .sec-head {
  margin-bottom: 20px;
}
.coffee .img-holder img {
  width: 100%;
}
.coffee .sec-head {
  margin: 0 0 20px;
}
.coffee .button-header {
  margin-top: 40px;
}
.coffee {
  padding: 80px 0;
}
.type-writer .img-holder img {
  max-width: 80%;
  display: block;
  margin: 0 auto;
}
.type-writer .sec-head {
  margin: 0 0 20px;
}
.type-writer .button-header {
  margin-top: 40px;
}
.type-writer {
  padding: 70px 0;
}
.type-writer {
  background: linear-gradient(
    90deg,
    rgba(255, 237, 237, 1) 0%,
    rgba(255, 237, 237, 1) 50%,
    #f1853c 50%,
    rgb(242 138 70 / 76%) 100%
  );
  padding: 50px 0;
}
.ts-box ul {
  display: flex;
  font-size: 14px;
  gap: 2px;
  color: #ffc703;
  margin: 0 0 14px;
}
.ts-box {
  background-color: #f4f4f4;
  border-radius: 10px;
  padding: 30px;
  margin: 0 10px;
}
.tsb-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-slider {
  margin: 30px 0 0;
}
.tsb-name p {
  font-size: 14px;
  margin: 0;
}
.tsb-name span {
  font-weight: 600;
}
.testi-sec {
  padding: 0 0 60px;
}
.quotepop .modal-body {
  padding: 0;
  position: relative;
}
.quotepop .modal-body .btn-close {
  filter: invert(1);
  background-color: #fff;
  opacity: 1;
  border-radius: 50%;
  position: absolute;
  right: -17px;
  top: -20px;
  width: 30px;
  height: 30px;
  z-index: 2;
}
.quotepop .modal-dialog {
  max-width: 480px;
}
.git-image .img-side {
  background-color: #b1c7ff;
  background-image: url(../images/women-writing.webp);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100%;
}
.git-image .con-side {
  background-image: linear-gradient(
    180deg,
    rgba(254, 221, 18, 1) 0%,
    rgba(246, 104, 62, 1) 100%
  );
  padding: 40px 40px;
  border-radius: 15px;
  border: 3px solid #000;
}
.quotepop .row {
  position: relative;
}
.quotepop .row:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 15px;
  border: 3px solid #000;
  z-index: -1;
  background: #ef7e00;
  left: -15px;
  bottom: -15px;
}
.git-image h2 {
  font-size: 38px;
  margin: 0;
  font-family: var(--heading-font);
  text-transform: uppercase;
  line-height: 38px;
}
.f-head p {
  font-family: var(--heading-font);
  font-size: 26px;
  text-transform: uppercase;
}
.f-head {
  padding-right: 100px;
  position: relative;
}
.quotepop .con-side:after {
  position: absolute;
  right: 43px;
  top: 33px;
  content: "";
  background-image: url(https://res.cloudinary.com/dvmnlnikb/image/upload/v1743100940/badge_ds8e6e.webp);
  background-repeat: no-repeat;
  width: 85px;
  height: 85px;
  background-size: 100%;
}
.quotepop {
  background: #000000c2;
  backdrop-filter: blur(4px);
}
.git-image .con-side input,
.git-image .con-side textarea {
  width: 100%;
  border-radius: 0;
}
.form-select {
  border-radius: 0;
}
.iti {
  width: 100%;
}
.git-image .white-btn:hover {
  border-color: #fff;
  color: #fff;
}
.contact-area {
  padding: 70px 0;
}
.contact-area .sec-head {
  margin: 0 0 70px;
}
.contact-area .ryt-form {
  padding: 60px 70px;
  background-color: #4a27bd;
  border-radius: 5px;
}
.contact-area .ryt-form h4 {
  color: #fff;
  text-align: center;
  font-size: 34px;
  margin: 0 0 30px;
  font-family: var(--secondary-font);
}
.contact-area .ryt-form input,
.contact-area .ryt-form textarea {
  border-radius: 0;
  background-color: #ffffffd9;
  border: 1px solid #fff;
  padding: 14px 10px;
}
.contact-area .ryt-form button {
  min-width: 150px;
  margin: 0 auto;
  display: block;
  font-weight: 400;
}
.cp-box {
  width: 270px;
  height: 160px;
  background-color: #e3e3e3;
  text-align: center;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
}
.cp-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}
.cp-box i {
  font-size: 25px;
  margin: 0 0 15px;
  color: #4a27bd;
}
.cp-box p {
  margin: 0;
  font-family: var(--secondary-font);
  font-size: 20px;
  font-weight: bold;
}
.org-sec {
  padding: 15px 0;
  position: relative;
}
.org-sec p {
  margin: 0;
}
.books-icons img {
  max-width: 140px;
  width: 100%;
}
.books-icons .slick-slide {
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.bannerbook03 {
  position: absolute;
  left: 0;
  top: -240px;
  width: 130px;
}
.navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}
.mega-drop {
  position: unset !important;
}
.mega-drop .dropdown-menu {
  width: 100%;
  left: 0;
  top: 60px;
  padding: 45px 0 0;
  background: none;
  border: none;
}
.single-drop .dropdown-menu {
  padding: 35px 0 0;
  background: none;
  border: none;
}
.mega-link {
  background-color: #fffffff7;
  padding: 15px 5px;
  column-count: 4;
  border: 1px solid #00000024;
  border-radius: 9px;
}
.mega-link a {
  padding: 8px 25px 8px 35px;
  display: block;
  border-bottom: 1px solid #0000001c;
  position: relative;
  transition: var(--ease);
}
.mega-link a:hover {
  background-color: #eaeaea;
}
.mega-link a:before {
  content: "\f14a";
  position: absolute;
  left: 10px;
  font-family: fontawesome;
  color: #4a27bd;
}
.single-drop .mega-link {
  column-count: unset;
  min-width: 250px;
}
.books .book {
  position: relative;
}
.books .book .best-badge img {
  width: 100%;
}
.books .book .best-badge {
  max-width: 120px;
  position: absolute;
  top: -45px;
  right: 10px;
}
.books .book .book-hd {
  max-width: 80%;
  margin-top: 50px;
}
.service-circle .circle strong {
  text-align: center;
  display: block;
  margin: 0 0 15px;
}
.book-cta-two .check-list {
  color: #fff;
}
.check-list li {
  position: relative;
  padding: 0 0 0 25px;
}
.check-list li:before {
  content: "\f058";
  font-family: fontawesome;
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 4px;
}
.check-list {
  margin: 0 0 20px;
}
.balls-icons {
  position: relative;
  overflow: hidden;
}
.balls-icons:before {
  content: "";
  background-image: linear-gradient(
    145deg,
    rgba(241, 129, 73, 1) 0%,
    rgba(245, 102, 171, 1) 100%
  );
  width: 180px;
  height: 180px;
  left: -90px;
  bottom: 10%;
  position: absolute;
  border-radius: 50%;
}
.balls-icons:after {
  content: "";
  background-image: linear-gradient(
    145deg,
    rgba(213, 87, 197, 1) 0%,
    rgba(97, 46, 198, 1) 100%
  );
  width: 100px;
  height: 100px;
  right: -50px;
  top: 10%;
  position: absolute;
  border-radius: 50%;
}
.choose-inner-head h5 {
  font-family: "Space Grotesk";
  margin: 20px 0 -10px;
}
.cta-50 .sec-head {
  margin: 0 0 30px;
}
.black-outline-btn {
  border: 2px solid var(--text-color);
}
.ser-box .black-outline-btn {
  padding: 5px 20px 8px;
  font-size: 16px;
}
.blue-sec .row {
  align-items: end;
}
.ser-list .container {
  position: relative;
  z-index: 1;
}
.cta-form .btn-style {
  width: 100%;
  text-align: center;
  padding: 10px 0;
  margin: -1px 0 0;
}
.cta-form .form-control {
  padding: 9px 10px;
}
.balls-icons .container {
  position: relative;
  z-index: 1;
}
.num-boxes .choose-inner-head {
  background: var(--white-color);
}
.num-boxes .choose-cirle-txt {
  color: var(--black-color);
}
.num-boxes .choose-inner-head h5 {
  color: var(--black-color);
}
.bt-slide-box {
  position: absolute;
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  bottom: 70px;
  right: -80px;
  padding: 20px 20px;
  max-height: 211px;
  overflow: hidden;
}
.bt-slide-box img {
  width: 35px;
  border-radius: 50%;
}
.bt-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 10px;
}
.bt-top ul {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #fea500;
  margin: 0;
}
.bt-botton p {
  font-size: 14px;
  margin: 0;
  text-align: justify;
}
.col-no-3 {
  padding: 10px;
}
.custom-arrows .slick-arrow {
  width: 50px;
  height: 50px;
  display: block;
  color: #fff;
  background-image: linear-gradient(
    145deg,
    rgba(213, 87, 197, 1) 0%,
    rgba(97, 46, 198, 1) 100%
  );
  text-align: center;
  font-size: 30px;
  cursor: pointer;
  line-height: 47px;
}
.custom-arrows .slick-arrow:hover {
  background-image: linear-gradient(
    145deg,
    rgba(241, 129, 73, 1) 0%,
    rgba(245, 102, 171, 1) 100%
  );
}
.custom-arrows {
  display: flex;
  justify-content: end;
  gap: 11px;
}
.bi-column .container {
  position: relative;
  z-index: 1;
}
.faq-sec .img-holder img {
  width: 100%;
}
.range-slider {
  width: 130%;
}
.range-slider:before {
  position: absolute;
  right: 0;
  top: 0;
  width: 180px;
  height: 100%;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(49, 22, 58, 0) 0%,
    rgba(49, 22, 58, 1) 100%
  );
  z-index: 9;
}
.range-slider.owl-theme .owl-dots .owl-dot.active span {
  background: #fea500;
  width: 34px;
}
.range-slider.owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
}
.count-plus:after {
  content: "+";
}
.count-m:after {
  content: "M+";
}
.navbar-brand img {
  max-width: 230px;
  background: #0000007a;
  padding: 7px 10px;
  border-radius: 8px;
}
.footer-nav-links a {
  display: block;
  line-height: 21px;
}
.footer-nav-links li {
  margin: 0 0 6px;
}
.know-sec .container {
  position: relative;
}
.faq-sec .row {
  justify-content: end;
  align-items: center;
}
.pack-btns .icon-style {
  min-width: auto;
  padding: 5px 5px 5px 0;
}
.phone-packs {
  display: none;
}
.main-banner .form-box .icon-style {
  border-color: #000;
}
.main-banner .form-box .icon-style:hover {
  color: #fff;
}
.rm-btn {
  margin: 0 0 60px;
  text-align: center;
}
.phone-btns {
  display: none;
}
.plogos {
  display: block;
  gap: 15px;
}
.plogos img {
  width: 100%;
}
.plogos li {
  width: 22%;
  float: left;
  padding: 0 10px;
  filter: brightness(0) invert(1);
  margin: 0 0 10px;
  min-height: 57px;
}
.quotepop .owl-right {
  position: absolute;
  left: -110px;
  top: -80px;
  width: 150px;
  z-index: 9;
}
.white-btn.icon-style:hover {
  color: #fff;
}
.thanks-page .main-banner {
  min-height: 100vh;
}
.talk-form .form-control {
}
.checks-info li:before {
  content: "\f058";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 13px;
  color: #eb9802;
}
.checks-info li {
  position: relative;
  padding-left: 24px;
  margin: 0 0 10px;
}
.white-heading h3 {
  font-size: 55px;
}
.ebook-publish .sec-head h2 {
  font-size: 70px;
}
.phone-heading {
  display: none;
}
.img-holder img {
  width: 100%;
}
.main-banner ul {
  list-style: disc;
  padding: 0 0 0 20px;
}
.sec-head span {
  font-weight: 600;
}
.phone-div {
  display: none;
}
.country {
  text-transform: uppercase;
}
.disclaimer {
  background-color: #f29311;
  color: var(--white-color);
  padding: 6px 0;
}
.disclaimer p {
  font-size: 14px;
  text-align: center;
}
.va-box iframe {
  width: 100%;
}
@media (min-width: 1400px) {
  .container {
    max-width: 1480px !important;
  }
}
@media only screen and (max-width: 1399px) {
  header ul.navbar-nav {
    gap: 10px;
  }
  header .navbar-collapse {
    gap: 10px;
  }
  .navbar-brand img {
    max-width: 150px;
  }
  .navbar-nav .nav-link {
    font-size: 16px;
  }
  .button-header .btn-get-started {
    font-size: 16px;
    padding: 15px 10px 15px 10px;
  }
  .heading-banner h3 {
    font-size: 46px;
  }
  .main-banner .ryt-form h4 {
    font-size: 26px;
  }
  .main-banner .b-fimg {
    right: 34%;
  }
  .main-banner .content-side h1 {
    font-size: 60px;
    line-height: 62px;
  }
  .main-banner .b-fimg {
    right: 34%;
    width: 400px;
  }
  .sec-head h2 {
    font-size: 60px;
    line-height: 60px;
  }
  .pack-btns .icon-style i {
    margin-left: 5px;
    width: 30px;
    min-width: 30px;
    height: 30px;
  }
  .pack-btns .icon-style {
    font-size: 20px;
  }
  .pack-box {
    padding: 30px 30px;
  }
  .best-place .ryt-owl-1 {
    width: 220px;
  }
  .best-place .lft-owl-1 {
    width: 160px;
  }
  .ebook-publish {
    padding: 14px 0;
  }
  .steps .nav-link {
    width: 100%;
  }
  .footer-bottom .lets-work {
    font-size: 105px;
    line-height: 100px;
  }
  .dp-txt {
    font-size: 21px;
  }
  header:after {
    top: 85px;
  }
  .main-banner {
    padding: 190px 0 190px;
    mask-size: 100% 100%;
  }
  .banner-splash-1 {
    right: 17%;
    width: 140px;
    top: -34px;
  }
  .biglogo {
    width: 55%;
  }
  .main-banner .bannerkid {
    left: 330px;
    bottom: -160px;
    width: 385px;
  }
  .books-icons {
    gap: 15px;
    flex-wrap: wrap;
  }
  .want-sec .img-holder img {
    width: 100%;
  }
  .want-sec .splash-kids {
    right: 46px;
    bottom: -78px;
    max-width: 130px;
  }
  .pur-sec {
    overflow: visible;
  }
  .img-holder img {
    width: 100%;
  }
  .yellow-circle {
    width: 150px;
    height: 150px;
    left: 20%;
  }
  .pink-circle {
    width: 250px;
    height: 250px;
    top: -40px;
    left: 24%;
  }
  .clouds {
    width: 100%;
    top: -70px;
  }
  .pur-sec {
    padding: 90px 0 70px;
  }
  .create-sec {
    padding: 20px 0 60px;
  }
  .globe-box {
    right: 2%;
    top: -40px;
  }
  .box-pencil {
    left: 0;
    top: 20%;
    width: 60px;
  }
  .cs-box {
    padding: 30px 20px;
  }
  .talk-with .boy-read {
    bottom: -74px;
    left: 45%;
    width: 330px;
  }
  .talk-with .sec-head + p {
    width: 450px;
    padding-right: 70px;
  }
}
@media only screen and (max-width: 1199px) {
  .main-banner .right-sd .banner-img img {
    width: 100%;
  }
  .bt-slide-box {
    right: -40px;
  }
  .single-drop .dropdown-menu {
    padding: 0 0 0;
  }
  .footer-top .fcol-1 {
    width: 27%;
  }
  .footer-top .fcol-2 {
    width: 18%;
  }
  .bi-column .img-holder:after {
    right: 30px;
    top: 0;
    height: 220px;
    width: 220px;
  }
  .choose-cirle-txt {
    font-size: 50px;
    line-height: 50px;
  }
  .num-boxes .choose-inner-head {
    padding: 20px 20px;
    height: 440px;
  }
  .cta-50 .sec-head {
    margin: 5px 0 30px;
  }
  .cta-50 .button-header {
    margin: 0 0 10px;
  }
  .main-banner .ryt-form {
    padding: 30px 30px;
  }
  .ss-01 .button-header {
    margin-bottom: 40px;
  }
  .main-banner .content-side {
    padding: 0 10% 0 0;
  }
  .main-banner .b-fimg {
    right: 32%;
    width: 370px;
  }
  .pack-btns {
    flex-direction: column;
  }
  .pack-btns .icon-style {
    font-size: 22px;
    padding: 8px 8px 8px 8px;
    width: 100%;
  }
  .combo-area .content-area .row {
    max-height: 220px;
  }
  .emark-sec {
    margin: -130px 0 0;
  }
  .combo-area .content-area {
    margin: -90px 0 0;
  }
  .best-place .ryt-owl-1 {
    width: 200px;
  }
  .best-place .lft-owl-1 {
    width: 140px;
  }
  .best-place .sec-head h2 {
    font-size: 60px;
    line-height: 65px;
  }
  .book-carousel .lft-owl-1 {
    width: 150px;
  }
  .book-carousel .ryt-book-1 {
    width: 160px;
  }
  .dp-txt span {
    display: block;
    line-height: 21px;
  }
  .talk-form {
    width: 380px;
  }
  .talk-with .sec-head + p {
    width: 380px;
  }
  .plogos li {
    width: 33%;
    height: 50px;
  }
  .main-banner .content-side h1 {
    font-size: 50px;
    line-height: 50px;
  }
  .banner-splash-1 {
    right: 21%;
    width: 104px;
    top: -14px;
  }
  .main-banner .form-box {
    max-width: 400px;
    padding: 40px 40px 40px;
  }
  .form-holder > span {
    height: 96%;
    max-width: 390px;
    right: 40px;
    bottom: -17px;
    border-radius: 20px;
  }
  .main-banner .bannerkid {
    left: 280px;
    bottom: -160px;
    width: 335px;
  }
  .bannerbook02 {
    right: 430px;
    top: -20px;
    width: 130px;
  }
  .banner-splash-2 {
    bottom: 60px;
    left: -31px;
    width: 40px;
  }
  .bannerbook03 {
    top: -200px;
    width: 90px;
  }
  .bannerbook01 {
    top: 48%;
    width: 90px;
  }
  .sec-head h2 {
    font-size: 50px;
    line-height: 50px;
  }
  .want-sec .pencil {
    width: 90px;
  }
  .want-sec .img-holder {
    padding-left: 25px;
  }
  .yellow-circle {
    left: 8%;
  }
  .pink-circle {
    top: -50px;
    left: 16%;
  }
  .clouds {
    top: -50px;
  }
  .cs-box {
    min-height: 430px;
  }
  .owl-sec .content-side {
    margin: 35px 0 60px;
  }
  .owl-sec .img-holder {
    position: relative;
    bottom: -63px;
  }
  .tf-holder > span {
    max-width: 384px;
  }
  .b-circle {
    width: 350px;
    height: 350px;
    right: 26%;
    top: 22%;
  }
  .talk-with .boy-read {
    width: 310px;
  }
  .talk-with .lft-book-1 {
    width: 120px;
  }
  .talk-with .ryt-book-1 {
    width: 130px;
  }
  .globe-1 {
    left: 0;
    top: -40px;
    width: 100px;
    z-index: 4;
  }
  .globe-2 {
    width: 60px;
  }
  .emark-sec {
    padding: 0 0 20px;
  }
  .globe-box {
    width: 110px;
  }
  .dpink-sec > img {
    width: 150px;
    top: -120px;
  }
  .grad-bg > .want-sec {
    padding: 60px 0 40px;
  }
  .tes-box {
    padding: 20px 20px;
  }
  .portfolio-box img {
    max-width: 170px !important;
  }
}
@media only screen and (max-width: 991px) {
  .counter-number {
    font-size: 45px;
  }
  .book-carousel .item.slick-slide {
    width: 310px;
    height: 430px !important;
  }
  .why-choose-h {
    margin-bottom: 25px;
  }
  .choose-inner-head {
    padding: 50px 15px;
  }
  .custom-arrows {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 90px 0 0;
    z-index: 1;
    width: 110%;
    left: 50%;
    justify-content: space-between;
  }
  .head-why-choose {
    position: relative;
  }
  .footer-top .fcol-1 {
    width: 50%;
    margin: 0 0 10px;
  }
  .footer-top .fcol-2 {
    width: 50%;
    margin: 0 0 10px;
  }
  .num-boxes .choose-inner-head {
    padding: 20px 20px;
    height: 320px;
  }
  .services-banner .container > .row > div:last-child {
    padding-left: 55px;
  }
  .services-banner .container > .row > div:first-child {
    padding-right: 45px;
  }
  .services-banner .mb-3 {
    margin-bottom: 7px !important;
  }
  .cmid-info h4 {
    font-family: var(--secondary-font);
    font-size: 34px;
  }
  .cmid-info p {
    margin: 0 0 30px;
  }
  .cmid-ibox li {
    font-size: 23px;
    line-height: 30px;
  }
  .cmid-box .val-form {
    padding: 40px 40px 40px;
  }
  .main-banner .content-side {
    padding: 0 0 0 0;
    text-align: center;
    margin: 28px 0 0;
  }
  .talk-form {
    width: 100%;
  }
  .talk-with .sec-head + p {
    width: 100%;
  }
  .talk-with .boy-read {
    left: 23%;
    width: 410px;
  }
  .talk-with .sec-head {
    width: 100%;
    margin: 0 0 20px;
  }
  .footer-bottom .lets-work {
    font-size: 80px;
    line-height: 80px;
  }
  .copy-r p {
    margin: 0;
    font-size: 14px;
  }
  .main-banner .form-box {
    float: none;
    margin: 0 auto;
  }
  .main-banner .b-fimg {
    display: none;
  }
  .main-banner {
    padding: 160px 0 80px;
    background-size: cover;
    background-position: top center;
  }
  .navbar .icon-style span {
    font-size: 20px;
  }
  .navbar .icon-style {
    min-width: 170px;
    padding: 6px 6px 6px 5px;
  }
  .navbar .icon-style i {
    margin-left: 10px;
  }
  .org-sec p {
    margin: 0 0 13px;
    text-align: center;
  }
  .owl-packs {
    padding: 50px 0;
  }
  .sec-head h2 {
    font-size: 54px;
    line-height: 58px;
  }
  .pack-area > .row {
    display: none;
  }
  .phone-packs {
    display: block;
  }
  .phone-packs .row > div:first-child .pack-btns {
    flex-direction: row;
  }
  .pack-box {
    margin: 0 0 15px;
  }
  .purple-cta {
    padding: 20px 0 30px;
    margin: 20px 0 50px;
  }
  .purple-cta .img-holder {
    margin: 20px 0 0;
  }
  .purple-cta .container .cta-bgmark {
    display: none;
  }
  .combo-area > .row > div:first-child {
    display: none;
  }
  .combo-area .content-area {
    margin: 0 0 80px;
  }
  .combo-pack {
    padding: 50px 0 0;
  }
  .best-place .ryt-owl-1 {
    width: 160px;
    top: -18%;
  }
  .best-place .lft-owl-1 {
    width: 120px;
  }
  .book-carousel {
    padding: 100px 0 0;
  }
  .book-carousel .lft-owl-1 {
    width: 120px;
  }
  .book-carousel .ryt-book-1 {
    width: 120px;
  }
  .book-slider {
    margin: 2rem auto 60px;
  }
  .company-logo p {
    text-align: center;
    margin: 0 0 20px;
  }
  .ebook-publish .img-holder {
    margin: 20px 0 -110px;
  }
  .steps .d-flex {
    flex-direction: column;
  }
  .steps .nav-link.active strong {
    font-size: 80px;
  }
  .steps .tab-pane > div {
    padding: 0 0 0 0;
  }
  .bp-icon {
    width: 65px;
    border-radius: 10px;
    height: 65px;
  }
  .plogos li {
    width: 16%;
    height: auto;
  }
  .main-banner .container > .row {
    flex-direction: column-reverse;
    gap: 15px;
  }
  .phone-heading {
    display: block;
    text-align: center;
    font-family: var(--heading-font);
    font-size: 50px;
    line-height: 50px;
    margin: 0 0 20px;
  }
  .main-banner .content-side h1 {
    display: none;
  }
  .form-holder > span {
    height: 490px;
    max-width: 461px;
    right: 146px;
    bottom: -16px;
  }
  .form-holder {
    position: relative;
  }
  .bannerbook02 {
    right: auto;
    top: -30px;
    width: 110px;
    left: -80px;
  }
  .main-banner .form-box {
    max-width: 480px;
  }
  .biglogo {
    width: 93%;
    opacity: 0.1;
  }
  .banner-splash-1,
  .banner-splash-2,
  .main-banner .bannerkid,
  .main-banner .content-side p,
  .main-banner .content-side ul,
  .main-banner .content-side strong,
  .banner-splash-3,
  .bannerbar,
  .talk-with .boy-read,
  .b-circle {
    display: none;
  }
  .want-sec {
    padding: 50px 0 80px;
  }
  .want-sec .pencil {
    width: 60px;
    left: auto;
    right: 0;
    top: 0;
  }
  .want-sec .img-holder {
    margin-top: 70px;
  }
  .yellow-circle {
    left: 12%;
    top: 60px;
  }
  .pink-circle {
    top: -35px;
    left: 20%;
  }
  .sec-head h2 {
    font-size: 50px;
    line-height: 50px;
  }
  .cs-box {
    min-height: 310px;
  }
  .grad-bg .want-sec .img-holder {
    padding-left: 0;
  }
  .grad-bg .want-sec .img-holder {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .testio-sec {
    padding: 20px 0 60px;
  }
  .tf-holder {
    position: relative;
    display: inline-block;
  }
  .tf-holder > span {
    height: 80%;
    background-color: #e77c15;
    max-width: 100%;
    right: 15px;
    bottom: 105px;
  }
  .phone-div {
    display: block;
    margin: 0 0 30px;
  }
  .splash-kids,
  .desk-div {
    display: none;
  }
  .kid-sitting {
    margin: 30px 0 0;
  }
  .kid-sitting .sec-head {
    margin: 0 0 -30px;
  }
}
@media only screen and (max-width: 767px) {
  .company-logo p {
    text-align: center;
    padding: 0px 0 0;
    margin: 0 0 5px;
  }
  .company-logo {
    background-color: #101010;
    padding: 15px 0 15px;
  }
  .main-banner .container > .row > div:last-child:after {
    content: none;
  }
  .main-banner:before,
  .main-banner:after {
    content: none;
  }
  .heading-banner h3 {
    font-size: 40px;
  }
  .main-banner .container > .row > div:last-child {
    padding-left: 10px;
    min-height: auto;
    padding-top: 10px;
  }
  .main-banner .ftopimg {
    width: 75%;
  }
  .main-banner .container > .row > div {
    min-height: auto;
  }
  .cta-form .row {
    gap: 5px;
    text-align: center;
  }
  .book-carousel .item.slick-slide {
    width: 270px;
    height: 380px !important;
  }
  .book-slider {
    margin: 2rem auto;
  }
  .range-tab .c-side {
    margin: 0 0 40px;
  }
  .range-slider {
    width: 100%;
  }
  .range-slider:before {
    content: none;
  }
  .bi-column .button-header {
    margin: 0 0 40px;
  }
  .num-boxes .choose-inner-head {
    padding: 20px 20px;
    height: 370px;
  }
  .head-why-choose p {
    padding-left: 0;
  }
  .color-bar {
    text-align: center;
  }
  .color-bar img {
    margin: 0 0 16px;
    max-width: 140px;
  }
  .ftr-soc {
    justify-content: center;
  }
  .faq-sec .img-holder {
    display: none;
  }
  .inner-head h1 {
    font-size: 40px;
  }
  .once-sec .row {
    flex-direction: column-reverse;
  }
  .once-sec .img-holder {
    margin-top: 40px;
    text-align: center;
  }
  .cta-50 .sec-head h3 {
    font-size: 30px;
  }
  .cta-50 .img-holder img {
    width: 100%;
    margin: -70px auto 30px;
    max-width: 320px;
    display: block;
  }
  .cta-50 .sec-head {
    text-align: center;
  }
  .cta-50 .button-header {
    justify-content: center;
  }
  .ss-01 .button-header {
    margin-bottom: 20px;
  }
  .step-box {
    padding: 0 0 0 10px;
  }
  .step-info .nav-pills {
    min-width: 260px;
  }
  .coffee .row {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .coffee {
    padding-bottom: 0;
  }
  .type-writer {
    background: #ffeded;
    padding: 50px 0 0;
  }
  .type-writer .row {
    gap: 50px;
  }
  .new-inbanner h1 {
    font-size: 40px;
  }
  .mb-nf .banner-img img {
    height: 250px;
  }
  .main-banner .content-side img {
    max-width: 480px;
  }
  .main-banner .content-side h1,
  .phone-heading {
    font-size: 46px;
    line-height: 50px;
  }
  .main-banner .container > .row > div {
    padding-bottom: 30px;
  }
  .sec-head h2 {
    font-size: 46px;
    line-height: 50px;
  }
  .steps .nav {
    width: 100%;
  }
  .talk-with .boy-read {
    display: none;
  }
  .talk-form {
    margin: 0 0 70px;
  }
  .footer-top {
    text-align: center;
  }
  .payment-logos ul {
    justify-content: center;
  }
  .footer-bottom .lets-work {
    text-align: center;
    font-size: 60px;
    display: block;
  }
  .footer-bottom .row > div {
    padding-bottom: 20px;
    padding-top: 20px;
  }
  .footer-bottom .row > div:last-child {
    border: none;
  }
  .footer-bottom {
    text-align: center;
  }
  .contact-details li a {
    justify-content: center;
    flex-direction: column;
  }
  .copy-r {
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
  }
  .ftr-copy .row > div {
    padding-top: 0px;
  }
  .ftr-copy ul {
    justify-content: center;
  }
  .button-header .white-btn,
  .button-header .yellow-outline-btn,
  .button-header .pink-outline-btn {
    background: none;
    border: none;
    min-width: auto;
    padding: 0;
  }
  .button-header .white-btn i,
  .button-header .yellow-outline-btn i,
  .button-header .pink-btn i,
  .button-header .pink-outline-btn i {
    margin-left: 0;
  }
  .button-header .white-btn span,
  .button-header .yellow-outline-btn span,
  .button-header .pink-outline-btn span {
    display: none;
  }
  .phone-btns {
    display: block;
  }
  .navbar .container {
    justify-content: center;
    gap: 7px;
  }
  .button-header .yellow-btn {
    padding: 5px 5px 5px 5px;
    min-width: 150px;
  }
  .button-header .yellow-btn i {
    min-width: 35px;
    height: 35px;
  }
  .main-banner {
    padding: 210px 0 20px;
  }
  header:after {
    top: 85px;
  }
  .main-banner {
    background-color: #250c26;
    background-image: linear-gradient(
      180deg,
      rgba(254, 221, 18, 1) 0%,
      rgba(246, 104, 62, 1) 100%
    );
    background-size: cover;
    mask-image: none;
    mask-mode: unset;
    mask-repeat: no-repeat;
    mask-size: auto;
    mask-position: bottom center;
  }
  .form-holder > span {
    right: 56px;
  }
  .main-banner .dual-btn {
    margin: 0 0 0px;
  }
  .bannerbook03 {
    top: -40px;
    width: 60px;
  }
  .main-banner {
    padding: 150px 0 20px;
  }
  .main-banner .content-side {
    margin: 8px 0 0;
  }
  .button-header .pink-btn {
    padding: 5px 5px 5px 5px;
    min-width: 150px;
  }
  .button-header .pink-btn i {
    min-width: 35px;
    height: 35px;
  }
  .want-sec .pencil {
    top: -90px;
  }
  .want-sec .content-side {
    padding-right: 0;
  }
  .pink-sec .form-control {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .pink-sec button {
    margin: 20px auto 0;
    display: block;
  }
  .portfolio-sec {
    padding: 60px 0;
  }
  .cen-head {
    max-width: 100%;
  }
  .dpink-sec .in-a-row {
    gap: 5px;
  }
  .dpink-sec .in-a-row {
    flex-direction: column;
    max-width: 220px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 578px) {
  .navbar-brand img {
    max-width: 105px;
  }
  .heading-banner h3,
  .sec-head h3 {
    font-size: 30px;
  }
  .services-banner h1 {
    font-size: 30px;
  }
  .main-banner .right-sd .badg {
    max-width: 115px;
  }
  .banner-img img {
    max-width: 230px;
    float: none;
  }
  .bt-slide-box {
    width: 90%;
    bottom: 30px;
    right: 5px;
    padding: 10px 9px;
  }
  .bt-botton p {
    font-size: 12px;
  }
  .cta-form {
    justify-content: center;
  }
  .books .book .best-badge {
    max-width: 100px;
    top: -30px;
    right: 10px;
  }
  .counter-number {
    font-size: 34px;
  }
  .counter-p p {
    font-size: 15px;
    line-height: 18px;
  }
  .book-carousel .item.slick-slide {
    width: 220px;
    height: 310px !important;
  }
  .choose-inner-head {
    padding: 50px 45px;
  }
  .custom-arrows {
    width: 102%;
  }
  .num-boxes .choose-inner-head {
    padding: 20px 20px;
    height: auto;
  }
  .footer-top .fcol-1 {
    width: 100%;
  }
  .footer-services-nav-links {
    flex-direction: column;
  }
  .fcol-1 {
    text-align: center;
  }
  .fcol-1 ul {
    display: flex;
    width: 100%;
    gap: 17px;
    justify-content: center;
    margin: 0;
  }
  .inner-head h1 {
    font-size: 30px;
  }
  .inner-head:after {
    width: 160px;
    height: 160px;
    left: 50px;
    top: -80px;
  }
  .inner-head:before {
    width: 80px;
    height: 80px;
    right: 30px;
    bottom: -50px;
  }
  .inner-head {
    text-align: center;
    padding: 100px 0 40px;
  }
  .know-sec:before {
    left: -50px;
    height: 120px;
    width: 120px;
  }
  .know-sec:after {
    right: -23px;
    height: 60px;
    width: 60px;
  }
  .step-info {
    flex-direction: column;
  }
  .step-info .nav-pills {
    gap: 2px;
  }
  .step-box .sec-head {
    margin: 20px 0 0px;
  }
  .step-box p {
    margin: 0 0 40px;
  }
  .services-banner .container > .row > div:first-child {
    padding-top: 120px;
    padding-bottom: 0;
  }
  .cmid-box {
    padding: 25px;
  }
  .cmid-info h4 {
    font-size: 30px;
  }
  .cmid-ibox li {
    font-size: 20px;
    line-height: 24px;
  }
  .cmid-box .val-form {
    padding: 25px 25px;
  }
  .new-inbanner:after {
    top: -60px;
    width: 100px;
    height: 100px;
  }
  .new-inbanner h1 {
    margin: 20px 0 0;
    font-size: 30px;
  }
  .new-inbanner {
    padding: 80px 0 0;
    min-height: 590px;
  }
  .new-inbanner > img {
    right: 0;
    top: 80px;
    max-width: 240px;
  }
  .cmid-ibox ul {
    display: flex;
    gap: 15px;
    margin: 0 0 20px;
  }
  .navbar-collapse .button-header {
    margin-top: 18px;
  }
  .review-logos img {
    height: 21px;
  }
  .review-logos {
    gap: 10px;
  }
  .main-banner.mb-nf .container > .row > div:last-child {
    padding-left: 0px;
  }
  .mb-nf .banner-img img {
    height: 170px;
  }
  .mb-nf .bt-slide-box {
    left: 50%;
    transform: translateX(-50%);
  }
  .best-place .sec-head h2 {
    font-size: 35px;
    line-height: 35px;
  }
  .best-place .lft-owl-1 {
    width: 60px;
  }
  .main-banner {
    padding: 152px 0 20px;
  }
  .bannerbook01 {
    display: none;
  }
  .biglogo {
    display: none;
  }
  .main-banner .content-side h1,
  .phone-heading {
    font-size: 33px;
    line-height: 35px;
  }
  .main-banner .content-side p {
    font-size: 16px;
  }
  .main-banner .dual-btn {
    margin: 10px 0 20px;
  }
  .main-banner .dual-btn a {
    width: 100%;
    margin: 0 0;
    max-width: 222px;
  }
  .main-banner .form-box {
    padding: 30px 30px 30px;
  }
  .main-banner .form-box h3 {
    font-size: 28px;
    line-height: 28px;
  }
  .cen-head {
    max-width: 100%;
  }
  .owl-packs .fbook-1 {
    width: 80px;
  }
  .owl-packs .fbook-2 {
    top: 26%;
    width: 100px;
  }
  .pack-head h4 span:first-child {
    font-size: 50px;
  }
  .pack-head {
    margin: 0 0 20px;
  }
  .phone-packs .row > div:first-child .pack-btns {
  }
  .owl-packs {
    padding: 50px 0 30px;
  }
  .dual-btn {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .dual-btn a {
    min-width: 230px;
  }
  .combo-pack {
    padding: 40px 15px 0;
  }
  .price-and-btn {
    flex-direction: row;
    margin-top: 40px;
    justify-content: center;
  }
  .price-and-btn > span {
    display: none;
  }
  .price-and-btn strong {
    font-size: 34px;
  }
  .price-and-btn strong:after {
    content: "USD";
    font-size: 14px;
    margin: 0 0 0 7px;
    font-family: "Poppins";
  }
  .best-place .ryt-owl-1 {
    width: 100px;
    top: -12%;
  }
  .covers-slider .img-holder {
    padding: 10px 5px 10px;
  }
  .emark-sec {
    margin: -50px 0 0;
  }
  .best-place .ryt-owl-1 {
    width: 63px;
    top: -7%;
  }
  .best-place .lft-owl-1 {
    width: 40px;
  }
  .book-carousel .lft-owl-1 {
    width: 80px;
    top: -80px;
  }
  .book-carousel .ryt-book-1 {
    width: 65px;
    top: 110px;
  }
  .book-carousel {
    padding: 52px 0 0;
  }
  .ebook-publish {
    text-align: center;
    padding-top: 20px;
  }
  .steps .nav-link.active strong {
    font-size: 40px;
    line-height: 40px;
  }
  .steps .nav-link {
    margin: 0 0 10px;
  }
  .steps {
    padding: 80px 0 50px;
  }
  .t-txt p {
    font-size: 16px;
  }
  .tes-box {
    padding: 20px 20px;
  }
  .testi-slider .slick-slide strong {
    font-size: 20px;
  }
  .talk-with .ryt-book-1 {
    width: 100px;
  }
  .talk-with {
    padding: 40px 0 0;
  }
  .footer-top .footer-logo img {
    max-width: 170px;
    margin: 0 0 25px;
  }
  .payment-logos ul {
    gap: 15px;
  }
  .payment-logos img {
    width: 75%;
  }
  footer h5 {
    font-size: 22px;
  }
  .footer-bottom .lets-work {
    font-size: 40px;
    line-height: 40px;
  }
  .footer-bottom .row > div {
    padding-bottom: 8px;
    padding-top: 20px;
  }
  .copy-r {
    text-align: center;
  }
  .plogos li {
    width: 30%;
    height: 42px;
    float: none;
    display: inline-block;
    min-height: auto;
  }
  .plogos {
    text-align: center;
    margin-bottom: 0;
  }
  .sli-btns {
    justify-content: center;
  }
  .git-image h2 {
    font-size: 28px;
    margin: 0 0 -7px;
  }
  .f-head p {
    font-size: 26px;
    line-height: 28px;
  }
  .quotepop .owl-right {
    left: -30px;
    top: -76px;
    width: 120px;
  }
  .quotepop .modal-body .btn-close {
    right: -20px;
  }
  .quotepop .modal-dialog {
    max-width: 86%;
    margin: 0 auto;
  }
  .thanks-page .main-banner .content-side h1 {
    font-size: 43px;
    line-height: 45px;
  }
  .thanks-page .main-banner .row > div:last-child {
    display: none;
  }
  .main-banner .container > .row > div {
    padding-bottom: 0;
  }
  .best-place .img-holder {
    overflow: hidden;
  }
  .best-place .img-holder img {
    margin-left: -30px;
  }
  .company-logo-img img {
    max-width: 99px;
  }
  .git-image .con-side {
    padding: 40px 20px 30px;
  }
  .quotepop .modal-content {
    margin-top: 50px;
  }
  .pack-box:after {
    width: 70px;
    height: 70px;
    top: -30px;
    right: -4px;
  }
  .main-banner .dual-btn {
    flex-direction: row;
    gap: 5px;
  }
  .main-banner .dual-btn a {
    min-width: 100px;
    padding: 6px 6px 6px 8px;
    font-size: 18px;
  }
  .main-banner .icon-style i {
    margin-left: 5px;
    width: 40px;
    min-width: 40px;
    height: 40px;
  }
  .rm-btn {
    margin: 10px 0 0;
    text-align: center;
  }
  .rm-btn {
    margin: 10px 0 0;
    text-align: center;
  }
  .emark-sec {
    padding: 0 0 30px;
  }
  .pack-area {
    margin: 50px 0 0;
  }
  .pack-btns .icon-style {
    font-size: 18px;
    padding: 8px 8px 8px 7px;
    width: 100%;
  }
  .pack-btns .icon-style i {
    margin-left: 5px;
    width: 25px;
    min-width: 25px;
    height: 25px;
    font-size: 14px;
  }
  .pack-box {
    padding: 30px 20px;
  }
  .rm-btn + .rm-box {
    margin-top: 65px;
  }
  .pack-btns {
    flex-direction: row;
  }
  .in-a-row {
    flex-direction: row;
    justify-content: center;
  }
  .in-a-row .icon-style {
    min-width: auto;
    font-size: 20px;
    padding: 8px 6px 6px 10px;
  }
  .in-a-row .icon-style i {
    margin-left: 11px;
    min-width: 35px;
    width: 35px;
    height: 35px;
  }
  .price-and-btn strong:before {
    font-size: 14px;
  }
  .price-and-btn a {
    margin-left: 5px;
  }
  .combo-pack .icon-style {
    min-width: auto;
    padding: 6px 6px 6px 6px;
    font-size: 20px;
    margin-top: -13px;
  }
  .combo-pack .icon-style i {
    min-width: 33px;
    width: 33px;
    height: 33px;
    margin-left: 7px;
  }
  .ebook-publish .sec-head h2 {
    font-size: 35px;
    line-height: 35px;
  }
  .form-holder > span {
    right: 10px;
    bottom: -10px;
  }
  header:after {
    top: 67px;
  }
  .org-sec {
    padding: 35px 0;
    position: relative;
  }
  .pink-circle {
    width: 180px;
    height: 180px;
    top: -45px;
    left: 20%;
  }
  .yellow-circle {
    left: 12%;
    top: 0px;
    width: 100px;
    height: 100px;
  }
  .want-sec .splash-kids {
    right: 0;
    bottom: -68px;
    max-width: 100px;
  }
  .sec-head h2 {
    font-size: 33px;
    line-height: 33px;
  }
  .want-sec .pencil {
    display: none;
  }
  .want-sec {
    padding: 10px 0 80px;
  }
  .clouds {
    top: -16px;
  }
  .globe-box {
    width: 60px;
  }
  .box-pencil {
    left: 0;
    top: 19%;
    width: 40px;
  }
  .cs-box {
    min-height: auto;
  }
  .owl-sec {
    padding: 20px 0 0;
    background-color: #250c26;
    background-image: url(../images/letters-bg.webp);
    background-size: cover;
    mask-image: none;
  }
  .owl-sec .content-side {
    margin: 35px 0 -30px;
  }
  .dpink-sec > img {
    width: 110px;
    top: -100px;
  }
  .dpink-sec .in-a-row {
    align-items: stretch;
  }
  .t-txt p {
    font-size: 14px;
  }
  .testi-slider .slick-slide strong {
    font-size: 17px;
  }
  .testi-slider .slick-slide {
    transform: scale(1);
  }
  .testi-slider .active-slide {
    transform: scale(1);
  }
  .tes-box {
    min-height: 310px;
  }
  .talk-with .sec-head + p {
    width: 450px;
    padding-right: 0;
  }
  .talk-form {
    padding: 20px 30px;
    margin: 0 0 80px;
  }
  .tf-holder > span {
    right: 11px;
    bottom: 69px;
  }
  .portfolio-box img {
    max-width: 75% !important;
  }
  .want-sec .img-holder {
    padding-left: 0;
  }
  .cen-head br {
    display: none;
  }
  .quotepop .row:after {
    left: -12px;
    bottom: -12px;
  }
  .bannerbook02 {
    display: none;
  }
  .cs-area button {
    width: 25px;
    height: 25px;
  }
  .cs-area .slick-prev {
    left: 0;
    z-index: 9;
  }
  .cs-area .slick-next {
    right: 0;
    z-index: 9;
  }
  .cs-area .slick-slide {
    margin: 0 0 0 0;
    padding: 0 30px;
  }
  .cs-box {
    padding: 20px 10px 10px;
  }
}
@media only screen and (max-width: 480px) {
  header:after {
    content: none;
  }
}
