@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: #DDBE8A;
  --c2: #CC0102;
  --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: transparent;
  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 #fff;
}

.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: center;
  align-items: center;
  padding: 8px 0px;
}

a.header__logo img {
  width: 200px;
  height: 100px;
  object-fit: contain;
}

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

ul.header-main__nav li a {
  font-size: 14px;
  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: 192px 0 70px;
}

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

.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(--f2);
  color: var(--c1);
  font-weight: 500;
}

.banner_cont h1 {
  font-size: 60px;
  font-family: var(--f2);
  text-transform: capitalize;
  margin: 10px 0px;
  line-height: 1;
  position: relative;
}
.banner_cont h3 {
  font-size: 60px;
  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;
  color: #Fff;
}

.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 {
  padding: 3px 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 h1 span {
  font-family: var(--f3);
  color: var(--c1);
}

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

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

.banner_cont h5 {
  text-transform: uppercase;
  font-size: 26px;
  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: 40px 30px;
  width: 55%;
  border-radius: 17px;
  box-shadow: 0px 0px 0px 1px var(
  --c1);
  position: relative;
  transition: 500ms;
  margin: 0 auto;
  backdrop-filter: blur(4px);
}

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

.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;
  opacity: 0.4;
}

.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: 55px;
  height: 55px;
  border-radius: 100%;
  background: var(--c1);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  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 {}

.story_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 999;
  border-radius: 100px 0 100px 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.story_img {
  width: 91%;
  height: 500px;
  margin: 0 auto;
  position: relative;
}

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

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

.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: 18px;
}

.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);
  display: none;
}

.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: 16px;
  line-height: 1.8;
}

.service_item {
  padding: 30px 30px;
  border-radius: 14px;
  margin: 22px 14px;
  transition: 500ms;
  background: #1e1e1e;
}

.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) invert(1) !important;
  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 {
  color: #fff;
  box-shadow: 0 0 15px 1px #555;
}


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

.service_item:hover .services_cont p::-webkit-scrollbar-thumb {
  background-color: #fff;
}

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

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

.services_cont p::-webkit-scrollbar-thumb {
  background-color: #fff;
}

.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: #ffffff45;
  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;
  background: #1d1917;
  z-index: 1;
}

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

.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(--c2);
}

.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;
  scale: 1.2;
}

.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: 500;
  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;
  filter: saturate(100) hue-rotate(71deg);
}

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

.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: fit-content;
  background: #ffffffe3;
  left: 0;
  z-index: 9999;
  transition: 500ms;
  border-radius: 10px;
  width: 210px;
  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: 0px;
  position: relative;
  width: 100%;
  padding: 10px 20px;
}

.header-main__nav li:hover .dropdown {
  top: 100%;
  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;
}

.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: 25%;
  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: 100vh;
  background: #1d1917;
  position: relative;
  overflow: hidden;
  padding-top: 14rem;
  padding-bottom: 5rem;
}

.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: #000000;
}

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

.sub_banner_cont p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 11px;
  position: relative;
  z-index: 1;
}

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

.inner_sub_cont {
  overflow-y: auto;
  position: relative;
  z-index: 1;
}

.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: 9999;
  transition: 500ms all;
}


.side_menu {
  width: 50%;
  background: var(--c1);
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  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: 99999;
}

.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 #1d191752;
  border-radius: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(360deg, #3c342d 0%, #8b7857 70%) !important;
}

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

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

.consultant_cont {
  width: 81%;
  margin: 20px 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(--f2);
  font-size: 16px;
  position: relative;
}

.consultant_cont textarea {
  width: 100%;
  height: 125px;
  border-radius: 10px;
  padding: 9px 16px;
  border: 2px solid #fff;
  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 #fff;
  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(--c2);
  font-weight: 700;
  font-size: 54px;
  position: relative;
}

.author_cont h3 span::before {
  position: absolute;
  content: '';
  width: 350px;
  height: 343px;
  right: -336px;
  bottom: -223px;
  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: 12px;
  background: var(--c2);
  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: 20px;
}

.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;
  height: 150px;
  overflow-y: auto;
  padding-right: 9px;
}

.main_testi {
  background: #fff;
  padding: 35px 24px;
  border-radius: 10px;
  margin: 0 auto;
  transition: 500ms;
}

.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: linear-gradient(360deg, #50452A 0%, #B69E60 70%) !important;
  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: var(--c1);
  top: 10px;
  left: -20px;
  border-radius: 50px;
  display: none;
}

.about_section {
  padding: 70px 0px;
  background: #312e2c;
}

.about_img {
  width: 100%;
  height: 460px;
  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: 14px;
  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;
  background: #1d1917f0;
}

