@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Boxicons */
@font-face {
  font-family: boxicons;
  src: url("../fonts/boxicons/boxicons.ttf");
}

@font-face {
  font-family: Recoleta;
  src: url("../fonts/recoleta/Recoleta-RegularDEMO.otf");
}

@font-face {
  font-family: bright-marching;
  src: url("../fonts/bright-marching/BrightMarching-Regular.otf");
}

/* Root Styling */
:root {
  --c1: #D052FF;
  --c2: #001B46;
  --f1: 'poppins';
  --f2: 'Recoleta';
  --f3: 'bright-marching';
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.img__contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.img__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* General Styling */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style-type: none;
  font-family: 'Roboto', sans-serif;
}

::selection {
  background-color: var(--c1);
  color: #fff;
}

a {
  display: inline-block;
  color: #000;
  transition: all 300ms ease-in-out;
}

a:hover {
  color: #000;
}

ul,
ol,
dl {
  margin-bottom: 0;
  padding: 0;
}


p,
li,
a,
span,
input,
input::placeholder,
button {
  font-family: var(--f1);
}


.imgFluid {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  transition: all 300ms ease-in-out;
  outline: 0;
}

i.bx {
  font-family: boxicons;
  vertical-align: middle;
}

/* button style */

.themebtn {
  padding: 12px 35px;
  background: var(--c1);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  z-index: 99;
  border: none;
  box-shadow: 0px 0px 0px 1px var(--c1);
}

.themebtn:hover {
  color: #fff;
  box-shadow: 0px 0px 0px 1px #fff;
}

.themebtn::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  -webkit-animation: shine .75s;
  animation: shine 2s linear infinite;
}

.themebtn::after {
  position: absolute;
  content: '';
  width: 0;
  right: 0;
  height: 100%;
  background-color: var(--c2);
  top: 0;
  transition: 400ms ease;
  z-index: -1;
}

.themebtn:hover::after {
  width: 100%;
  left: 0;
}

.themebtn:hover span {
  animation: tada 1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* button style */


/* header css start */

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0px;
}

a.header__logo img {
  width: 202px;
  height: auto;
  object-fit: contain;
}

ul.header-main__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
}

ul.header-main__nav li a {
  font-size: 15px;
  font-family: var(--f1);
  position: relative;
  text-transform: capitalize;
  font-weight: 500;
  color: #ffffff;
}

ul.header-main__nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--c1);
  transition: all 500ms;
  transform: translateX(-50%);
}

ul.header-main__nav li a.active::after {
  width: 100%;
}

ul.header-main__nav li a:hover::after {
  width: 100%;
  left: 50%;
}

ul.header-main__nav li a:hover {
  color: var(--c1);
}

ul.header-main__nav li a.active {
  color: var(--c1);
}


/* header css end */

/* baner css start */

.home_banner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  min-height: 100vh;
  padding-top: 6rem;
}

.banner_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner_cont {
  position: relative;
  color: #fff;
  z-index: 9;
}

.banner_cont h6 {
  font-size: 24px;
  text-transform: uppercase;
  font-family: var(--f1);
  color: var(--c1);
  font-weight: 500;
}

.banner_cont h3 {
  font-size: 72px;
  font-family: var(--f2);
  text-transform: capitalize;
  margin: 10px 0px;
  line-height: 1;
  position: relative;
}

.banner_cont p {
  font-size: 14px;
  line-height: 1.8;
}

a.blue {
  background: var(--c2);
  box-shadow: 0px 0px 0px 1px #ffffff;
}

a.blue:hover:after {
  display: none;
}

a.blue:hover {
  background: transparent;
  box-shadow: 0px 0px 0px 1px #ffffff;
  color: #ffffff;
  text-shadow: 0px 0px 0px;
}

.header_btn {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 17px;
}

.themebtn i {
  font-size: 16px;
  transform: rotate(135deg);
  margin-left: 3px;
  margin-bottom: 4px;
  transition: 500ms;
}

.themebtn:hover i {
  transform: rotate(180deg) translateX(-10px);
}

.header {
  position: absolute;
  width: 100%;
  z-index: 99;
  padding: 20px 0px;
}

.nav {
  gap: 59px;
}

.banner_btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

.banner_cont h3 span {
  font-family: var(--f3);
  color: var(--c1);
}

.banner_cont h3 mark {
  background: transparent;
  color: #fff;
  font-family: var(--f2);
  position: relative;
  padding: 0;
}

.banner_cont h3 mark::before {
  position: absolute;
  content: '';
  bottom: 23px;
  left: 0;
  width: 100%;
  height: 10px;
  background: #d052ffa8;
  border-radius: 50px;
  z-index: -1;
}

.banner_cont h5 {
  text-transform: uppercase;
  font-size: 31px;
  font-family: var(--f1);
  font-weight: 400;
  padding: 5px 9px;
  box-shadow: 0px 0px 0px 1px #fff;
  border-radius: 8px;
  width: max-content;
  margin: 14px 0px;
}

.chat_form {
  padding: 60px 40px;
  width: 73%;
  float: inline-end;
  background: #36293a;
  border-radius: 17px;
  box-shadow: 0px 0px 0px 1px var(--c1);
  position: relative;
}

