/*@import url('https://fonts.googleapis.com/css2?family=Anton+SC&family=Poppins:wght@400;500;600;700;800&display=swap');*/
/* 
font-family: "Poppins", serif;
font-family: "Anton SC", sans-serif;
 */
:root {
  /*--heading-font: "Anton SC", sans-serif;*/
  --heading-font: "Aladin", serif;
  --text-font: "Poppins", sans-serif;
  --selection-color: #b13d339a  ;
  --brown-color: #B13E33;
  --black-color: #000000;
  --white-color: #ffffff;
  --text-color: #160E17;
  --ease: all 350ms ease-in-out;
  --scrollbar: #F5F5F5;
  --purple-color: #701A81;
  --dred-color: #270603;
  --pink-color: #E7376B;
  --orange-color: #ff4d12;
  --border-color: #d4d6db59;  
}
html,
body {
  height: 100%;
}
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;
}
/* .container {
  max-width: 1480px !important;
} */
.color_text {
  color: #8d0003;
  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;
  font-family: var(--heading-font);
}

.quotepop .country {
  color: #B13E33;
}
.form-select{
    border-radius: 0;
}
.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/v1743630784/gold_tnmqnr.webp);
  /*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%;
  -webkit-animation: opacity 1s infinite linear;
}
.sec-head h2 {
  font-size: 60px;
  line-height: 60px;
  margin: 0 0 15px;
  color: #B13E33;
}
.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: .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{
  -webkit-animation: updown 3s infinite linear;
}
.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%, #E7376B 50%, #E7376B 100%);
  background-size: 202%;
  background-position: -1px 0;
  border-color: #E7376B;
  color: var(--white-color);
}
.dred-outline-btn.icon-style{
  background: linear-gradient(90deg, rgba(194, 57, 0, 0) 0%, rgba(194, 57, 0, 0) 50%, #3C0400 50%, #3C0400 100%);
  background-size: 202%;
  background-position: -1px 0;
  border-color: #3C0400;
}
.dred-btn.icon-style{
  background: linear-gradient(90deg, #3C0400 0%, #3C0400 50%, rgba(0,0,0,1) 50%, rgba(0,0,0,1) 100%);
  background-size: 202%;
  background-position: -1px 0; 
  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, #701A81 0%, #701A81 50%, rgba(0,0,0,1) 50%, rgba(0,0,0,1) 100%);
  background-size: 202%;
  background-position: -1px 0;
  color: var(--white-color);
}
.pink-btn.icon-style{
  background: linear-gradient(90deg, #E7376B 0%, #E7376B 50%, rgba(0,0,0,1) 50%, rgba(0,0,0,1) 100%);
  background-size: 202%;
  background-position: -1px 0;
  color: var(--white-color);
}  
.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,.dred-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: 18px;
  min-width: 190px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--ease);
  font-weight: normal;  
}
.icon-style:hover{
  background-position: right -1px center;
}
.icon-style i {
  width: 45px;
  min-width: 45px;
  height: 45px;
  background: linear-gradient(137deg, rgba(138,22,15,1) 0%, rgba(215,50,39,1) 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;
  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;
}
.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;
  background-color: var(--dred-color);
}
.navbar {
  transition: var(--ease);
}
/* END HEADER */
/* BANNER */
.main-banner {
 padding: 140px 0 100px;
  background-color: #D73227;
  /* background-image: linear-gradient(180deg, rgba(254,221,18,1) 0%, rgba(245,103,61,1) 100%);; */
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.pos-abs{
  position: absolute;
}
.chicken-glow {
  left: 50%;
  transform: translateX(-50%);
}
.main-banner .content-side h1 {
  font-size: 79px;
  line-height: 77px;
  margin: 0 0 20px;
  padding-right: 60px;
}
.main-banner .form-box {
  max-width: 500px;
  background-color: #fff; 
  padding: 40px 50px 40px;
  float: right;
  color: #000;
  position: relative;
  z-index: 3;
}
.main-banner .form-box .country{
    color: #B13E33;
}
.main-banner .form-box h3 {
  font-size: 38px;
  line-height: 40px;
  margin: 0 0 15px;
}
.main-banner .form-box .form-control {
  border-color: #F46613;
  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;
  z-index: 9;
}
.main-banner .content-side {
  padding: 0 17% 0 0;
  position: relative;
  color: #E8DED2;
}
.main-banner .dual-btn {
  margin: 30px 0 40px;
}
.main-banner .content-side p {
  font-size: 18px;
}
.banner-shade-right {
  right: 0;
  top: 0;
  z-index: 1;
}
.banner-shade-left {
  bottom: 0;
  left: 0;
  z-index: 1;
}
.bfood-1 {
  top: 0;
  left: 0;
  z-index: 2;
}
.bfood-2 {
  top: 0;
  right: 0;
  z-index: 2;
}
.bfood-3 {
  bottom: 0;
  left: 0;
  z-index: 2;
}
.bfood-5 {
  bottom: 30px;
  right: 20px;
  z-index: 2;
}
.curl-up-offwhite {
  width: 100%;
  bottom: 0;
  left: 0;
  height: 50px;
  background-color: #efdebb;
  z-index: 3;
}
.curl-up-offwhite:before {
  content: '';
  width: 100%;
  height: 50px;
  background-image: url(https://res.cloudinary.com/dvmnlnikb/image/upload/v1743714754/curl-offwhite-up_yixt5e.webp);
  position: absolute;
  top: -30px;
  left: 0
}
.banner-cartoon {
  left: 39%;
  bottom: -70px;
  z-index: 5;
}
/* END BANNER */
/* WANT */
.want-sec .container {
  position: relative;
}
.want-sec {
  padding: 130px 0 0;
  overflow: hidden;
}
.want-sec .img-holder img {
  position: relative;
  z-index: 3;
  margin: 0 0 -6px;
}
.want-sec p {
  margin-bottom: 30px;
}
/* END WANT */
/* PUR SEC */
.pur-sec {
  padding: 20px 0 0;
  position: relative;
  background-color: #063822;
  color: var(--white-color);
  background-image: url(https://res.cloudinary.com/dvmnlnikb/image/upload/v1743714765/food-bg_vdfhmw.webp);
  background-position: top left;
  z-index: 3;
}
.pur-sec h2 {
  color: #fff;
}
.yellow-bg {
  bottom: 0;
  right: 0;
}
.pur-sec .container {
  position: relative;
}
.pur-sec:before {
  position: absolute;
  top: -27px;
  width: 100%;
  height: 30px;
  content: '';
  background-image: url(https://res.cloudinary.com/dvmnlnikb/image/upload/v1743714750/curl-green-up_wwvb6u.webp);
}
.chef-side-food {
  right: 4%;
  top: 23%;
}
.pur-sec strong {
  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;
}
/* END PUR SEC */
/* CREATE SEC */
.create-sec {
  padding: 0 0 60px;
  position: relative;
}
.create-sec .cen-head {
  margin: 0 auto 70px;
}
.cs-box {
  padding: 0px 30px 40px 30px;
  border-radius: 10px;
  transition: var(--ease);
  margin: 0px 0 -17px;
  position: relative;
  min-height: 309px;
}
.cs-area .slick-slide {
  margin: 70px 0 30px 0;
  padding: 0 15px;
}
.cs-text p {
  margin: 0;
}
.cs-icon {
  background-color: var(--white-color);
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0px 0 -10px;
  transform: translateY(-36px);
}
.cs-icon img {
  width: 39px;
  margin: 0;
}
/* .cs-box:hover img {
  filter: invert(1);
} */
.cs-area .slick-arrow img {
  width: 100%;
}
.cs-area button {
  width: 35px;
  height: 55px;
}
.cs-area button:before {
  content: none;
}
.csb-1 {
  background-color: #CE4D63;
}
.csb-2 {
  background-color: #227038;
}
.csb-3 {
  background-color: #B49316;
}
.csb-4 {
  background-color: #3B5884;
}
.csb-5 {
  background-color: #804693;
}
.csb-1:before {
  background-color: #FF7A91;
}
.csb-2:before {
  background-color: #36B55A;
}
.csb-3:before {
  background-color: #FED63F;
}
.csb-4:before {
  background-color: #5C90DE;
}
.csb-5:before {
  background-color: #4f2d5a;
}
.cs-text {
  color: #E8DED2;
}
.cs-text h4 {
  text-transform: capitalize;
}
.cs-box:before {
  position: absolute;
  left: 0;
  top: -61px;
  width: 100%;
  height: 100%;
  content: ''; 
  z-index: -1;
  border-radius: 10px;
}
.cs-area {
  margin: 80px 0 0;
  padding: 0 20px;
}
/* END CREATE SEC */
/* 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;
}
.covers-slider img {
  width: 100%;
}
 /* END EMBARK  */
 /* PINK CTA */
 .pink-sec {
  position: relative;
  background-color: #DC5100;
  padding: 60px 0; 
}
.pink-sec .sec-head {
  color: #2D0036;
}
.pink-sec .form-control {
  background: none;
  border-radius: 0;
  border-color: var(--white-color);
  box-shadow: none;
  border-width: 0 0 2px 0;
}
.pink-sec .form-control::placeholder {
  color: var(--white-color);
}
.pink-sec h2 {
  color: #E8DED2;
}
.pink-sec:before {
  position: absolute;
  top: -27px;
  width: 100%;
  height: 30px;
  content: '';
  background-image: url(https://res.cloudinary.com/dvmnlnikb/image/upload/v1743714756/curl-orange-up_ngnbje.webp);
}
.pink-sec:after {
  position: absolute;
  bottom: -20px;
  width: 100%;
  height: 30px;
  content: '';
  background-image: url(https://res.cloudinary.com/dvmnlnikb/image/upload/v1743714755/curl-orange-down_abuhkk.webp);
}
 /* END PINK CTA */
 /* KID */
 .kid-sitting {
  padding: 70px 0 70px;
}
.kid-sitting h2 {  
  margin: 0 0 25px;
}
 /* END KID */
 /* OWL */
 .owl-sec{
  padding: 20px 0 0;
 background-color: #691912;
 background-image: url(https://res.cloudinary.com/dvmnlnikb/image/upload/v1743714813/owl-food-bg_k95259.webp);
 background-size: cover;
 background-attachment: fixed;
 color: var(--white-color);
 mask-image: url(https://res.cloudinary.com/dvmnlnikb/image/upload/v1743714810/oval_z8api8.webp);
 mask-mode: alpha;
 mask-repeat: no-repeat;
 mask-size: 100% 100%;
 mask-position: center;
 position: relative;
 overflow: hidden;
}
.owl-sec h2 {
  color: #E8DED2;
}
.owl-sec .content-side {
  margin: 110px 0 0;
}
.owl-sec .img-holder {
  text-align: right;
  margin: 10px 0 40px;
}
.owl-sec .img-holder img {
  max-width: 76%;
}
.owl-sec p {
  margin: 0 0 30px;
}
.owl-sec .container {
  position: relative;
}
.yellow-color-overlay {
  right: -240px;
  top: -170px;
  z-index: -1;
  width: 1000px;
  height: 1000px;
}
 /* END OWL */
 /* PORTFOLIO */
 .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;
}
 /* END PORTFOLIO */
 /* PURPLE CTA */
 .dpink-sec {
  position: relative;
  background-color: #063822;
  padding: 60px 0;
}
.dpink-sec h2 {
  color: #E8DED2;
}
.dpink-sec .sec-head {
  color: var(--white-color);
}
.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;
}
.dpink-sec:before {
  position: absolute;
  top: -27px;
  width: 100%;
  height: 30px;
  content: '';
  background-image: url(https://res.cloudinary.com/dvmnlnikb/image/upload/v1743714750/curl-green-up_wwvb6u.webp);
}
.dpink-sec .dred-outline-btn {
  color: var(--white-color);
}
 /* END PURPLE CTA */
 /* BLACK BAR */
 .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;
}
 /* END BLACK BAR */
  /* TALK */
 .talk-with .row {
  position: relative;
  z-index: 2;
}
.talk-with .boy-read {
  position: absolute;
  bottom: -44px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 563px;
}
.talk-with .container {
  position: relative;
}
.talk-with {
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}
.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;
  -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: #B13E33;
  padding: 40px 40px;
  border-radius: 20px;
  float: right;
  margin: 0 0 120px;  
  position: relative;
  z-index: 3;
  color: #E8DED2;
}
.talk-form h4 {
  font-size: 40px;
  text-transform: capitalize;
}
.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;
  color: #E8DED2;
}
.talk-form .form-control::placeholder{
  color: #E8DED2;
}
 /* END TALK */
/* 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: #FFC703;
}
.float i {
    width: 45px;
    height: 45px;
    background:linear-gradient(144deg, #ffc703 0%, #dc5100 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;  
}
/* END LEFT ICONS */
/* GRAD SEC */
.grad-bg .want-sec img {
  max-width: 75%;
}
.grad-bg > .want-sec strong {
  font-weight: normal;
  font-family: var(--heading-font);
  font-size: 20px;
  letter-spacing: 1px;
}
.grad-bg > .want-sec p {
  margin: 0 0 0;
}
.grad-bg > .want-sec li {
  margin: 0 0 18px 76px;
  position: relative;
}
.grad-bg > .want-sec li span {
  position: absolute;
  left: -80px;
  border-right: 2px solid #b13e33;
  width: 66px;
  padding: 0 10px 0 0;
  top: 6px;
}
.grad-bg > .want-sec li span img {
  width: 100%;
  max-width: 100%;
}
/* GRAD SEC */
/* TESTI */
.testio-sec {
  padding: 60px 0 60px;
}
.testio-sec .sec-head {
  margin-bottom: 50px;
}
.tes-box {
  border-radius: 15px;
  padding: 40px 40px;
  position: relative;  
  text-align: center;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--white-color);
  box-shadow: 4px 4px 10px #0000003b;
}
.testi-slider .slick-slide {
  padding: 25px 10px;
  transition: var(--ease);
}
.testi-slider .slick-slide strong {
  font-weight: normal;  
  font-size: 22px;
}
.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: .5;
  bottom: 10px;
  right: 10px;
  width: 120px;
}
.t-icon {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 320px;
  opacity: .2;
}
.grad-bg {
  background-image: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 36%, #FFC703 100%);
  position: relative;
}
.grad-bg:after {
  position: absolute;
  bottom: -20px;
  width: 100%;
  height: 30px;
  content: '';
  background-image: url(https://res.cloudinary.com/dvmnlnikb/image/upload/v1743714757/curl-yellow-down_gzduef.webp);
}
.ts-outer {
  position: relative;
}
.testi-slider .slick-slide {
  transform: scale(0.9);  
}
.testi-slider .slick-center {
  transform: scale(1.06);  
}
/* END TESTI */
/* 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;
}
/* FOOTER */
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;
  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, #B13E33 0%, #B13E33 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;
}
/* 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 {
  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;
}
/* 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: '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;
  /* background: linear-gradient(90deg, rgba(241,129,73,1) 0%, rgba(245,102,171,1) 50%, rgba(213,87,197,1) 50%, rgba(97,46,198,1) 100%); */
}
.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;
}
/* 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-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: #D73227;
  left: -15px;
  bottom: -15px;
}
.git-image h2 {
  font-size: 30px;  
  margin: 0 0 0;
  font-family: var(--heading-font);
  
}
.git-image .f-head p {
  font-family: var(--heading-font);
  font-size: 25px;
  
}
.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: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 {
  padding: 0 0 60px;
  position: relative;
  background-color: #efdebb;
}
.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;
}
.org-sec:after {
  content: '';
  position: absolute;
  bottom: -28px;
  left: 0;
  width: 100%;
  height: 30px;
  background-image: url(https://res.cloudinary.com/dvmnlnikb/image/upload/v1743714751/curl-offwhite-down_s4tfqh.webp);
}
/* END ORANGE SECTION */
.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;
}
.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: -90px;
  top: -70px;
  width: 120px;
  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;
}
.img-holder img {
  width: 100%;
}
.main-banner ul {
  list-style: disc;
  padding: 0 0 0 20px;
}
.sec-head span {
  font-weight: normal;
  font-family: var(--heading-font);
  display: block;
  margin: 0 0 3px;
  font-size: 22px;
 
}
.ityped-cursor {
  animation: blink 0.7s infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}

