@import url('https://fonts.googleapis.com/css2?family=Aladin&family=Poppins:wght@300;400;500;600;700&display=swap');
/* 
font-family: "Poppins", serif;
font-family: "Aladin", serif;
 */
:root {
  --selection-color: #6f40f295;
  --black-color: #000000;
  --white-color: #ffffff;
  --text-color: #1b1a1a;
  --ease: all 350ms ease-in-out;
  --scrollbar: #F5F5F5;
  --purple-color: #7040f2;
  --orange-color: #ff4d12;
  --border-color: #d4d6db59;
  --pink-color: #df7e01;  
}
html,
body {
  height: 100%;
}
html {
  scroll-behavior: smooth;
}
h1,h2,h3,h4,h5{
  font-family: 'Poppins';  
}
::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: "Poppins", serif;
}
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;
}
/* .container {
  max-width: 1480px !important;
} */
.color_text {
  color: #00b17d;
  background-image: linear-gradient(144deg, rgb(0 177 125) 0%, rgb(3 66 161) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: fantasy;
}
.sec-head h2 {
  font-size: 80px;
  line-height: 85px;
  margin: 0 0 10px;
}
.sec-head p {
  font-size: 18px;
}
.cen-head {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 20px;
}
.cen-head p {
  max-width: 750px;
  margin: 0 auto 20px;
}
@-webkit-keyframes opacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .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);
  }
}
.btn-style {
  padding: 15px 20px;
  border-radius: 0;
  border: 1px solid transparent;
  display: inline-block;
}
.yellow-btn {
  background-color: #0f3e4e;
  border: 1px solid transparent;
}
.yellow-outline-btn {border: 1px solid #0f3e4e;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%, rgb(1 175 126) 50%, rgb(3 66 162) 100%
100%
);
  background-size: 202%;
  background-position: -1px 0;
  }