.form_fields input,
.form_fields textarea {
  width: 100%;
  height: 47px;
  background: transparent;
  outline: 0;
  border: none;
  color: #fff;
  border-bottom: 1px solid #ffffffa8;
  padding: 6px;
}

.form_fields {
  margin-bottom: 19px;
}

.form_fields input::placeholder,
.form_fields textarea::placeholder {
  color: #ffffffe0;
  text-transform: capitalize;
  font-size: 14px;
}

.form_fields textarea {
  height: 100px
}


.chat_form h3 {
  font-size: 34px;
  color: #fff;
  font-family: var(--f2);
  margin-bottom: 30px;
  text-transform: capitalize;
}

.chat_form h3 span {
  color: var(--c1);
  font-family: var(--f2);
  line-height: 1;
}

.chat_form::after {
  position: absolute;
  content: '';
  width: 130px;
  height: 130px;
  background: red;
  top: -40px;
  right: -40px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.chat_form::before {
  position: absolute;
  content: '';
  width: 150px;
  height: 150px;
  background: url(../images/form_aviator1.png);
  top: -40px;
  right: -40px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}

.chat_form::after {
  position: absolute;
  content: '';
  width: 150px;
  height: 150px;
  background: url(../images/form_aviator1.png);
  bottom: -40px;
  left: -40px;
  top: auto;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}

a.scroll {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  background: var(--c1);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 21px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

a.scroll img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: arrowBounce 1.8s ease-in-out infinite;
  will-change: transform;
}

@keyframes arrowBounce {
  0% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(12px);
  }

  50% {
    transform: translateY(0);
  }

  70% {
    transform: translateY(8px);
  }

  100% {
    transform: translateY(0);
  }
}

a.scroll::before {
  position: absolute;
  content: '';
  width: 143%;
  height: 154%;
  background: url(../images/arrow_text.png);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  animation: rotate 13s infinite linear;
  display: none;
}

@keyframes rotate {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }

}

.story_section {
  position: relative;
  padding: 70px 0px;
  background: #1d1917f0;
}

.story_img img {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.story_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.story_img {
  width: 100%;
  height: 588px;
  text-align: center;
}

.story_cont h3 {
  font-size: 50px;
  font-family: var(--f2);
}

.story_cont h3 span {
  font-family: var(--f2);
  position: relative;
}

.story_cont h3 span::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 12px;
  background: #da76ff94;
  bottom: 7px;
  left: 0;
  border-radius: 50px;
  z-index: -1;
}

.story_cont p {
  font-size: 13px;
  line-height: 2;
  font-weight: 500;
  margin-bottom: 28px;
}

.story_btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.story_section::before {
  position: absolute;
  content: '';
  width: 210px;
  height: 240px;
  background: url(../images/story_before.png);
  bottom: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  filter: invert(1);
}

.story_btn .blue:hover {
  box-shadow: 0px 0px 0px 1px var(--c2);
  color: var(--c2);
}

.our_services {
  padding: 70px 0px;
  background: #1d1917;
}

.section_title h3 {
  font-size: 55px;
  font-family: var(--f2);
  text-transform: capitalize;
}

.section_title h3 span {
  font-family: var(--f2);
  position: relative;
}

.section_title span::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 12px;
  background: #da76ff94;
  bottom: 18px;
  left: 0;
  border-radius: 50px;
  z-index: -1;
}

.section_title p {
  font-size: 13px;
  line-height: 2.3;
}

.service_item {
  padding: 30px 30px;
  box-shadow: 0px 0px 28px 0px #2b2b2b;
  border-radius: 14px;
  margin: 22px 14px;
  transition: 500ms;
  background: var(--c1);
}

.services_icon {
  width: 80px;
  height: 80px;
  overflow: hidden;
  padding: 3px;
  margin-bottom: 13px;
}

.services_icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0);
  transition: 500ms;
}

.services_cont h3 {
  font-size: 22px;
  font-family: var(--f2);
  line-height: 1;
  transition: 500ms;
  color: #fff;
}

.services_cont p {
  font-size: 13px;
  line-height: 1.9;
  margin: 22px 0px;
  height: 160px;
  overflow-y: auto;
  padding-right: 10px;
  color: #fff;
}

.transparent {
  background: transparent;
  color: var(--c1);
  text-shadow: 0px 0px 0px;
}

.service_item:hover {
  background: var(--c2);
  color: #fff;
}

.service_item:hover .services_cont h3 {
  color: var(--c1);
}

.service_item:hover .services_cont p::-webkit-scrollbar-thumb {
  background-color: var(--c1);
}

.services_cont p::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(165, 165, 165, 0.3);
  background-color: #F5F5F5;
}

.services_cont p::-webkit-scrollbar {
  width: 5px;
  background-color: #F5F5F5;
}

.services_cont p::-webkit-scrollbar-thumb {
  background-color: var(--c2);
}

.transparent:hover::after {
  background: var(--c1);
}

.transparent {
  box-shadow: 0px 0px 0px 1px var(--c1) !important;
}