.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 var(--c1);
  padding: 30px 50px;
}

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

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

.contact_item {
  position: relative;
  display: flex;
  align-items: center;
  width: 33%;
  gap: 10px;
  margin-bottom: 20px;
}

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

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

.contact_info p {
  font-size: 14px;
  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: 18px;
  font-size: 14px;
  transition: 500ms;
}

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

.fomt_fields textarea {
  height: 100px;
}

.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_form h3 {
  font-size: 34px;
  text-transform: capitalize;
  font-family: var(--f3);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.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 0 0;
  background: #312e2c;
}

.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_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: #000000fc;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover
}

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

.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 {
  align-items: center;
}

.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: 5px;
  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_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;
  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: scale(1.1);
}

.footer_links.book_publishing_link li a {
  margin-bottom: 30px;
}

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

/* 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;
  background: #1d1917f7;
  color: #fff;
}

.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;
}

.chat_form:hover {
  box-shadow: 0px 0px 10px 1px var(--c1);
}

.about_cont {
  color: #fff;
}

.main_testi:hover {
  background: var(--c2);
  color: #fff;
  box-shadow: 0px 0px 19px 0px #312e2c;
}

.main_testi:hover .client_cont h3 {
  color: #fff;
}

.main_testi:hover .client_cont h6 {
  color: var(--c1);
}

.main_testi:hover .client_cont h4 {
  color: #fff;
}


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

.client_cont p::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}

.client_cont p::-webkit-scrollbar-thumb {
  background-color: #000000;
}

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

.contact_info {
  color: #fff;
  width: 82%;
}

.main_header {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
  padding: 8px 0;
  position: relative;
}

.header_right ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 !important;
  margin: 0 !important;
}

.header_right ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 15px;
  font-family: var(--f1);
}

a.header__logo {
  position: absolute;
  left: 0;
  top: 80%;
  transform: translatey(-50%);
}

.gradient {
  background: linear-gradient(180deg, #3c342d 0%, #b29972 70%) !important;
  border-bottom: 2px solid #ffff;
}

.banner_img:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  inset: 0;
  background: #000000ba;
}

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

.story_img::before {
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--c1);
}

#story .col-md-6:nth-child(2) {
  width: 100% !important;
  text-align: -webkit-center;
}

#story .col-md-6:nth-child(1) {
  display: none !important;
}

.story_btn {
  justify-content: center;
}

.book_img {
  display: none;
}

.benefits_img {
  display: none;
}

.header-main__nav li {
  position: relative;
}

.dropdown .services_con {
  width: 100%;
}

.dropdown .container {
  padding: 0;
}


.right_contact {
  align-items: center;
}

.story_cont h4 {
  font-family: var(--f2);
  font-weight: 500;
  font-size: 22px;
}

.sub_banner_img {
  width: 85%;
  height: 515px;
  position: relative;
  margin: 0 auto;
  border-radius: 120px 0px 120px 0px;
}

.sub_banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 999;
  border-radius: 100px 0 100px 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.sub_banner_cont.alt h3 {
  font-size: 49px;
}

.sub_banner_cont.alt h3 span {
  color: var(--c1);
  font-family: var(--f2);
  font-size: 49px;
  text-transform: capitalize;
}

.sub_banner_cont ul li span {
  font-weight: 700;
}

.sub_banner_cont ul li {
  font-family: var(--f1);
  font-size: 16px;
  line-height: 1.2;
  margin: 0 0 12px;
  list-style-type: disc;
}

.sub_banner_cont ul {
  padding-left: 28px;
}

.story_cont.alt h3 {
  font-size: 36px;
}

footer.footer {
  padding: 50px 0 0;
  position: relative;
}

.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
}

.right_contact a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
  font-size: 14px;
  gap: 8px;
  margin-bottom: 20px;
  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: var(--c3);
  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: 500;
  position: relative;
  margin-bottom: 16px;
}

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: #FFF;
  text-transform: uppercase;
  font-size: 24px;
  font-family: var(--f1);
  font-weight: 500;
  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)
}

.footer_links p {
  margin: 0;
  font-size: 12px;
  color: #fff;
  line-height: 1.9;
  width: 91%;
}

.play_the_game_section {
  padding: 80px 0;
  background-color: #000000;
}

.play_the_game_content h2 {
  font-size: 50px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--f2);
}

.logo-fot p,
.suport ul li a {
  font-weight: 500;
}

.play_the_game_content p {
  color: #fff;
  margin-bottom: 30px;
  font-family: var(--f1);
}

.centerCol {
  margin: 0 auto;
}

.card_row {
  display: inline-flex;
  width: 100%;
}

.card_row .col-lg-3.col-md-6.col-sm-6.col-12 {
  width: 20% !important;
  flex: 0 0 20%;
}

.editing_new_list {
  display: inline-block;
  text-align: center;
}

.editing_new_footerform {
  padding-top: 80px;
}

li.first.last {
  list-style: none;
  margin: 0 0 20px;
}

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 200px;
  perspective: 1000px;
}

.flip-card-back p {
  font-size: 13px;
  line-height: 16px;
  color: #fff;
  font-weight: 400;
}

.flip-card-back h4 {
  font-size: 17px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--f2);
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform .6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2);
}

.flip-card-back,
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-back,
.flip-card-front {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.flip-card-back {
  background-color: #c4a26a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px;
  border-radius: 6px;
}

.flip-card-front h4 {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--f2);
}

.sub_banner_cont.alt h4 {
  font-size: 35px;
  font-family: var(--f2);
  text-transform: capitalize;
  font-weight: 600;
}

.sub_banner_img::before {
  position: absolute;
  content: '';
  width: 140px;
  height: 140px;
  background: var(--c1);
  border-radius: 30px 1px 30px 1px;
  right: -24px;
  top: -24px;
}

.sub_banner_img::after {
  position: absolute;
  content: '';
  width: 140px;
  height: 140px;
  background: var(--c1);
  bottom: -24px;
  left: -24px;
  z-index: 99;
  border-radius: 30px 0 30px 1px;
}

.story_img::before {
  position: absolute;
  content: '';
  width: 140px;
  height: 140px;
  background: var(--c1);
  bottom: -24px;
  left: -24px;
  z-index: 99;
  border-radius: 30px 0 30px 1px;
}

.story_img::after {
  position: absolute;
  content: '';
  width: 140px;
  height: 140px;
  background: var(--c1);
  border-radius: 30px 1px 30px 1px;
  right: -24px;
  top: -24px;
}


.header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 111;
  border-bottom: 3px solid #ffffff69
}

.header_right {
  display: flex;
  align-items: center;
  gap: 40px
}

.header_right li span {
  display: block;
  font-size: 13px;
  color: var(--c1);
}

.header_right li a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  color: #fff;
}

.header_right li a i {
  font-size: 21px;
  color: var(--c1);
}



ul.dropdown_menu {
  background: var(--c1);
  position: absolute;
  z-index: 99999;
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  transition: 500ms all;
  border-radius: 20px
}

ul.dropdown_menu li a {
  border-bottom: 1px solid #ffffff78 !important;
  font-family: var(--f2);
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 300;
  padding: 13px 13px;
  width: 100%;
  display: flex;
  gap: 7px;
  justify-content: space-between
}

.dropdown-submenu>.dropdown_menu,
li.dropdown-submenu ul.dropdown_menu ul.dropdown_menu {
  top: 0;
  left: 100%;
  margin-top: 0
}

.dropdown_menu {
  padding: 0;
  margin: 0
}

.dropdown_menu {
  top: 150%;
  left: 0;
  padding: 0;
  margin: auto;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none
}

li:hover>ul.dropdown_menu {
  box-shadow: 0 0 10px 1px rgb(0 0 0 / 9%);
  min-width: 12rem;
  visibility: visible;
  opacity: 1
}

.dropdown-item:focus,
.dropdown-item:hover {
  background: var(--c1);
  font-weight: 500
}



.top_head {
  display: flex;
  justify-content: space-between
}

.top_links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px
}

.top_links a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  font-family: var(--f1);
  font-size: 16px;
  font-weight: 400;
  color: #fff
}

.top_links a i {
  font-size: 20px
}

ul.top_icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px
}

ul.top_icons li {
  font-size: 18px
}

ul.top_icons li a {
  color: #fff
}

.top_header {
  background: #212529;
  padding: 4px 0
}

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

ul.main_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  padding: 13px 50px;
  background: var(--c1);
  border-radius: 50px;
  /* width: max-content; */
  margin: 0 auto;
  position: relative;
  bottom: -26px;
}