.disclaimer {
  background-image: linear-gradient(144deg, #B13E33 0%, #B13E33 100%);
  color: var(--white-color);
  padding: 6px 0;
}
.disclaimer p {
  font-size: 14px;
  text-align: center;
}
/* 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: 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%;
}
.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: 410px;
}
.talk-with .sec-head + p {
  width: 450px;
  padding-right: 70px;
}
.banner-cartoon {
  left: 34%;
  bottom: -130px;
  width: 280px;
}
.curl-up-offwhite {
  bottom: 0;
  height: 40px;
  background-color: #efdebb; 
}
.org-sec {
  padding: 0 0 50px;
}

.want-sec-1 .content-side {
  margin: 0 0 100px;
}

.pur-sec .sec-head h2 {
  font-size: 49px;
  line-height: 52px;
}

.pur-sec .img-holder {
  margin: 0 0 -150px;
}
.cs-box {
  min-height: 369px;
}
.cs-icon {
  margin: 0px 0 -47px;
  transform: translateY(-68px);
}
.cen-head {
  max-width: 100%; 
}
.owl-sec .content-side {
  margin: 60px 0 70px;
}
.owl-sec .row {
  align-items: center;
}
.dpink-sec > img {
  width: 190px;
}
}
@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;
}
.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;
}
.talk-with .boy-read {
  width: 310px;
}
.talk-with .lft-book-1 {
  width: 120px;
}
.talk-with .ryt-book-1 {
  width: 130px; 
}
.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;
}
.main-banner .form-box h3 {
  font-size: 35px;
  line-height: 35px;
}
.main-banner .form-box {
  max-width: 410px;
  padding: 30px 30px 30px;
}
.banner-cartoon {
  left: 38%;
  bottom: -140px;
  width: 240px;
  z-index: -1;
}
.curl-up-offwhite {
  bottom: 0;
  height: 10px; 
}
.curl-up-offwhite:before {
  height: 30px;
}
.org-sec {
  padding: 0 0 20px;
}
.bfood-1 {
  top: 50px;
  width: 280px;
}
.bfood-2 {
  width: 360px;
}
.bfood-3 {
  width: 330px;
}
.bfood-5 {
  bottom: 50px;
  right: 20px;
  width: 190px;
}
.main-banner {
  padding: 140px 0 120px; 
}
.banner-cartoon {
  left: 40%;
  bottom: -110px;
  width: 207px; 
}
.yellow-bg {
  bottom: 0;
  right: 0;
  width: 670px;
}
.pur-sec .sec-head h2 {
  font-size: 41px;
  line-height: 46px;
}
.pur-sec .img-holder {
  margin: 0 0 -246px;
}
.chef-side-food {
  right: 1%;
  top: 38%;
  width: 170px;
}
.cs-box {
  min-height: 320px;
}
.yellow-color-overlay {
  right: -180px;
  top: -20px;
  width: 700px;
  height: 700px;
}
}
@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;
}
.company-logo strong {
  font-family: var(--heading-font);
  font-weight: normal;
  text-transform: uppercase;
}
.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 30px;
  color: var(--white-color);
}
.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: .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{
  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;
}
.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;
  margin: 0;
}
.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;
}
.navbar .icon-style span {
  font-size: 16px;
}
.bfood-1 {
  top: 60px;
  width: 230px;
}
.bfood-2 {
  width: 290px;
}
.banner-cartoon {
  display: none;
}
.banner-shade-right {
  width: 340px;
}
.banner-shade-left {
  width: 270px;
}
.org-sec {
  padding: 0 0 15px;
}
.want-sec-1 .content-side {
  margin: 0 0 10px;
}
.want-sec-1 {
  padding: 50px 0 0;
}
.pur-sec {
  padding: 60px 0 0;
}
.pur-sec .img-holder {
  margin: 0 auto 0;
  text-align: center;
}
.pur-sec .img-holder img {
  max-width: 450px;
}
.chef-side-food {
  right: 1%;
  top: auto;
  width: 220px;
  bottom: 100px;
}
.owl-sec .content-side {
  margin: 35px 0 -20px;
}
.left-color-overlay {
  width: 300px;
  bottom: 0;
}
.yellow-color-overlay {
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.owl-sec {
  mask-image: none;
}
.owl-sec .img-holder {
  text-align: center;
}
.owl-sec .img-holder img {
  max-width: 320px;
}
.owl-sec .img-holder {
  bottom: -43px;
}
.grad-bg .want-sec .img-holder {
  text-align: center;
}
.grad-bg .want-sec .img-holder img {
  max-width: 300px;
}
.grad-bg > .want-sec .row {
  flex-direction: column-reverse;
  gap: 35px;
}
}
@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: 10px;
}
.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;
}
.form-holder > span {
  right: 56px;
}
.main-banner .dual-btn {
  margin: 0 0 0px;
}
.bannerbook03 {
  top: -40px;
  width: 60px;
}
.main-banner {
  padding: 110px 0 70px;
}
.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;
}
.books-icons img {
  margin: 0 auto;
}
.pur-sec ul {
  margin: 0 0 40px;
}
.create-sec br {
  display: none;
}
.create-sec .cen-head {
  margin: 0 auto 20px;
}
.cs-area {
  margin: 40px 0 0; 
}
.cs-box {
  min-height: 390px;
}
.portfolio-box .row {
  justify-content: center;
}
.grad-bg > .want-sec .dual-btn {
  justify-content: center;
  display: flex;
  gap: 5px;
}
}
@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 80px;
}
.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: 30px;
}
.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 {
  /* flex-direction: column; */
}
.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: 60px 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: 35px;
  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: 23px;
  margin: 0 0 0;
}
.quotepop .owl-right {
  left: -20px;
  top: -46px;
  width: 80px;
}
.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;
}
.git-image .f-head p {
  font-size: 18px;
}
.f-head {
  padding-right: 70px;
}
.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: 70px 20px 30px;
}
.quotepop .modal-content {
  margin-top: 20px;
}
.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: 16px;
}
.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: 17px;
  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: 5px 0;
  position: relative;
}
.pink-circle {
  width: 180px;
  height: 180px;
  top: -45px;
  left: 20%;
}
.yellow-circle {
  left: 12%;
  top: 0px;
  width: 100px;
  height: 100px;
}
.sec-head h2 {
  font-size: 33px;
  line-height: 33px;
}
.want-sec .pencil{
  display: none;
}
.want-sec {
  padding: 10px 0 80px;
}
.globe-box {
  width: 60px;
}
.box-pencil {
  left: 0;
  top: 19%;
  width: 40px;
}
.cs-box {
  min-height: auto;
}
.owl-sec {
  padding: 20px 0 0;
  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;
}
.cen-head br {
  display: none;
}
.quotepop .row:after {
  left: -12px;
  bottom: -12px;
}
.bannerbook02 {
  display: none;
}
.bfood-2 {
  width: 170px;
  top: 60px;
}
.bfood-1 {
  top: 94px;
  width: 170px;
}
.chicken-glow {
  display: none;
}
.bfood-5 {
  bottom: 30px;
  right: 20px;
  width: 110px;
}
.bfood-3 {
  width: 170px;
  bottom: 20px;
}
.want-sec-1 {
  padding: 70px 0 0;
}
.want-sec .img-holder {
  margin-top: 40px;
}
.pur-sec {
  padding: 40px 0 0;
}
.pur-sec .sec-head h2 {
  font-size: 29px;
  line-height: 35px;
}
.yellow-bg {
  width: 380px;
}
.chef-side-food {
  width: 100px;
  bottom: 80px;
}
.cs-area .slick-prev {
  left: -3px;
}
.cs-area .slick-next {
  right: -3px;
}
.kid-sitting {
  padding: 70px 0 70px;
}
.owl-sec .img-holder img {
  max-width: 80%;
}
.grad-bg .want-sec .img-holder img {
  max-width: 80%;
}
.talk-with .sec-head h2 br {
  display: none;
}
.ftr-copy {
  font-size: 14px;
}
.quotepop .con-side::after {
  right: 26px;
  top: 61px;
  width: 65px;
  height: 65px;
}
.sec-head p {
  font-size: 16px;
}
}
@media only screen and (max-width : 480px) {
  header:after{
    content: none;
  }
}