.slick-dots li {
  width: auto;
  height: auto;
}

.slick-dots li button {
  width: 34px;
  height: 9px;
  background: #d052ff82;
  border-radius: 50px;
  transition: 500ms;
  font-size: 0;
  padding: 0;
}

.slick-dots li button::before {
  display: none;
}

.slick-active button {
  background: var(--c1) !important;
  width: 50px !important;
}


.lets_begin {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 41vh;
}

.begin_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -9;
}

.begin_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.begin_img {
  width: 393px;
  height: auto;
  overflow: hidden;
  margin-top: -80px;
  position: absolute;
  left: 65px;
  bottom: 0;
}

.begin_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.begin_btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lets_begin_cont h3 {
  font-size: 47px;
  color: #fff;
  font-family: var(--f2);
  margin-bottom: 20px;
}

.lets_begin_cont h3 span {
  font-family: var(--f3);
  color: var(--c1);
}

.begin_main {
  position: relative;
  min-height: 46vh;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lets_begin_cont {
  position: relative;
  z-index: 99;
  margin-left: 150px;
}

.begin_books {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

.book_img {
  position: absolute;
}

.begin_books .book_img:nth-child(1) {
  width: 190px;
  height: auto;
  right: -1%;
  bottom: 0;
}

.begin_books .book_img:nth-child(2) {
  width: 163px;
  height: auto;
  bottom: 12px;
  right: 7.6%;
  z-index: -1;
  animation: showBook2 6s infinite ease-in-out;
}

.begin_books .book_img:nth-child(3) {
  width: 148px;
  height: auto;
  right: 17.80%;
  z-index: -2;
  bottom: 10px;
  animation: showBook3 6s infinite ease-in-out;
}

.book_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.expertise {
  padding: 70px 0px;
  background: #1d1917;
}

.exp_step h6 {
  font-size: 17px;
  text-transform: uppercase;
  font-family: var(--f1);
  color: var(--c1);
}

.exp_step h4 {
  font-size: 20px;
  font-family: var(--f2);
  margin: 7px 0px;
}

.exp_step p {
  font-size: 12px;
  margin: 0;
  line-height: 1.9;
  font-weight: 500;
}

.exp_book {
  width: 100%;
  height: 345px;
  overflow: hidden;
  text-align: center;
  margin-top: 60px;
}

.exp_book img {
  width: 78%;
  height: 100%;
  object-fit: cover;
}

.exp_step {
  margin-bottom: 100px;
  position: relative;
  color: #fff;
}

.exp_step::before {
  position: absolute;
  content: '';
  width: 0;
  height: 1px;
  background: var(--c1);
  transition: 500ms;
}

.exp_step::after {
  position: absolute;
  content: '';
  width: 1px;
  height: 0;
  background: var(--c1);
  transition: 1s;
}

.step_1::before {
  left: 60%;
  top: 27%;
  width: 0;
}

.step_2::before {
  left: 40%;
  width: 0;
  top: -9%;
}

.step_4::before {
  right: 70%;
  top: -9%;
  width: 0;
}

.step_3::before {
  right: 105%;
  top: 25%;
  width: 0;
}

.step_1::after {
  left: 180%;
  top: 27%;
}

.step_2::after {
  left: 122px;
  top: -14px;
}

.step_3::after {
  top: 25%;
  right: 160%;
}

.step_4::after {
  left: 30%;
  top: -9.50%;
}

.step_1:hover::before {
  width: 120%;
}

.step_1:hover::after {
  height: 26%;
}

.step_2:hover::before {
  width: 58%;
}

.step_2:hover::after {
  height: 23%;
}

.step_3:hover::before {
  width: 55%;
}

.step_3:hover::after {
  height: 26%;
}

.step_4:hover::after {
  height: 21%;
}

.step_4:hover::before {
  width: 60%;
}

.step_5 {
  width: 60%;
  margin-left: 25%;
  margin-top: 40px;
  margin-bottom: 0;
}

.step_5::before {
  width: 0;
  right: 105%;
  top: 25%;
}

.step_5::after {
  height: 0;
  top: -9px;
  right: 114%;
}

.step_5:hover::before {
  width: 9%;
}

.step_5:hover::after {
  height: 32%;
}

.step_1_active::before {
  width: 120%;
}

.step_1_active::after {
  height: 26%;
}

.step_2_active::before {
  width: 58%;
}

.step_2_active::after {
  height: 23%;
}

.step_3_active::before {
  width: 55%;
}

.step_3_active::after {
  height: 26%;
}

.step_4_active::after {
  height: 21%;
}

.step_4_active::before {
  width: 60%;
}

.step_5_active::before {
  width: 9%;
}

.step_5_active::after {
  height: 32%;
}

.benefits {
  padding: 70px 0px;
  background: #1d1917e8;
}

.benefits_cont h3 {
  font-size: 43px;
  font-family: var(--f2);
}

.benefits_cont h3 span {
  position: relative;
  font-family: var(--f2);
  line-height: 1;
}

.benefits_cont h3 span::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 12px;
  background: #da76ff94;
  bottom: 9px;
  left: 0;
  border-radius: 50px;
  z-index: -1;
}

.benefits_cont p {
  font-size: 14px;
  line-height: 1.8;
  margin: 13px 0px;
  font-weight: 500;
}

.benefits_cont ul li {
  margin-bottom: 21px;
  font-size: 15px;
  font-family: var(--f1);
  font-weight: 700;
  position: relative;
}

.benefits_cont ul {
  padding-left: 24px;
  margin-bottom: 29px;
}

.benefits_cont ul li::before {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background: url(../images/check.png);
  top: 50%;
  left: -24px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.benefit_btn {
  display: flex;
  align-items: center;
  gap: 18px;
}

.benefit_btn .blue {
}

.benefit_btn .blue:hover {box-shadow: 0px 0px 0px 1px var(--c2);color: var(--c2);text-shadow: 0px 0px 0px;}

.benefits_img {
  width: 100%;
  height: 562px;
  overflow: hidden;
}

.benefits_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book_item {
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin: 10px 10px;
}

.book_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.everything_you_need {
  padding: 70px 0px;
  background: #1d1917;
}

.dropdown {
  position: absolute;
  top: 110%;
  width: 100%;
  background: #ffffffe3;
  left: 0;
  padding: 41px 0px;
  z-index: 9999;
  transition: 500ms;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(21px);
}

.dropdown_menu li span {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--f1);
  margin-bottom: 8px;
  display: inline-block;
}

.header-main__nav .dropdown_menu li a {
  color: #000;
  font-size: 13px;
  margin-bottom: 16px;
  padding-left: 20px;
  position: relative;
}

.header-main__nav li:hover .dropdown {
  top: 80%;
  opacity: 1;
  visibility: visible;
}

.header-main__nav .dropdown_menu li a::before {
  position: absolute;
  content: "\ea55";
  width: 16px;
  height: 16px;
  top: 49%;
  transform: translateY(-50%);
  left: 0px;
  font-family: boxicons !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
}

.header-main__nav .dropdown_menu li a:hover {
  transform: translateX(10px);
}

.form_close {}

.home_banner .form_close {
  display: none;
}



/* form css start */


.main_form {
  padding: 40px 30px;
  width: 70%;
  margin: 8px auto 0;
  background: var(--c1);
  border-radius: 20px;
  position: relative;
  box-shadow: 0 0 15px 1px #0004;
  z-index: 999;
  border: 4px solid var(--c5);
}

.form_top_title {
  font-size: 35px;
  font-family: var(--f3);
  color: #fff;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 31px;
  text-align: center;
}

.main_form .input_feild :is(input, textarea) {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  background: #E2DFDF;
  border: none;
  outline: none !important;
  border-radius: 5px;
  margin: 5px 0;
  border: 1px solid #44444430;
  resize: none;
}

.form_close {
  position: absolute;
  width: 40px;
  height: 40px;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 27px;
  color: #ffffffbd;
  top: 4px;
  right: 4px;
  z-index: 999;
  background: var(--c2);
  border-radius: 100%;
}

.popup_form {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: #19272be6;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
}


.popup_form .form_close {
  display: flex;
}

.popup_form.active {
  display: flex;
}

.popup_form .main_form {
  width: 30%;
}

.popup_form .main_form form {
  width: 100%;
}

.popup_form .chat_form {
  width: 28%;
  background: #ffffff38;
  backdrop-filter: blur(15px);
}

.form_close:hover {
  color: #fff;
  box-shadow: 0px 0px 0px 10px var(--c1);
}

/* form css end */


/* inner pages css start */



.inner_banner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 60vh;
  background: #1d1917;
  position: relative;
  overflow: hidden;
  padding-top: 1rem;
}