ul.main_menu li {
  font-family: var(--f1);
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1;
  position: relative
}

ul.main_menu li a {
  font-size: 14px;
  letter-spacing: 0;
  text-align: center;
  color: var(--c3);
  display: flex;
  align-items: center;
  width: 100%;
}

ul.main_menu li a i {
  font-size: 8px;
  font-weight: 700;
  transition: 700ms;
  margin-left: 4px
}

.main_header {
  padding: 2px 0
}

a.header_logo {
  width: 167px;
  overflow: hidden
}

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

ul.main_menu li a:hover {
  color: var(--c2);
  transition: 500ms
}

ul.main_menu li:hover .services_drp i {
  transform: rotate(-180deg);
  transition: 700ms;
  color: #fff
}

span.small_text {
  font-size: 25px !important;
}

.font-change span {
  color: var(--c1);
  font-family: var(--f2);
}

.top_radius a {
  border-top-right-radius: 18px;
  border-top-left-radius: 18px;
}

.bottom_radius a {
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 18px;
}

li.dropdown-submenu.bottom_radius .dropdown-item li a {
  border: none !important;
}

.dropdown-submenu:hover i {
  transform: rotate(-90deg);
}

.inner_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.inner_cont {
  position: relative;
  z-index: 99;
}

.service_items {
  margin: 10px 10px
}