.yellow-btn.icon-style{
    background: #f6770003;
    background-size: 202%;
    background-position: -1px 0;
    border: 1px solid #ffffff;
    color: #fff;
  }
  .black-btn.icon-style {
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgb(3 71 161) 50%, rgb(0 174 126) 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: fantasy;
  font-size: 22px;
  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, rgb(0 177 125) 0%, rgb(3 66 161) 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 20px;
  font-size: 18px;
  -webkit-animation: opacity 1s infinite linear;
}
.icon-style span {
  width: 100%;
  text-align: center;
}
.bp-icon img{
  -webkit-animation: zooming 2s infinite linear;
  width: 44px;
}
/* HEADER */
.navbar-collapse {
  justify-content: end;
}
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 101;
}
.navbar {
  transition: var(--ease);
}
.navbar.scrolled {
  background: linear-gradient(156deg, rgb(0 177 125) 0%, rgb(3 66 162) 100%);
  backdrop-filter: blur(6px);
}
/* END HEADER */
/* BANNER */
.main-banner {
  background-image: url(https://authorpublicationservices.com/services/assets/images/adventure-writing-bannerr.webp);
  background-repeat: round;
  color: #fff;
  padding: 150px 0 70px;
}
.main-banner .b-fimg {
  position: absolute;
  width: 440px;
  bottom: -70px;
  right: 27%;
}
.main-banner .content-side h1 {
  font-size: 75px;
  line-height: 84px;
}
.main-banner .form-box {
  max-width: 500px;
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 50px 40px;
  float: right;
  color: #000;
}
.main-banner .form-box h3 {font-size: 38px;}
.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;
}
.main-banner .dual-btn {
  margin: 30px 0 40px;
}
.main-banner .content-side p {
  font-size: 18px;
}
/* END BANNER */
/* PACKS */
.owl-packs {
  padding: 70px 0;
position: relative;
overflow: hidden;
}
.owl-packs .fbook-1 {
  position: absolute;
  right: 0;
  top: 0;
  width: 250px;
  z-index: 1;
  -webkit-animation: updown 3s infinite linear;
}
.owl-packs .fbook-2 {
  position: absolute;
  left: 0;
  top: 16%;
  width: 250px;
  z-index: 1;
  -webkit-animation: updown 3s infinite linear;
}
.owl-packs .container {
  position: relative;
  z-index: 2;
}
.pack-box {
  background: linear-gradient(144deg, rgba(1, 14, 15, 1) 0%, rgb(15 57 73) 100%);
  border-radius: 40px;
  padding: 40px 40px;
  color: #fff;
  position: relative;
  border: 0 solid transparent;
}
.feature-box {
  background: linear-gradient(144deg, rgba(194,57,0,1) 0%, rgba(255,199,3,1) 100%);
  border: 5px solid #0f3e4e;
}
.pack-head strong {
  font-size: 18px;
  font-weight: 600;
}
.pack-head h4 span:first-child {
  font-size: 60px;
}
.pack-head h4 span:last-child {
  font-size: 16px;
  font-family: "Poppins", serif;
  position: relative;
    top: -18px;
    margin: 0 0 0 10px;
}
.pack-box:after {
    position: absolute;
    content: '';
    width: 100px;
    height: 100px;
    top: -43px;
    right: -14px;
    background-size: 100%;
    background-repeat: no-repeat;
    -webkit-animation: opacity 1s infinite linear;
}
.gold-badge.pack-box:after {
 
  background-size: 100%;
  background-repeat: no-repeat;
}
.pack-head strike {
    display: block;
    font-size: 24px;
}
.pack-head h4 {
    display: flex;
    align-items: baseline;
}
.pack-head {
  margin: 0 0 40px;
}
.pack-body ul {
  max-height: 170px;
  overflow-x: hidden;
  overflow-y: scroll;
  margin: 0 0 40px;
}
.pack-btns {
  display: flex;
  gap: 5px;
}
.pack-btns a {
  width: 50%;
}
.feature-box > .feature-badge {
  position: absolute !important;
  top: -45px;
  width: calc(100% + 10px);
  background-color: #0f3e4e;
  left: -5px;
  text-align: center;
  color: #000;
  font-weight: 600;
  height: 90px;
  border-radius: 40px 40px 0 0;
  z-index: -1 !important;
  padding: 12px 0 0;
}
.feature-box > * {
  z-index: 2;
  position: relative;
}
.pack-area {
  margin: 90px 0 0;
}
.pack-area .row {
  align-items: baseline;
}
.list-heading {
  font-size: 22px;
  margin: 10px 0 4px;
  padding-left: 0 !important;
  font-family: 'Poppins';
}
.list-heading:first-child {
  margin-top: 0;
}
.pack-body li:before {
  content: '\f058';
  font-family: 'FontAwesome';
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 13px;
}
.pack-body li {
  position: relative;
  padding-left: 24px;
}
.list-heading:before {
  content: none !important;
}
/* END PACKS */
/* COMBO */
.combo-pack {
  background: linear-gradient(156deg, rgb(15 62 78) 0%, rgba(15,0,18,1) 100%);
  overflow: hidden;
  border-radius: 40px;
  position: relative;
  color: #fff;
  padding: 70px 0 0;
}
.combo-pack .owl-mark {
  position: absolute;
  z-index: 1;
  opacity: .2;
  max-width: 50%;
  bottom: 0;
  left: 0;
}
.combo-pack .container {
  position: relative;
  z-index: 2;
}
.combo-pack .cen-head {
  margin-bottom: 0px;
}
.img-holder img {
  width: 100%;
}
.combo-area .row {
  align-items: center;
}
.combo-area .content-area li {
  position: relative;
  margin: 0 0 5px;
}
.combo-area .content-area li:before {
  position: absolute;
  content: '';
  width: 9px;
  height: 9px;
  background-color: #fff;
  border-radius: 50%;
  left: -20px;
  top: 7px;
}
.combo-area .content-area ul {
  margin: 0 0 15px 15px;
}
.price-and-btn a {
  margin-left: 20px;
}
.price-and-btn strong {
  font-family: 'Poppins';
  font-size: 55px;
  font-weight: normal;
      position: relative;
}
.price-and-btn strong:before {
    content: 'Get Upto';
    position: absolute;
    top: -13px;
    font-size: 16px;
    font-family: 'Poppins';
}
.price-and-btn {
  display: flex;
  align-items: center;
  gap: 6px;
}
.combo-area .content-area {
  margin: -210px 0 0;
}
.combo-area .content-area h3 {
  margin: 0px 0 20px;
  font-size: 40px;
}
.combo-area h5 {
  font-size: 24px;
  margin: 10px 0 9px;
  font-family: 'Poppins';
  background-image: linear-gradient(144deg, rgba(194, 57, 0, 1) 0%, rgba(255, 199, 3, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.combo-area .content-area .row {
  align-items: normal;
  max-height: 270px;
  overflow-x: hidden;
  margin-bottom: 20px;
}
/* END COMBO */
 /* EMBARK  */
.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;
}
 /* END EMBARK  */
 /* BEST PLACE */
 .sli-btns {
  margin: 20px 0 30px;
  display: flex;
  gap: 25px;
}
.sli-btns button {
  background: none;
  border: none;
  font-size: 35px;
  padding: 0;
}
.best-place {
  position: relative;
  z-index: 3;
}
.best-place .lft-owl-1 {
  position: absolute;
  left: 0;
  top: -70px;
  width: 180px;
  -webkit-animation: updown 3s infinite linear;
}
.best-place .ryt-owl-1 {
  position: absolute;
  right: 0;
  top: -25%;
  width: 290px;
  -webkit-animation: updown 3s infinite linear;
}
.best-place .sec-head h2 {
  font-size: 65px;
  line-height: 65px;
}
 /* END BEST PLACE */
 /* BLACK BAR */
 .company-logo {
  background-color: #101010;
  padding: 10px 0 18px;
  position: relative;
  z-index: 2;
}
.company-logo .button-header {
  display: flex;
  gap: 5px;
  justify-content: end;
}
.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;
}
 /* END BLACK BAR */
 /* EBOOK */
 .ebook-publish {
  background: linear-gradient(156deg, rgb(15 62 78) 0%, rgba(15, 0, 18, 1) 100%);
  color: #fff;
  position: relative;
  padding: 80px 0;
}
.ebook-publish img {
  max-width: 90%;
}
.ebook-publish .img-holder {
  margin: -110px 0 -110px;
  text-align: right;
}
.steps .nav-link > div {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 30px;
}
.steps .nav-link.active strong {
  font-size: 80px;
  color: #422146;
}
.steps .nav-link strong {
  font-weight: 600;
  font-size: 25px;
  color: #422146;
}
.steps {
  background-color: #FFF3DF;
  padding: 80px 0;
}
.steps .nav-link.active {
  background-color: #fff !important;
  color: #000 !important;
  border-radius: 0;
  box-shadow: 0px 10px 30px #0000002e;
}
.steps .nav-link {
  margin: 0 0 20px;
  border-bottom: 1px solid #E4E4E4;
  border-radius: 0;
}
.steps .nav-link span {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 480px;
  color: #000;
}
.steps .nav-link.active span {
  text-overflow: unset;
  width: auto;
  white-space: normal;
}
.steps .tab-pane > div {
  padding: 0 0 0 15%;
}
.book-carousel {
  position: relative;
}
.book-carousel .lft-owl-1 {
  position: absolute;
  left: 0;
  width: 210px;
  top: 0px;
  -webkit-animation: updown 3s infinite linear;
}
.book-carousel .ryt-book-1 {
  position: absolute;
  right: 0;
  top: 0;
  width: 190px;
  -webkit-animation: updown 3s infinite linear;
}
 /* END EBOOK */
 /* TALK */
 .talk-with .row {
  position: relative;
  z-index: 2;
}
.talk-with .boy-read {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 530px;
}
.talk-with .container {
  position: relative;
}
.talk-with {
  padding: 100px 0 0;
  position: relative;
}
.talk-with .ryt-book-1 {
  position: absolute;
  right: 0;
  top: 0;
  width: 220px;
  -webkit-animation: updown 3s infinite linear;
}
.talk-with .lft-book-1 {
  position: absolute;
  left: 0;
  bottom: 14%;
  width: 180px;
  -webkit-animation: updown 3s infinite linear;
}
.talk-with .sec-head {
  width: 500px;
  margin: 50px 0 20px;
}
.talk-with .sec-head + p {
  width: 450px;
}
.talk-form {
  width: 500px;
  background: linear-gradient(156deg, rgb(0 177 125) 0%, rgb(3 66 163) 100%);
  padding: 40px 40px;
  border-radius: 20px;
  float: right;
  margin: 0 0 120px;
}
.talk-form h4 {
  font-size: 40px;
  color: #fff;
}
.talk-form p {
  color: #fff;
  margin: 0 0 22px;
}
.talk-form .form-control {
  border-color: #fff;
  border-radius: 0;
  border-width: 0 0 1px 0;
  background: transparent;
  box-shadow: none !important;
}
.talk-form .form-control::placeholder{
  color: #fff;
}
 /* END TALK */
 /* Tabs Portfolio start */
.tabs-content {
  text-align: center;
}
section.tabs-portfolio {
  color: #fff;
  padding: 70px 0;
  background: linear-gradient(144deg, rgba(1, 14, 15, 1) 0%, rgba(109, 46, 106, 1) 100%);
}
/* Tabs Portfolio end */

.pic-portfolio {
  padding: 80px 0;
}
.pic-portfolio .sec-head {
  margin-bottom: 50px;
}
.pic-portfolio .nav-tabs {
  justify-content: space-between;
  padding: 0 0 18px;
}
.pic-portfolio .nav-tabs .nav-item.show .nav-link,
.pic-portfolio .nav-tabs .nav-link.active {
  background-image: linear-gradient(144deg, rgb(0 177 125) 0%, rgb(1 67 164) 100%);
  border: none;
  border-radius: 5px;
  color: var(--white-color);
}
.pic-portfolio .nav-tabs .nav-link {
  font-size: 15px;
  color: #8C8888;
  padding: 11px 25px;
}
.image-tab {
  margin: 30px 0;
}
.image-tab .img-holder {
  margin: 0 0 20px;
}
/* Tabs Portfolio end */
.sec-head h3,.sec-head > strong,.sec-head h2 {
  font-size: 45px;
  line-height: 60px;
  font-family: var(--heading-font);
}
/* LEFT ICONS */
.lf-icons {
  position: fixed;
  left: 15px;
  bottom: 15px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lf-icons .float-call {
  background-color: #0f3e4e;
}
.fa-phone:before {
    content: "\f095";
    color: white;
}
.float i {
    width: 45px;
    height: 45px;
    background:linear-gradient(144deg, rgb(0 177 125) 0%, rgb(3 66 161) 100%);
    opacity: .9;
    -webkit-animation: bounce 1.5s infinite linear;
    animation: bounce 1.5s infinite linear;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.payment-logos img {
    max-width: 500px;
    width: 100%;
}
.float img:hover {
    opacity: 1;
}
.lf-icons a:hover {
  opacity: 1;
}
/* END LEFT ICONS */
/* TESTI */
.testio-sec {
  padding: 60px 0 60px;
  background-image: url(https://res.cloudinary.com/dvmnlnikb/image/upload/w_1000,ar_16:9,c_fill,g_auto,e_sharpen/v1743100951/library-artwork-books-1154729_nzbnrf.webp);
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}
.testio-sec .sec-head {
  color: #fff;
  margin-bottom: 50px;
}
.tes-box {
  border-radius: 15px;
  padding: 40px 40px;
  background: linear-gradient(144deg, #f67700 0%, #0f3e4e 100%);
  color: #fff;
  position: relative;
}
.testi-slider .slick-slide {
  padding: 0 10px;
}
.testi-slider .slick-slide strong {
  font-weight: normal;
  font-family: 'Poppins';
  font-size: 29px;
}
.tes-box ul i {
  color: gold;
}
.tes-box ul {
  display: flex;
  align-items: center;
  gap: 5px;
}
.t-txt p {
  font-style: italic;
  font-size: 18px;
}
.tes-box .t-mark {
  filter: invert(1);
  position: absolute;
  opacity: .5;
  bottom: 10px;
  right: 10px;
  width: 120px;
}
.t-icon {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 320px;
  opacity: .2;
}
/* END TESTI */
/* book carousel start */
.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 {
  /* position: absolute;
  top: 50%;
  width: 40px;
  height: 50px;
  line-height: 50px;
  margin-top: -25px;
  border: none;
  background: transparent;
  color: #fff;
  font-family: monospace;
  font-size: 5rem;
  outline: none; */
  z-index: 300;
}
.book-carousel .slick-prev {
  left: -50px;
  /* text-align: left; */
}
.book-carousel .slick-next {
  right: -50px;
  /* text-align: right; */
}
.book-carousel .item.slick-slide {
  width: 400px;
  height: 566px !important;
  transition: transform .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, .5);
  transition: transform .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 {
  /* margin: 0 -10%; */
  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;
}
/* book carousel end */
/* counter css start */
.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;
}
/* counter css end */
/* book-cta-two start */
.book-cta-two {
  padding: 140px 0 101px 0;  
}
.book-cta-two h3 {
  color: #fff;
  font-size: 44px;
}
.book-cta-two p {
  color: #fff;
}
/* book-cta-two end */
/* banner-form-two start */
.banner-form-two h3 {
  text-align: center;
}
.banner-form-two {
  padding: 50px 0 50px 0;  
  background-color: #F27B5F;
}
/* banner-form-two end */
/* Why choose start */
.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;
  /* padding: 16px; */
  /* padding: 20px; */
  border-radius: 70%;
  height: 75px;
  width: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.choose-icon-text-1 img {
  /* height: 29px;
  width: 41px; */
  max-width: 50px;
}
.why-choose-h {
  margin-bottom: 55px;
}
/* Why choose end */
/* awards -logo start */
.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%; 
}
/* FOOTER */
footer {
   background: linear-gradient(156deg, rgb(0 177 125) 0%, rgb(3 66 163) 100%);
  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: fantasy;
  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: black;
  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;
}
/* END FOOTER */
.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;
}
/* ABOUT PAGE*/
.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 {
  /* background-color: #FEFBF6; */
  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;  
  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;
}
/* END ABOUT PAGE*/
/* SERVICES */
.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:'Poppins';
  font-size: 19px;
  margin: 0 0 5px;
  color: black;
  font-weight: bold;
}
.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, rgb(0 177 125) 0%, rgb(3 67 164) 100%);
  border-radius: 50%;
}
.ser-list:before {
  content: '';
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 250px;
  height: 250px;
  background-image: linear-gradient(145deg, rgb(0 177 125) 0%, rgb(3 67 164) 100%);
  border-radius: 50%;
}
.blue-sec {
  background: linear-gradient(144deg, rgb(0 177 125) 0%, rgb(3 66 161) 100%);
  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;
}
.step-sec {
  padding: 80px 0;
}
.step-info .nav-pills {
  min-width: 300px;
  gap: 15px;
}
.step-info .nav-link {
  border-radius: 0;
  background-color: #8b3cdf;
  color: #fff;
  text-align: left;
}
.step-box img {
  width: 100%;
}
.step-box {
  padding: 0 0 0 60px;
}
.step-info .nav-pills .nav-link.active {
  background: #4727af;
}
.step-info .s-btn-2 {
  background-color: #d557c5;
}
.step-info .s-btn-3 {
  background-color: #f28c3d;
}
.step-info .s-btn-4 {
  background-color: #f467a1;
}
.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:#faebd76e;
  padding: 50px 0;
  
}
.ts-box ul {
  display: flex;
  font-size: 14px;
  gap: 2px;
  color: #0f3e4e;
  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;
}
/* END SERVICES */
/* MODAL */
.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-size: 100%;
}
.git-image .con-side {
  background-image: linear-gradient(144deg, rgba(1, 14, 15, 1) 0%, rgb(15 57 73) 100%);
  padding: 40px 40px;
}
.git-image h2 {
  color: #fff;
  font-size: 44px;  
  margin: 0 0 20px;
  font-family:'Poppins';
}
.quotepop {
  background: #000000c2;
  backdrop-filter: blur(4px);
}
.git-image .con-side input,
.git-image .con-side textarea {
  width: 100%;
  border-radius: 0;
}
.iti {
  width: 100%;
}
/* .git-image .white-btn {
  border-radius: 0;
  padding: 10px 30px;
} */
.git-image .white-btn:hover {
  border-color: #fff;
  color: #fff;
}
/* END MODAL */
/* CONTACT */
.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;
}
/* END CONTACT */
/* ORANGE SECTION */
.org-sec {
  background-image: linear-gradient(144deg, #f67700 0%, #0f3e4e 100%);
  padding: 15px 0;
  overflow: hidden;
}
.bp-icon {
  width: 75px;
  display: flex;
  align-items: center;
  border-radius: 15px;
  justify-content: center;
  height: 75px;
  background-color: #FFF3C8;
  margin: 0 auto 10px;
  box-shadow: 0px 10px 30px #0000003b;
}
.dp-txt {
  text-align: center;
  font-family: 'Poppins';
  color: #fff;
  font-size: 24px;
}
.org-sec p {
  margin: 0;
  color: #fff;
}
/* END ORANGE SECTION */
/* PURPLE CTA */
.purple-cta {
  background: linear-gradient(156deg, rgb(15 62 78) 0%, rgba(15,0,18,1) 100%);
  margin: 40px 0 100px;
  color: var(--white-color);
}
.purple-cta .container {
  position: relative;
}
.purple-cta .container .cta-bgmark {
  position: absolute;
  right: 40px;
  bottom: 0;
  z-index: 1;
  width: 45%;
  opacity: .4;
}
.purple-cta .container .row {
  position: relative;
  z-index: 2;
}
.purple-cta .img-holder img {
  max-width: 70%;
  margin: 0 auto 0;
  display: block;
}
.purple-cta .img-holder {
  margin: -50px 0 -50px;
}
.purple-cta .content-side {
  padding: 10px 0;
}
/* END PURPLE CTA */
.navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
  /* Ensures the dropdown is attached to the link */
}
.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 {
  /* width: 100%;
  left: 0;
  top: 60px; */
  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;
}
.step-sec .sec-head {
  margin: 0 0 40px;
}
.black-outline-btn {
  border: 2px solid var(--text-color);
  /* display: inline-block; */
}
.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: 175px;
}
.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 {
  color: #fff;
}
.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;
}
.quotepop h2 {
    line-height: 38px;
    font-size: 35px;
    margin: 0 0 10px;
}
.quotepop h4 {
    color: #fff;
    margin: 0 0 15px;
}
.quotepop .con-side {position: relative;}
.quotepop .con-side:after {
  position: absolute;
    right: 37px;
    top: 50px;
    content: '';
    background-repeat: no-repeat;
    width: 100px;
    height: 100px;
    background-size: 100%;
    -webkit-animation: opacity 1s infinite linear;
}
.quotepop .form-select {
    border-radius: 0;
}
.disclaimer p {
    font-size: 14px;
    text-align: center;
}
.disclaimer {
    background-color: #dd5c00;
    color: var(--white-color);
    padding: 6px 0;
}
.va-box iframe {
  width: 100%;
}
/* RESPONSIVE */
@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: 53px;
    line-height: 65px; 
  }
  .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;
}
}
@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;
}
.main-banner .content-side img {
  width: 100%;
}
.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;
}
}
@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;
}
.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: 130px 0 20px;
  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: 'Poppins';
  font-size: 60px;
  line-height: 58px;
  margin: 0 0 20px;
}
.main-banner .content-side h1{
  display: none;
}
.company-logo .button-header {
  justify-content: center;
}
}
@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 {
  background: none;
  border: none;
  min-width: auto;
  padding: 0;
}
.button-header .white-btn i, .button-header .yellow-outline-btn i {
  margin-left: 0;
}
.button-header .white-btn span, .button-header .yellow-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: 80px 0 20px;
}
}
@media only screen and (max-width : 578px) {
  .navbar-brand img {
    max-width: 160px;
  }
  .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: 110px 0 20px;
}
.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: 30px;
  text-align: center;
}
.main-banner .form-box p {
  text-align: center;
}
.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: 42px;
}
.pack-head {
  margin: 0 0 20px;
}
.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: 60px;
    top: -150px;
}
.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 12px;
}
.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;
}
.rm-box:last-child {
    margin-top: 20px;
}
.quotepop .con-side:after {
    right: 15px;
    top: 45px;
    width: 80px;
    height: 80px;
    background-size: 100%;
}
.main-banner {
  background-repeat: no-repeat;
}
.owl-packs .sec-head br {
  display: none;
}
.quotepop h2 {
    line-height: 30px;
}
.pack-head strong {
    font-size: 19px;
}
.pack-head strike {
    font-size: 18px;
}
}
@media only screen and (max-width : 480px) {}

@media (max-width: 640px) {
  .desktop-only {
    display: none;
  }
}