.inner_cont h4 {
  font-size: 60px;
  margin: 0;
  text-transform: capitalize;
  font-family: var(--f2);
  line-height: 1;
  font-weight: 800;
  color: #fff;
}

.inner_sub_banner {
  padding: 70px 0px;
  background: #1d1917;
}

.sub_banner_cont h3 {
  font-size: 33px;
  font-family: var(--f2);
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 14px;
}

.sub_banner_cont p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 11px;
}

.sub_banner_cont {
  padding-right: 28px;
  color: #fff;
}

.inner_sub_cont {
  overflow-y: auto;
}

.inner_sub_cont::-webkit-scrollbar-track {
  background-color: rgb(245, 245, 245);
}

.inner_sub_cont::-webkit-scrollbar {
  width: 2px;
  background-color: rgb(245, 245, 245);
}

.inner_sub_cont::-webkit-scrollbar-thumb {
  background-color: var(--c1);
}

/* inner pages css end */

.inner_sub_banner .chat_form {
  background: var(--c2);
}

.thankyou_btn {
  text-align: center;
  margin-top: 20px;
}



/* responsive  css start */

.menu_logo {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  background: var(--c1);
  top: 0;
  left: 0;
  z-index: 999;
  transition: 500ms all;
}


.side_menu {
  width: 50%;
  background: var(--c2);
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transform: translateX(-100%);
  transition: 500ms all;
}

.responsive_menu {
  display: none;
}

.show {
  transform: translateX(0%);
}