.service_card {
  margin: 20px 0
}


.service_card {
  text-align: start;
  border-radius: 30px 0;
  padding: 21px 26px;
  height: 280px;
  width: 96%;
  box-shadow: 0 0 5px 0 #8080809e;
  position: relative;
  background: #ffF;
  margin: 0 0 40px
}

.service_img {
  width: 50px;
  height: 50px;
  overflow: hidden
}

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

.service_cont h3 {
  font-family: var(--f2);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 12px
}

.service_cont p {
  font-weight: 400;
  font-size: 13px;
  margin: 0;
  height: 100px !important;
  overflow: auto;
}

.service_cont {
  margin-top: 12px
}

section.our_services {
  padding: 60px 0 45px
}

.service_cont p::-webkit-scrollbar {
  width: 3px
}

.service_cont p::-webkit-scrollbar-track {
  background: #9dacb8
}

.service_cont p::-webkit-scrollbar-thumb {
  background: var(--c1)
}

.service_cont p::-webkit-scrollbar-thumb:hover {
  background: #445f73
}


.service_card::before {
  width: 62px;
  height: 62px;
  position: absolute;
  content: '';
  background: var(--c1);
  border-radius: 34px 0 0 0PX;
  top: -5px;
  left: -5px;
  z-index: -1;
  transition: 700ms
}

.service_card::after {
  width: 62px;
  height: 62px;
  position: absolute;
  content: '';
  background: var(--c1);
  bottom: -5px;
  right: -5px;
  border-radius: 0 0 34px 0;
  z-index: -1;
  transition: 700ms
}

.service_card:hover {
  background: var(--c1)
}

.service_card:hover span {
  background: #fff;
  color: var(--c1);
  box-shadow: 0 0 1px 1px var(--c2)
}

.service_card:hover::before {
  background: #a0afbb
}

.service_card:hover::after {
  background: #a0afbb
}

.service_card:hover p {
  color: #fff;
  overflow-y: scroll
}

.service_card:hover h3 {
  color: #fff;
}

.service_card:hover .service_img {
  filter: invert(1);
}

.section_title h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: var(--f2);
}

.our_services .section_title p {
  font-size: 14px;
}

.service_slider ul.slick-dots {
  bottom: -18px;
}


.form_close {
  position: absolute;
  width: 40px;
  height: 40px;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 27px;
  color: var(--c1);
  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%;
}

.story_img.alt img {
    border-radius: 0;
}

.story_img.alt::before {
    display: none;
}

.story_img.alt::after {
    display: none;
}
.inner_img:before {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    content: '';
    background: #000000ba;
}
.sub_banner_cont d {
    font-size: 31px;
    font-family: 'Recoleta';
    display: block;
    line-height: 38px;
}
.about__content__sec p a {
    color: #fff;
    font-weight: 800;
    text-decoration: underline !important;
}

.about__content__sec ul li {
    list-style-type: disc;
}

.about__content__sec ul {
    padding-left: 18px;
}

.map_sec {
    width: 100%;
    height: auto;
    block-size: inherit;
}

.map_sec iframe {
    width: 138%;
    height: 570px;
}


.top-bar-line {
    background: var(--c1);
    padding: 8px 0;
    position: relative;
    z-index: 10;
}

.top-bar-line marquee {
    font-weight: 500;
    font-family: var(--f1);
}

.footer .top-bar-line {
    background: #313521;
    margin-top: 12px;
}

.contact_form p {
    color: #fff;
    font-weight: 400;
    font-size: 13px;
    margin-top: 17px;
}

.contact_form p a {
    font-weight: 700;
    color: #fff;
    text-decoration: underline !important;
    text-transform: capitalize;
}

p.consult {
    font-size: 15px;
    font-family: var(--f1);
}

p.consult a {
    color: #FFF;
    font-weight: 700;
    text-transform: capitalize;
    text-decoration: underline !important;
    font-size: 14px;
}

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