.responsive_logo img {
  width: 100px;
}

.open_menu {
  font-size: 30px;
  color: #fff;
}

.side_menu li a {
  padding: 10px 12px;
  width: 100%;
  border-bottom: 1px solid #ffffff69;
  color: #fff;
  text-transform: capitalize;
  font-size: 15px;
}

.close_menu {
  text-align: end;
  padding: 8px 12px !important;
}

.menu_sticky {
  position: fixed;
}

.responsive_overly {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: #000000a3;
  transition: 1s;
  left: -100%;
  top: 0;
  z-index: 99;
}

.responsive_overly.show {
  left: 0;
}

li.accordion-button {
  background: transparent;
  padding: 0;
}

.accordion-item {
  background: transparent;
}

.accordion-button::after {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: boxicons !important;
  background-image: none;
  content: "\ea4a";
  color: #fff;
  font-size: 23px;
}

.side_menu .accordion-body {
  padding: 0;
  height: 120px;
  overflow-x: auto;
  background: #ffffff;
}

.accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(-180deg);
  background-image: none;
  content: "\ea4a";
}

.accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
  outline: 0;
  border-color: transparent;
}

.accordion-button:not(.collapsed) a {
  background: var(--c1);
}

.close_menu i {
  font-size: 23px;
}

/* responsive  css end */

.accordion-body li a {
  color: #000;
}
 
.inside_book {
  padding: 50px 0px;
}

.inside_left h3 {
  font-size: 46px;
  width: 98%;
  margin: 0 auto;
  font-family: var(--f2);
  text-transform: capitalize;
  font-weight: 600;
  position: relative;
}

.inside_left h3::before {
  position: absolute;
  content: "";
  width: 280px;
  height: 15px;
  background: #e5aafd;
  right: 112px;
  top: 35px;
  border-radius: 20px;
  z-index: -1;
}

.inside_img {
  width: 200px;
  height: 200px;
  overflow: hidden;
}

.inside_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inside_right {
  text-align: right;
  width: 90%;
  margin: 0 auto;
}

.inside_right p {
  font-size: 13px;
  font-family: var(--f1);
  font-weight: 500;
}

.inside_form {
  background: #e5e5e5;
  padding: 5px 5px 5px 10px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inside_form input {
  background: none;
  border: none;
  outline: none;
  font-size: 14px;
}

.inside_form input::placeholder {
  font-size: 14px;
  text-transform: capitalize;
  color: #000;
  font-weight: 500;
  font-family: var(--f1);
}

.inside_form button {
  background: #cc58fb;
  border: none;
  padding: 10px;
  color: #fff;
  font-size: 14px;
  border-radius: 10px;
  text-transform: capitalize;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.inside_form button i {
  transform: rotate(125deg);
}

.broder_top {
  border-top: 3px solid var(--c1);
  padding-top: 60px;
}

.journey_points li {
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 22px;
  font-size: 14px;
  box-shadow: 0px 0px 2px 0px gray;
  font-family: var(--f1);
  font-weight: 600;
  display: flex;
  transition: 500ms;
  justify-content: space-between;
  text-transform: capitalize;
  align-items: center;
}

.journey_points {
  width: 90%;
  margin: 0 auto;
}

.journey_points li span {
  border: 1px solid gray;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 21px;
  transform: rotate(180deg);
}

.journey_points li:hover {
  background: var(--c1);
  color: #fff;
}

.journey_points li:hover span {
  border: 1px solid #fff;
}

.journey_points li:hover {
  background: var(--c1);
  color: #fff;
}

.journey_points li:hover span {
  border: 1px solid #fff;
}

.publishing_journey {
  padding: 50px 0px;
  background: #1d1917;
}

.consultant_form {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  min-height: 56vh;
  box-shadow: 25px 25px 1px 0px #5f4799;
  border-radius: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.consultant_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0px;
}

.consultant_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.consultant_cont {
  width: 77%;
  margin: 0 auto;
}

.consultant_cont h3 {
  color: #fff;
  font-family: var(--f2);
  font-weight: 500;
  font-size: 46px;
  position: relative;
  letter-spacing: 1px;
  line-height: 1.1;
}

.consultant_cont p {
  color: #fff;
  font-weight: 400;
  font-family: var(--f1);
  font-size: 16px;
}

.consultant_cont textarea {
  width: 100%;
  height: 125px;
  border-radius: 10px;
  padding: 9px 16px;
  border: 2px solid #633f9d;
  background: transparent;
  outline: none;
  backdrop-filter: brightness(1.8) blur(8px) contrast(0.5);
}

.consultant_cont textarea::placeholder {
  color: #Fff;
  font-family: var(--f1);
  font-size: 13px;
  font-weight: 400;
}

.consult_form {
  display: grid;
  width: 78%;
}

.consult_form input {
  padding: 10px;
  border-radius: 10px;
  outline: none;
  border: 2px solid #61439b;
  margin-bottom: 35px;
  background: transparent;
  backdrop-filter: brightness(1.8) blur(8px) contrast(0.5);
}

.consult_form input::placeholder {
  color: #Fff;
  font-family: var(--f1);
  font-size: 13px;
  font-weight: 400;
  text-transform: capitalize;
}

.form_sect {
  padding: 50px 0px;
  background: #1d1917e8;
}

.author_sect {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 51vh;
}

.author_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0px;
  z-index: -1;
}

.author_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author_cont h3 {
  color: #fff;
  font-size: 52px;
  font-family: var(--f2);
  font-weight: 500;
  letter-spacing: 1px;
}

.author_cont h3 span {
  font-family: var(--f3);
  color: var(--c1);
  font-weight: 700;
  font-size: 54px;
  position: relative;
}

.author_cont h3 span::before {
  position: absolute;
  content: '';
  width: 350px;
  height: 343px;
  right: -336px;
  bottom: -193px;
  background: url(../images/author-pen.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.author_sect::before {
  position: absolute;
  content: '';
  left: -110px;
  top: -55px;
  background: url(../images/author-book.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 515px;
  height: 325px;
}

.author_sect::after {
  position: absolute;
  content: '';
  width: 400px;
  height: 200px;
  right: 125px;
  bottom: 0;
  background: url(../images/author-circle.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.tstimonials {
  padding: 50px 0px;
  background: #f2f1f5;
}

.client_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.client_title h3 {
  font-size: 42px;
  text-transform: capitalize;
  font-family: var(--f2);
  font-weight: 500;
}

.client_title h3 span {
  font-family: var(--f2);
  position: relative;
}

.client_title h3 span::before {
  position: absolute;
  content: '';
  height: 20px;
  width: 215px;
  background: #e1a6fb;
  z-index: -1;
  border-radius: 10px;
  bottom: 5px;
  left: 0;
}

.consultant_cont h3 span {
  font-family: var(--f2);
  position: relative;
  z-index: 1;
}

.consultant_cont h3 span::before {
  position: absolute;
  content: '';
  width: 370px;
  height: 20px;
  background: #5e4a97;
  border-radius: 10px;
  bottom: 8px;
  left: -2px;
  z-index: -1;
}

.client_title img {
  width: 225px;
  height: 35px;
  object-fit: cover;
}

.date_star {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.date_star h5 {
  font-size: 13px;
  margin: 0;
  font-family: var(--f1);
  font-weight: 500;
}

.client_stars {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
}

u {
  font-size: 12px;
}

.client_stars li {
  font-size: 15px;
  border: 1px solid #20b97f;
  width: 22px;
  height: 22px;
  display: flex;
  color: #20b97f;
  justify-content: center;
  align-items: center;
}

.client_cont h4 {
  font-family: var(--f1);
  color: var(--c2);
  font-weight: 600;
  font-size: 22px;
}

.client_cont h6 {
  font-size: 15px;
  font-family: var(--f1);
  font-weight: 500;
  color: #000;
}

.client_cont h3 {
  font-family: var(--f2);
  color: var(--c2);
  font-size: 24px;
  font-weight: 500;
}

.client_cont p {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--f1);
  width: 94%;
  margin: 0;
}

.main_testi {
  background: #fff;
  padding: 35px 24px;
  border-radius: 10px;
  width: 95%;
  margin: 0 auto;
}

.journey_faqs .accordion-item {
  margin-bottom: 12px;
  box-shadow: 0px 0px 5px 2px #101010;
  border-radius: 11px !important;
  background: #fff;
}


.journey_faqs .accordion-button:not(.collapsed) {
  background: var(--c1);
  color: #fff;
  box-shadow: none;
}

.journey_faqs .accordion-body {
  font-size: 14px;
  font-family: var(--f1);
  font-weight: 400;
}

.journey_faqs .accordion-button {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--f1);
  text-transform: capitalize;
  padding: 21px 16px;
  border-radius: 10px !important;
}

.journey_faqs .accordion-button.collapsed {
  box-shadow: none;
}

.journey_faqs .accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: rotate(90deg) translateX(-10px) !important;
  color: #fff;
}

.journey_faqs .accordion-button::after {
  content: "\ebe6";
  background-image: none;
  height: 24px;
  width: 24px;
  font-family: 'boxicons';
  font-size: 20px;
  border: 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  color: #000;
  position: absolute;
  top: 29px;
  right: 15px;
}

.journey_faqs .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 20px;
}

ul.slick-dots {
  bottom: -40px;
}
.inner_sub_cont ul li {
    font-size: 14px;
    margin-bottom: 13px;
    position: relative;
}

.inner_sub_cont ul {
    padding-left: 30px;
}

.inner_sub_cont ul li::before {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    background: #000;
    top: 10px;
    left: -20px;
    border-radius: 50px;
}

.about_section {
    padding: 70px 0px;
}

.about_img {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
}

.about_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about_cont h3 {
    font-size: 50px;
    font-family: var(--f2);
    text-transform: capitalize;
}

.about_cont p {
    font-size: 15px;
    font-family: var(--f1);
    line-height: 1.8;
} 

.sec_2 {
    background: #f5f5f5;
}



/* contact us css start*/

.conatct {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  padding: 70px 0px;
}

.contact_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.contact_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact_form {
  position: relative;
  box-shadow: 0px 0px 10px 0px #d7d7d7;
  padding: 45px 50px;
  background: #001b46;
}

.contact_icon {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  overflow: hidden;
  padding: 21px;
  background: var(--c1);
  transition: 600ms ease-in-out;
}

.contact_cont {
  position: relative;
}

.contact_item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 43px;
}

.contact_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
}

.contact_info h5 {
  font-size: 28px;
  font-family: var(--f2);
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact_info p {
  font-size: 15px;
  margin: 0;
}

.fomt_fields input,
.fomt_fields textarea {
  width: 100%;
  height: 40px;
  padding: 12px;
  background: transparent;
  border: none;
  box-shadow: 0px 2px 0px 0px #cacaca;
  color: #cacaca;
  outline: 0;
  margin-bottom: 25px;
  font-size: 14px;
  transition: 500ms;
}

.fomt_fields input::placeholder,
.fomt_fields textarea::placeholder {
  color: #cacaca;
  text-transform: capitalize;
}

.fomt_fields textarea {
  height: 120px;
}

.contact_item:hover .contact_icon {
  background: #fff;
  box-shadow: 0px 0px 10px 0px var(--c1);
}

.contact_item:hover .contact_icon img {
  filter: none;
  animation: tada 800ms;
}

.contact_cont a:nth-last-child(1) {
  margin: 0;
}

.contact_form h3 {
  font-size: 52px;
  text-transform: capitalize;
  font-family: var(--f3);
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

.fomt_fields input:focus,
.fomt_fields textarea:focus {
  transform: translateY(-6px);
  box-shadow: 0px 2px 0px 0px var(--c1);
}

/* contact us css end  */

.testimonials {
    padding: 70px 0px;
}

.testimonials .testi_items {
    box-shadow: 0px 0px 10px 0px #e9e9e9;
    margin-bottom: 32px;
    border-radius: 10px;
}

ul.foot_link li {
    margin-bottom: 5px;
}

h3.before_none::before {
    display: none;
}
 

.footer {
    padding-top: 70px;
    position: relative;
    overflow: hidden;
    background: #CDE5E3;
}

.footer_link h5 {
    font-size: 18px;
    font-family: var(--f1);
    margin-bottom: 29px;
    font-weight: 600;
    color: #000;
}

.footer_link p {
    font-size: 13px;
    font-family: var(--f1);
    margin-bottom: 25px;
}

.brands_logos {
    width: 100%;
    height: 65px;
    overflow: hidden;
}

.brands_logos img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer_link ul li a {
    color: #000000ab;
    font-family: var(--f1);
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: capitalize;
    padding-right: 35px;
    transition: 500ms all;
}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    margin: 0;
    font-size: 14px;
    font-family: var(--f1);
    color: #fff;
}

.copyright img {
    width: 320px;
    height: auto;
}

.copyright_main {
    padding: 10px 0px;
    background: var(--c3);
    margin-top: 50px;
}

.footer_link.__alt h5 {
    margin-bottom: 9px;
}

.footer_btn a {
    width: max-content;
    margin-top: 10px;
    color: #fff;
    font-size: 13px;
}

.footer::before {
    position: absolute;
    content: '';
    top: 48%;
    right: -260px;
    transform: translate(-0%, -50%);
    background: url(../images/books.png);
    z-index: 99;
    width: 500px;
    height: 51%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.footer_link ul li a b {
    font-family: var(--f1);
    color: #000;
}

.footer_link ul li address {
    font-family: var(--f1);
    font-size: 14px;
    padding-right: 40px;
}

.footer_link ul li a:hover {
    color: var(--c3);
    font-family: var(--f1);
}


/* footer css start */


footer.footer {
    padding: 50px 0 0;
    position: relative;
    background: #01060e;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.top_footer {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.left_column {
    display: flex;
    justify-content: space-around
}

.left_col_alt {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px
}

ul.left {
    line-height: 32px
}

ul.left li {
    font-size: 13px;
    text-transform: capitalize;
    font-family: var(--f1);
    font-weight: 400
}

ul.left li a {
    color: #fff;
    position: relative;
    font-size: 11px
}

.right_col {
    width: 24%;
    border-right: 1px solid #fff
}

.right_column {
    display: flex;
    justify-content: flex-start;
    gap: 51px
}

.right_link {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    line-height: 30px;
    gap: 80px
}

ul.right_cl {
    line-height: 30px;
    margin-bottom: 20px
}

.right_cl_alt {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 41px
}

.mid_footer {
    padding: 20px 0 40px
}

.contact_vec {
    display: flex;
    justify-content: flex-start;
    align-items: end;
    gap: 22px
}

.right_contact a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #ffffff;
    font-size: 14px;
    gap: 8px;
    margin-bottom: 10px;
    transition: 700ms;
}

.right_contact a i {
    font-size: 16px
}

.main_last_foot {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px
}

ul.icons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 18px
}

ul.icons li {
    font-size: 38px
}

ul.icons li a {
    color: #fff;
    font-size: 29px
}

.last_foot_img {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px
}

.last_foot_img a {
    width: 135px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden
}

.last_foot_img a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px
}

.last_foot_img a:hover {
    scale: 1.1;
    transition: 500ms
}

ul.left li a::before {
    position: absolute;
    content: "\ea55";
    color: var(--c1);
    font-size: 24px;
    font-family: boxicons !important;
    left: -26px
}

h4.foot_head {
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    font-family: var(--f1);
    font-weight: 600;
    position: relative;
    margin: 11px 0 19px;
}

h4.foot_head::after {
    position: absolute;
    content: '';
    width: 50px;
    bottom: -5px;
    left: 0;
    height: 3px;
    background: var(--c1);
    transition: 700ms
}

h4.foot_head_alt {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 24px;
    font-family: var(--f1);
    font-weight: 600;
    position: relative;
    margin-bottom: 18px;
    margin-top: 0
}

h4.foot_head_alt::after {
    position: absolute;
    content: '';
    width: 50px;
    bottom: -5px;
    left: 0;
    height: 3px;
    background: var(--c1);
    transition: 700ms
}

ul.left li a:hover {
    transform: translateX(10px);
    color: var(--c1)
}

section.world_sources {
    background: var(--c2);
    padding: 40px 0
}

h3.logo_title {
    font-size: 30px;
    font-family: var(--f1);
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    text-align: center
}

.world_logo {
    text-align: center;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 35px
}

.world_logo a {
    width: 150px;
    height: 50px;
    position: relative
}


a.footer_logo {
    width: 220px;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center
}

a.footer_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.footer_para p {
    color: #ffffff;
    margin: 0;
    font-family: var(--f1);
    font-weight: 400;
    display: flex;
    font-size: 15px;
    text-transform: capitalize
}

.footer_para {
    display: flex;
    justify-content: flex-end;
    align-items: center
}

.footer_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

a.themebttn i {
    font-size: 28px;
    transform: rotate(40deg)
}


.footer_links ul li a {
    color: #fff;
    font-size: 13px;
    margin-bottom: 12px;
    font-weight: 400;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 3px;
}

.footer_links ul li a i {
    font-size: 20px;
    transition: 500ms;
    color: var(--c1)
}

.footer_links ul li a:hover i {
    color: var(--c1)
}

.footer_links ul li a:hover {
    color: var(--c1);
    transform: translateX(10px)
}

.footer_links {
    position: relative;
    border-right: 1px solid #fff;
    height: 100%
}

.footer_links.alt ul li a {
    margin-bottom: 8px;
}

.Kindle {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 5px
}

.Kindle i {
    font-size: 17px
}

.mid_footer .row {
    height: 100%
}


.end_foot_div {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.end_footer {
    padding: 15px 0;
    margin-top: 8px
}

ul.end_img {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px
}

.end_img li a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 700ms
}

.mid_end p {
    margin: 0;
    color: #ffffff;
    font-weight: 400;
    font-family: var(--f1);
    font-size: 14px
}

ul.end_text {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px
}

ul.end_text li {
    font-family: var(--f1);
    font-size: 12px;
    font-weight: 400
}

ul.end_text li a {
    color: #ffffff;
    font-size: 14px;
}

.right_contact a:hover {
    transform: scale(1.1);
    transition: 700ms;
    color: var(--c1)
} 

.contact_form_detailed {
    background: var(--c2);
    border-radius: 12px;
    padding: 51px 30px;
    position: relative;
    box-shadow: 10px 12px 4px 0 #c2a163
}
.card_img {
    width: 22%;
}

.card_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

ul.end_text li a:hover {
    transform: translateY(-5px);
}

.footer_links.book_publishing_link li a {
    margin-bottom: 30px;
}
.end_foot_div {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    width: 70%;
}

.end_foot_div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
}
/* footer css end */ 

.end_foot {
    display: flex;
    align-items: center;
    width: 57%;
    justify-content: space-between;
}

.end_foot p {
    margin: 0;
    font-size: 14px;
}

.services_con {
    width: 86%;
    margin: 0 auto;
}


.padding__70 {
    padding: 70px 0;
}

.about__content__sec h4 {
    font-size: 37px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 12px 0px;
    font-family: var(--f2);
}

.privacy_policy .about__content__sec h3,
.about__content__sec h2 {
    font-size: 26px;
    text-transform: capitalize;
    font-weight: 500;
    margin: 17px 0px;
}

.about__content__sec p,
.time__line__contentPara p {
    font-size: 14px;
    line-height: 25px;
    font-family: var(--f1);
}
 
.privacy_policy .about__content__sec h3,
.about__content__sec h2 {
    font-size: 22px;
    font-family: var(--f2);
    font-weight: 700;
}

.about__content__sec p,
.time__line__contentPara p {
    font-size: 14px;
    line-height: 25px;
}

div#terms-and-conditions h5 {
    font-size: 22px;
    margin: 12px 0px;
    font-family: var(--f1);
    font-weight: 500;
}

.story_cont {
    color: #fff;
}

.section_title {
    color: #fff;
}

.service_item:hover .services_icon img {
    filter: none;
}

.services_cont .themebtn {background: var(--c2);color: #fff;}
.benefits_cont {
    color: #fff;
}