@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');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Story+Script&family=Varela+Round&display=swap');

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

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

/* Root Styling */
:root {
  --c1: #414042;
  --c2: #9B8579;
  --f1: 'poppins';
  --f2: 'Oswald';
  --f3: 'Recoleta';
}

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 */

w {
  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: 13px 26px;
  background: var(--c1);
  color: #fff;
  text-transform: uppercase;
  font-size: 14px !important;
  font-weight: 500;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  z-index: 99;
  font-family: var(--f3) !important;
  text-decoration: none;
}

.themebtn:hover {
  background: var(--c1);
  color: #fff !important;
}

.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 {
  padding: 10px 0px;
  width: 100%;
  height: fit-content;
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
  position: relative;
}

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

ul.header-main__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  gap: 30px;
}

ul.header-main__nav li a {
  font-size: 15px;
  font-family: var(--f3);
  position: relative;
  font-weight: 500;
  text-transform: capitalize;
  text-decoration: none;
}

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

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


/* header css end */

/* baner css start */

.home_banner {
}

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

.banner_cont h6 {
  font-size: 20px;
  text-transform: uppercase;
  font-family: var(--f1);
}

.banner_cont h3 {
  font-size: 44px;
  font-family: var(--f3);
  margin: 0px 0px 15px;
  line-height: 81px;
  font-weight: 600;
  color: var(--c1);
  text-transform: capitalize;
  line-height: 60px;
}

.banner_cont p {
  font-size: 16px;
  width: 98%;
}

/* baner css end */



/* new css start */

.contact_head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 46px;
}

.contact_head a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-family: var(--f2);
  font-weight: 500;
  text-decoration: none;
  font-size: 18px;
}

.contact_head a span {
  background: var(--c1);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 100ms all;
}

.contact_head a:hover {}

.contact_head a:hover span {
  background: var(--c2);
}

.banner_cont h3 span {
  color: var(--c2);
  font-family: var(--f3);
  font-weight: 700;
  font-size: 44px;
  display: block;
}


/* portfolio */

.port__con {
  text-align: center;
}

.port_top {
  padding: 40px 0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.port__con .para {
  width: 70%;
  margin: 10px auto;
}

.port_img {
  width: 100%;
  height: 455px !important;
  box-shadow: -3px 4px 15px 1px #444;
}

.port_item {
  text-align: center;
  margin: 0 10px;
}

.portfolio_books .port_main {
  position: relative;
  padding-bottom: 0px !important;
  margin-top: 10px !important;
}

.port_slider .slick-list.draggable {
  padding: 10px 0;
}

.port_slider {
  transform: rotate(-5deg) translateX(-60px) translateY(-40px);
  width: 108%;
}

.engaged_audience {
  padding: 100px 0px;
  position: relative;
}

.engaged_cont h3 {
  font-family: var(--f3);
  color: var(--c1);
  font-weight: 600;
  font-size: 38px;
  width: 670px;
  text-transform: capitalize;
  margin: 0 0 18px;
}

.engaged_cont p {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--f1);
  width: 650px;
  line-height: 1.6;
}

.engaged_audience::before {
  position: absolute;
  content: '';
  background: url(../images/engaged-before.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 480px;
  height: 480px;
  bottom: -15px;
  left: -100px;
}

.logo_img {
  width: 100%;
  height: 70px;
  overflow: hidden;
}

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

.logos {
  padding: 30px 0px 60px;
}

.themebtn.light {
  background: var(--c2);
}

.themebtn.light:hover {
  background: #fff !important;
  color: var(--c1) !important;
}

.personalized_requirements {
  background: var(--c2);
  position: relative;
  padding: 65px 0px 20px;
}

.themebtn.light::after {
  background: #fff;
}

.requirement_cont h3 {
  font-family: var(--f3);
  color: var(--c1);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
  width: 85%;
}

.requirement_cont p {
  font-size: 16px;
  font-family: var(--f1);
  line-height: 1.6;
  color: #fff;
  margin: 0 0 20px;
  width: 92%;
  font-weight: 400;
}

.require_img {
  width: 390px;
  height: 390px;
  margin: 0 auto 10px;
}

.require_img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: 1s;
  transform: scale(0);
}

.require_cont h3 {
  font-family: var(--f3);
  color: #fff;
  font-size: 26px;
  margin: 0 0 14px;
}

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

.requirement_cont {
  position: sticky;
  top: 85px;
}

.require_main {margin: 20px 0;}

.personalized_requirements::after {
  position: absolute;
  background: url(../images/cup.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 115px;
  height: 115px;
  top: -16px;
  left: 90px;
  content: '';
}

.personalized_requirements::before {
  position: absolute;
  content: '';
  background: #fff;
  width: 100%;
  height: 60px;
  top: -18px;
  right: 0;
  clip-path: polygon(0 0, 100% 0, 100% 28%, 0% 100%);
}

#counter {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 0px;
  width: 100%;
  gap: 160px;
}

#counter .item .count {
  color: var(--c1);
  margin-bottom: 5px;
  font-size: 68px;
  font-family: var(--f2);
}

#counter .item h3 {
  color: #000;
  text-transform: capitalize;
  font-size: 20px;
  font-family: var(--f1);
}

.main_counters {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  padding: 35px 0px 0px;
}

.counterCrd .counter {
  font-size: 65px;
  font-family: var(--f2);
  font-weight: 400;
  margin: 0;
  color: var(--c1);
}

.counter_content h5 {
  font-family: var(--f1);
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
}

.section_title h3 {
  font-family: var(--f2);
  color: var(--c1);
  font-size: 36px;
  font-weight: 600;
}

.section_title p {
  font-family: var(--f1);
  font-size: 16px;
  width: 96% !important;
  margin: 0 auto;
}

.lead_card {
  border: 2px solid var(--c1);
  padding: 16px 8px;
  border-radius: 20px;
  background: #28aa925e;
  text-align: center;
  transition: 500ms;
  height: 196px;
}

.lead_card h3 {
  font-family: var(--f2);
  font-size: 25px;
  color: var(--c1);
  margin: 0 0 12px;
}

.lead_card p {
  font-family: var(--f1);
  font-size: 14px;
  margin: 0;
  font-weight: 400;
  line-height: 1.4;
}

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

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

.lead_card:hover p {
  color: #fff;
}

.leading_source {
  padding: 70px 0px;
  position: relative;
}

.leading_source::before {
  position: absolute;
  content: '';
  background: url(../images/engaged-before.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 550px;
  height: 550px;
  top: -30px;
  right: -80px;
  z-index: -1;
}

.waiting_narattive {
  background: var(--c2);
  padding: 60px 0px;
  border-radius: 200px;
  position: relative;
  margin: 70px 0 0;
}

.narattive_contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.narattive_contact .themebtn.light {
  padding: 12px 62px;
}

.number {padding: 13px 26px;background: var(--c1);color: #fff;text-transform: uppercase;font-size: 14px !important;font-weight: 500;border-radius: 50px;position: relative;overflow: hidden;border: 1px solid transparent;z-index: 99;font-family: var(--f3) !important;text-decoration: none;display: flex;align-items: center;gap: 11px;}

.number i {font-size: 22px;}

.chat {padding: 13px 26px;background: var(--c1);color: #fff;text-transform: uppercase;font-size: 14px !important;font-weight: 500;border-radius: 50px;position: relative;overflow: hidden;border: 1px solid transparent;z-index: 99;font-family: var(--f3) !important;text-decoration: none;display: flex;align-items: center;gap: 9px;}

.chat i {font-size: 22px;}

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

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

.narattive_contact .chat:hover i {
  color: #fff;
}

.narattive_contact .number:hover i {
  color: #fff;
}

.narattive_cont h3 {
  font-family: var(--f3);
  color: var(--c1);
  font-size: 40px;
  line-height: 1.1;
  width: 78%;
  margin: 0 auto 30px;
  font-weight: 600;
  text-transform: capitalize;
}

.narattive_cont p {
  color: #fff;
  font-family: var(--f1);
  font-size: 15px;
  margin: 0 auto 26px;
  width: 72%;
}

.waiting_narattive::before {
  position: absolute;
  content: '';
  background: url(../images/nara-girl.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 258px;
  height: 380px;
  bottom: -6px;
  left: 85px;
  border-radius: 110px;
}

.waiting_narattive::after {
  position: absolute;
  content: '';
  background: url(../images/nara-book.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 220px;
  height: 220px;
  bottom: -5px;
  right: 145px;
  border-radius: 0;
}

.portfolio_books {
  padding: 85px 0px 60px;
  background: var(--c1);
  clip-path: polygon(0% 5%, 100% 0, 100% 100%, 0% 100%);
}

.portfolio_books .section_title h3 {
  color: #fff;
  margin-bottom: 22px;
}

.portfolio_books .section_title p {
  color: #fff;
}

.portfolio_books .portfolio_slider {
  transform: rotate(0deg);
  width: 100%;
}

.portfolio_books .port_img {
  height: 282px !important;
}

.portfolio .port_main {
  padding: 0;
  margin: 0;
}

.portfolio_slider .slick-list.draggable {
  padding: 0px 20px;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: #b7e3da;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0;
}

.slick-prev {
  left: 0;
}

.slick-prev:before {
  font-family: 'boxicons';
  content: "\ea4d";
  font-size: 40px;
}

.slick-next:before {
  font-family: 'boxicons';
  content: "\ea50";
  font-size: 40px;
}

.testi_img {
  width: 990px;
  height: 225px;
  overflow: hidden;
}

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

.main_testimonial {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--c1);
  padding: 20px 10px;
  border-radius: 20px;
  background: #28aa925e;
  transition: 500ms;
  width: 98%;
  margin: 0 auto;
}


.testi_cont h4 {
  font-size: 28px;
  font-family: var(--f2);
  color: var(--c1);
  font-weight: 600;
  margin: 0 0 13px;
}

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

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

.main_testimonial:hover h4 {
  color: #fff;
}

.main_testimonial:hover p {
  color: #fff;
}

.testimonials {
  padding: 70px 0px;
}

.testi_title h3 {
  color: #fff !important;
  text-transform: capitalize;
}

.testi_title p {
  width: 66%;
  font-size: 15px;
  color: #292929;
  font-weight: 400;
}

.slick-dots li button::before {
  font-size: 0 !important;
  position: absolute;
  content: '';
}

.slick-dots li {
  background: #c6c6cc;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  top: 325px;
}

.slick-dots li.slick-active :before {
  background: var(--c1);
  border-radius: 50%;
  width: 16px;
  height: 16px;
}

.faq {
  background: var(--c1);
  padding: 60px 0px;
}

.section_title h5 {
  font-family: var(--f1);
  font-size: 20px;
  color: var(--c1);
}

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

.section_title h3 span {
  font-family: var(--f3);
  color: var(--c1);
  font-size: 34px;
  font-weight: 700;
}

.faq .accordion-button::after {
  background-image: none;
  content: "\ea4a";
  font-family: 'boxicons';
  font-size: 28px;
  color: #000;
  height: auto;
  width: auto;
}

.faq .accordion-button {
  padding: 12px 34px;
  color: #000;
  font-family: var(--f3);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  text-transform: uppercase;
}

.faq .accordion-button:not(.collapsed)::after {
  background-image: none;
  color: var(--c1);
  transform: rotate(180deg);
}

.faq .accordion-button:not(.collapsed) {
  background: #fff;
}

.faq .accordion-item {
  border: none;
  border-radius: 8px !important;
  margin-bottom: 21px;
  background: transparent;
}

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

.faq .accordion-item:first-of-type .accordion-button {
  border-radius: 44px;
}

.faq .accordion-body {
  font-family: var(--f1);
  font-size: 14px;
  font-weight: 500;
  margin: 10px 0;
  color: #fff;
}

.footer_logo {
  width: 20%;
  height: 142px;
  overflow: hidden;
  margin: 0 0 25px;
  position: relative;
}

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

.footer_ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 115px;
}

.footer_cont h3 {
  font-size: 35px;
  font-family: var(--f3);
  font-weight: 600;
  margin: 0 0 22px;
  color: var(--c1);
}

.footer_cont p {
  font-weight: 400;
  font-family: var(--f1);
  font-size: 16px;
  width: 101%;
  margin: 0px 0 30px;
  color: #fff;
}

.footer_links li {
  list-style-type: none;
  margin: 0 0 6px;
}

.footer_links {
  line-height: 2;
}

.footer_links li a {
  font-family: var(--f1);
  font-size: 15px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  color: #fff;
  text-transform: capitalize;
}

.footer_links li a:hover {
  color: #fff;
}

.footer_links li a::before {
  position: absolute;
  content: "\ed31";
  font-family: 'boxicons';
  font-size: 18px;
  left: -25px;
  color: var(--c1);
}

.footer {
  padding: 70px 0px 55px;
  background: var(--c2);
}

.main_footer::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  background: var(--c2);
  top: 115px;
  left: 0;
}

.main_footer {
  position: relative;
}

.footer_form {
  width: 91%;
  display: grid;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.footer_form h4 {
  font-weight: 600;
  font-size: 30px;
  font-family: var(--f3);
  color: #fff;
  margin: 0 0 14px;
}

.footer_form input,
.footer_form textarea {
  padding: 9px 15px;
  margin: 0 0 12px;
  background: #fff;
  border: 2px solid var(--c1);
  border-radius: 50px;
  color: #fff;
  outline: none;
}

.footer_form textarea {}

.footer_form input::placeholder {
  color: var(--c1);
  font-family: var(--f1);
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 400;
}

.footer_form textarea::placeholder {
  color: var(--c1);
  font-family: var(--f1);
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 400;
}

.footer_form button {
  background: var(--c1);
  border: none;
  padding: 10px 12px;
  border-radius: 50px;
  color: #fff;
  font-family: var(--f1);
  font-weight: 500;
  text-transform: capitalize;
  font-size: 17px;
}

.footer_form button:hover {
  background: var(--c2);
  box-shadow: 0px 0px 0px 1px var(--c1);
}

.footer_form p {
  color: #fff;
  font-family: var(--f1);
  font-weight: 300;
  font-size: 12px;
  text-align: start;
  margin: 18px 0 0;
}

.footer_form p a {
  color: var(--c1);
  font-family: var(--f1);
  text-transform: lowercase;
  text-decoration: none;
  font-weight: 600;
}

.footer_inform {
  margin: 32px 0 0;
  padding: 32px 0px;
  border-top: 1px solid var(--c2);
  border-bottom: 1px solid var(--c2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer_inform a {
  color: #fff;
  text-decoration: none;
  font-family: var(--f3);
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  transition: 500ms;
}

.footer_inform a i {
  background: var(--c1);
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: 36px;
  transition: 500ms all;
}

.footer_inform a:hover {
  color: var(--c1);
}

.footer_inform a:hover i {
  background: #fff;
  color: var(--c2);
}

.footer_para p {
  font-family: var(--f1);
  font-weight: 300;
  color: #fff;
  font-size: 16px;
  margin: 20px 0 0;
}

.footer_para p span {
  font-family: var(--f1);
  font-weight: 600;
  color: var(--c1);
  font-size: 16px;
  margin: 20px 0 0;
}

.end_footer p {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px 0 0;
  color: #fff;
  font-family: var(--f1);
  font-size: 16px;
}

.end_footer p a {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 0px 8px;
  font-family: var(--f3);
}

.end_footer p a:hover {
  color: var(--c1);
}



.steps-container {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step-box {
  background: #28282873;
  padding: 25px 20px;
  border-radius: 15px;
  position: relative;
  margin: 0 0 85px;
  width: 56%;
  transition: 500ms;
  border: 2px solid var(--c1);
}

.step-box h3 {
  margin: 0 0 12px;
  color: var(--c1);
  font-family: var(--f3);
  font-size: 24px;
  font-weight: 600;
}

.step-box p {
  margin: 0;
  color: #333;
  line-height: 1.6;
  font-family: var(--f1);
  font-size: 14px;
  font-weight: 400;
}

.step-number {
  position: absolute;
  top: 50%;
  right: -210px;
  transform: translateY(-50%);
  background: var(--c1);
  color: white;
  font-weight: bold;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  font-family: var(--f2);
}

@media (max-width: 768px) {
  .step-number {
    right: -60px;
  }
}

.step-box::before {
  position: absolute;
  content: '';
  height: 2px;
  width: 110px;
  background: #000;
  right: -25%;
  top: 50%;
  transform: translateX(-50%);
}

.step-box:hover {
  background: var(--c1);
}

.step-box:hover h3 {
  color: #fff;
}

.step-box:hover p {
  color: #fff;
}

.process_book {
  padding: 70px 0px 0px;
  position: relative;
}

.process_book::before {
  position: absolute;
  content: '';
  background: url(../images/engaged-before.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 520px;
  height: 450px;
  left: -120px;
  top: 60px;
}

.step-box.alt2 {
  margin-left: -126px;
}

.step-box.alt3 {
  margin-left: -125px;
}

.process_book::after {
  position: absolute;
  content: '';
  width: 580px;
  height: 740px;
  right: -8px;
  top: 320px;
  background: url(../images/process-after.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}


.contact_inform {
  display: grid;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.contact_inform a {
  color: #000;
  text-decoration: none;
  font-family: var(--f2);
  font-size: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  transition: 150ms;
}

.contact_inform a i {
  background: var(--c1);
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: 36px;
  color: #fff;
}

.contact_inform a:hover {
  color: #000;
}

.contact_inform a:hover i {
  color: #fff;
}


.main_contact_div {
  padding: 100px 0px;
  position: relative;
  margin-bottom: 100px;
}

.contact_inform h3 {
  font-family: var(--f3);
  font-weight: 600;
  font-size: 45px;
  margin: 0 0 10px;
  text-transform: capitalize;
  color: var(--c1);
}

.contact_us {
  padding: 70px 0px 0px;
}

.section_title.alt h3 {
  font-size: 50px;
  color: var(--c1);
  font-weight: 600;
  font-family: var(--f3);
}

.contact_us_now {
  background: linear-gradient(151deg, var(--c1) 43%, #000000B3 80%);
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  border-radius: 100px 0px 0px 100px;
  right: 0px;
  padding: 85px 95px;
}

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

.contact_form button {
  background: #000;
  width: 100%;
  padding: 10px 0px;
  border-radius: 50px;
  border: none;
  color: #fff;
  font-family: var(--f2);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 20px;
}

.contact_us_now h3 {
  color: #fff;
  font-family: var(--f3);
  font-size: 38px;
  font-weight: 600;
  margin: 0 0 24px;
}

.contact_form input,
.contact_form textarea {
  width: 100%;
  margin: 0 0 12px;
  padding: 11px 14px;
  border-radius: 50px;
  border: none;
  background: #fff;
  outline: none;
  font-size: 14px;
  color: #000;
}

.contact_form input::placeholder,
.contact_form textarea::placeholder {
  color: #000000;
  font-family: var(--f1);
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 400;
}

.contact_form p a {
  color: var(--c2);
  font-family: var(--f1);
  text-transform: lowercase;
  text-decoration: none;
  font-weight: 600;
}

.banner_cont.inner {
  width: 96%;
}



.callbtn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-decoration: none !important;
}

.banner_btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  margin: 24px 0px 0px;
}

.callbtn span {
  background: var(--c1);
  width: 65px;
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: 36px;
  color: #fff;
  transition: 250ms;
}

.num_div h3 {
  font-size: 19px !important;
  text-transform: capitalize;
  margin: 0 !important;
  line-height: 1.1;
}

.num_div p {
  font-family: var(--f1);
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}

.num_div {
  width: 73%;
}

.callbtn:hover span {
  background: var(--c2);
}

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

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

.banner_cont.about h3 {
  font-size: 35px;
  line-height: 1.4;
  margin: 0 0 15px;
  text-decoration: none !important;
}

.about_banner {
  padding: 50px 0px;
}

.banner_cont.about {
  width: 95%;
  margin: 0 auto;
}

.about_img {
  width: 100%;
  height: 416px;
  overflow: hidden;
}

.about_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.our_img {
  width: 20%;
  height: 86px;
  overflow: hidden;
  margin: 0 0 18px;
}

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

.our_cont h3 {
  font-size: 22px;
  font-family: var(--f2);
  font-weight: 600;
}

.our_cont p {
  font-family: var(--f1);
  font-weight: 400;
  font-size: 15px;
  width: 96%;
}

.port_slider.services {
  transform: translateY(-60px) rotate(-5deg) translateX(-25px);
}

.home_banner.services {
  min-height: 61vh !important;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.nav-pills .nav-link {
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
  color: var(--c1);
  font-size: 15px;
  font-family: var(--f2);
  font-weight: 600;
}

.nav-pills .nav-link.active {
  background: none;
  color: var(--c1);
  font-family: var(--f2);
  font-weight: 600;
  font-size: 15px;
}

.nav-pills .nav-link span {
  width: 60px;
  height: 60px;
  background: gainsboro;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 0 auto;
  transition: 250ms;
}

.nav-pills .nav-link span img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: nowrap;
}


.footer_link li {
  list-style-type: none;
  margin: 0 0 6px;
}

.footer_link {
  line-height: 2;
  padding-left: 22px;
}

.footer_link li a {
  font-family: var(--f1);
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  color: #000;
}

.footer_link li a:hover {
  color: var(--c2);
}

.footer_link li a::before {
  position: absolute;
  content: "\ed31";
  font-family: 'boxicons';
  font-size: 18px;
  left: -25px;
  color: var(--c1);
}

.nav_links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 55px;
  margin: 0 0 20px;
}

.service_links {
  padding: 25px 0px 0px;
}

.nav_cont h3 {
  font-family: var(--f2);
  font-size: 37px;
  font-weight: 600;
  margin: 0 0 20px;
}

.nav_cont p {
  font-family: var(--f1);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.nav_img {
  width: 88%;
  height: 515px;
  overflow: hidden;
  margin: 0 auto;
}

.nav_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.nav-pills .nav-link:hover span {
  background: #1E807F;
}

.inner_banner.services {
  padding: 70px 0px;
}

.nav.ghost {
  justify-content: center;
  gap: 8px;
}

.inner_img.inner img {
  object-fit: contain;
}

.service_banner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  min-height: 78vh;
}

.service_cont h3 {
  font-size: 55px;
  font-family: var(--f2);
  margin: 10px 0px 15px;
  line-height: 86px;
  font-weight: 600;
  color: var(--c1);
}

.service_cont p {
  font-size: 16px;
  width: 92%;
  margin: 0 auto 12px;
}

.service_cont h3 span {
  background: var(--c1);
  color: #fff;
  font-family: var(--f2);
  font-weight: 700;
  font-size: 55px;
  padding: 5px 10px;
}

.banner_form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 90%;
  margin: 28px auto 20px;
}

.banner_form input {
  padding: 9px 12px;
  border-radius: 40px;
  background: #28aa9266;
  border: 1px solid var(--c1);
  width: 42%;
  outline: none;
  color: #fff;
  font-size: 15px;
  font-family: var(--f1);
}

.banner_form button {
  width: 42%;
  padding: 12px 12px;
  border-radius: 40px;
  background: var(--c1);
  border: none;
  color: #fff;
  font-family: var(--f2);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  outline: none;
}

.service_cont {
  width: 94%;
  margin: 0 auto;
}

.service_cont p a {
  text-decoration: none;
  font-weight: 700;
  color: var(--c1);
  font-size: 16px;
}

.banner_form input::placeholder {
  font-family: var(--f1);
  text-transform: capitalize;
  font-weight: 500;
  color: #ffffffb3;
  font-size: 15px;
}

.overlapping-image-inner {
  width: 100%;
  height: 89vh;
  overflow: hidden;
}

.overlapping-image-inner img {
  width: 82%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.z-index_1 {
  z-index: 1;
  position: relative;
}

.z-index_2 {
  z-index: 2;
  position: relative;
}

.z-index_3 {
  z-index: 3;
  position: relative;
}

.z-index_4 {
  z-index: 4;
  position: relative;
}

.background-green {
  background: var(--c1);
}

.background-light {
  background: var(--c2) !important;
}

.about_banner.alt {
  padding: 160px 0px 0px;
  position: relative;
  height: 100vh;
  clip-path: polygon(0 5%, 100% 1%, 100% 100%, 0% 100%);
}

.banner_cont.case h3 {
  color: #fff;
  font-size: 44px;
  margin: 0;
}

.banner_cont.case p {
  color: #fff;
}

.author_name h5 {
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--f2);
}

.author_name h3 {
  font-size: 35px !important;
}

.pro_section {
  padding: 70px 0px;
  position: relative;
}

.main_background::before {
  position: absolute;
  content: '';
  width: 115px;
  height: 115px;
  background: url(../images/cup.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 9999;
  top: -10px;
}

.main_background {
  position: relative;
}

.privacy h3 {
  font-family: var(--f2);
  font-weight: 600;
  font-size: 24px;
  margin: 0 0 16px;
}

.privacy p {
  font-family: var(--f1);
  font-weight: 400;
  font-size: 16px;
  margin: 0 0 16px;
}

.privacy-points li span {
  text-decoration: underline !important;
  font-weight: 700;
}

.privacy_point li {
  list-style-type: disc;
}

.privacy_point li span {
  text-decoration: none !important;
  font-weight: 700;
}

.privacy_point {
  padding-left: 20px;
  margin: 0 0 18px;
  line-height: 1.6;
}

.privacy-points {
  padding-left: 20px;
  margin: 0 0 18px;
  line-height: 1.6;
}

.privacy_point span {
  font-weight: 700;
  font-size: 16px;
}

.privacy_contact {
  margin: 0 0 35px;
  display: grid;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.privacy_contact a {
  font-size: 17px;
  font-weight: 700;
  font-family: var(--f1);
  text-decoration: none;
}

.privacy {
  padding: 70px 0px 40px;
}

.service_drop {
  position: absolute;
  background: #fff;
  width: 100%;
  padding: 0px;
  overflow: hidden;
  border-radius: 22px;
  transition: 500ms;
  transform: translateY(32px) !important;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  box-shadow: 0px 0px 10px 1px gray;
}

.service_top_cont h4 {
  font-family: var(--f2);
  font-size: 32px;
  font-weight: 600;
  background: var(--c2);
  padding: 18px 14px;
  color: #fff;
}

.padding-right {
  padding-left: 0 !important;
  background: var(--c1);
}

.service_top_cont {
  padding: 100px 20px 65px 35px;
}

.service_top_cont h3 {
  font-family: var(--f2);
  font-weight: 600;
  font-size: 28px;
  color: #fff;
}

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

.drop_down_links li {
  list-style: none;
  line-height: 1;
}

.drop_down_links li a {
  margin: 0 0 17px;
  text-transform: capitalize;
  font-family: var(--f1);
  font-size: 20px;
}

.drop_down_links {
  width: 84%;
  padding: 28px 0px;
}

.drop_down_links li a.active {
  color: var(--c1);
  font-size: 16px;
  font-weight: 600;
}

.header-main__nav li:hover .service_drop {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.popup_form {
  position: relative;
  background: var(--c2);
  padding: 38px 18px;
  border-radius: 20px;
  width: 26%;
  transform: scale(0);
  z-index: 99;
  transition: 500ms;
}

.POPmAIN {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 500ms;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: #000000a3;
  backdrop-filter: blur(5px);
}

.popup_form .footer_form button {
  background: #fff;
  color: var(--c1);
  font-weight: 600;
}

.popup_form .footer_form input {
  border-radius: 12px;
  background: #393b45cc;
}

.popup_form .footer_form textarea {
  border-radius: 12px;
  background: #393b45cc;
}

.popup_form span {
  position: absolute;
  top: 8px;
  cursor: pointer;
  right: 10px;
  background: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 23px;
  transition: 500ms;
}

.popup_form span:hover {
  background: #000;
  color: #fff;
}

.POPmAIN.active {
  opacity: 1;
  visibility: visible;
}

.POPmAIN.active .popup_form {
  transform: scale(1);
}

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

.main_div h3 {
  font-size: 88px;
  font-family: var(--f3);
  text-transform: capitalize;
  font-weight: 700;
  color: var(--c1);
  margin: 0 0 40px;
}

.abnner_form {
  width: 370px;
  margin-left: auto;
  box-shadow: 0 0 15px 1px #4444;
  background: #ffffff82;
  padding: 30px;
  border-radius: 30px;
  font-family: var(--f3);
  backdrop-filter: blur(7px);
}

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

.header__logo {
  height: 90px;
  width: 200px;
}

a.header__logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  scale: 1.3;
}

.banner_formHead h3 {
  text-align: center;
  font-size: 30px;
  font-family: var(--f3);
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--c1);
}

.bannerFeild :is(input, textarea) {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  font-family: var(--f1);
  background: #ffffff;
  border: 1px solid var(--c1);
  border-radius:
    20px;
  color: #000;
}

.bannerFeild textarea {
  height: 130px;
}

.bannerFeild {
  margin: 0 0 10px;
}

.bannerFeild button {
  width: 100%;
}

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

.drop_down_links li a {
  color: var(--c1) !important;
}

.drop_down_links li a:hover {
  color: var(--c2) !important;
}

.leading_source {
  display: none;
}

.inner_banner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.innerBannerImg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

.aboutSec {
  padding: 70px 0;
}

.aboutSecContent h4 {
  font-family: var(--f3);
  font-size: 44px;
  color: #000;
  margin: 0 0 20px;
  text-transform: capitalize;
}

.aboutSecContent p {
  font-size: 14px;
  line-height: 28px;
  color: #000;
}

.aboutSec_img {
  width: 100%;
  height: 430px;
  border-radius: 40px;
  overflow: hidden;
}

.banner_cont.inner h4 {
  font-family: var(--f3);
  color: var(--c1);
  text-transform: capitalize;
  font-weight: 700;
  font-size: 30px;
  margin: 0;
  color: var(--c2);
}

.aboutSec--alt {
  background: #9b85798a;
}

d {
  font-family: auto;
  margin-right: 3px;
}

.banner_cont.about h4 {
  font-family: var(--f3);
  font-weight: 600;
  color: var(--c2);
  font-size: 25px;
}

.policy_content h4 {
  font-family: var(--f3);
  color: var(--c2);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 10px;
}

.policy_content h2 {
  font-family: var(--f3);
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--c1);
  margin: 0 0 10px;
}

.policy_content p {
  font-family: 'Poppins';
  font-size: 14px;
  line-height: 28px;
  margin: 15px 0;
}

.policy_content ul li {
  margin: 0 0 10px;
  font-family: 'Poppins';
  font-size: 14px;
}

.policy_content ul {
  padding-left: 20px;
}

.policy_content h5 {
  font-family: var(--f3);
  font-size: 21px;
  font-weight: 700;
  color: var(--c1);
}

.banner_cont h4 {
  font-size: 31px;
  color: var(--c2);
  font-family: var(--f3);
  margin: 0;
}

.testi_title h3 {
  color: var(--c1) !important;
  font-family: var(--f3);
}

.faq h3 {
  color: #fff !important;
}

.girlImg {
  width: 100%;
  height: 450px;
  border-radius: 40px;
  overflow: hidden;
}





/* dropdown css start */

ul.dropdown_menu {
  background: #ffffff;
  position: absolute;
  z-index: 99999;
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 500ms all;
  backdrop-filter: blur(15px);
}

ul.dropdown_menu li a {
  border-bottom: 1px solid #00000029 !important;
  padding: 10px 13px;
  color: #000000;
  display: flex;
  font-size: 13px;
  align-items: center;
  gap: 7px;
}

.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 {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  min-width: 10rem;
  margin: .125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: .25rem;
}

.dropdown_menu {
  position: static;
  float: none;
}

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

.header-main__nav li {
  position: relative;
}

ul.dropdown_menu li a::after {
  display: none;
}

.dropdown-toggle {
  font-size: 17px;
  transition: 500ms;
}

ul.header-main__nav li a i {
  font-size: 20px;
  transition: 500ms;
}

ul.header-main__nav li:hover i {
  transform: rotate(180deg);
}

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

.top-radious {
  border-top-left-radius: 19px;
  border-top-right-radius: 19px;
}

.bottom-radious {
  border-bottom-left-radius: 19px;
  border-bottom-right-radius: 19px;
}

ul.dropdown_menu li a:hover {
  background: var(--c2);
  color: #000;
}

/* dropdown css end */

.footer_links li {
  padding-left: 24px;
}

ul.footer_links h5 {
  font-size: 21px;
  font-family: var(--f3);
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  position: relative;
}

ul.footer_links h5::before {
  position: absolute;
  content: '';
  width: 40%;
  height: 3px;
  background: #414042;
  bottom: -4px;
  left: 0;
}

.footer_links.row_1 li a {
  margin-bottom: 14px;
}

.footer_links.row_3 a {
  margin-bottom: 20px;
}

.banner_cont.inner ul {
  padding-left: 23px;
}

.footer_form input::placeholder,
.footer_form textarea::placeholder {
  color: #fff;
}

.footer_main_form .footer_form input,
.footer_main_form .footer_form textarea {
  color: #000;
}

.footer_main_form .footer_form input::placeholder,
.footer_main_form .footer_form textarea::placeholder {
  color: #000;
}

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

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

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

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


.Personalized_support_slider .require_cont {
  text-align: center;
  padding: 0px 80px;
  margin-top: 24px;
}

.Personalized_support_slider .slick-prev {
  top: 22%;
  right: 6%;
  left: auto;
  transform: rotate(90deg);
}

.Personalized_support_slider .slick-next {
  transform: rotate(90deg);
  top: 34%;
  right: 6%;
}

.Personalized_support_slider .slick-arrow {
    background: var(--c1);
    width: 50px;
    height: 50px;
}
.require_main.slick-slide.slick-current.slick-active .require_img img {
    transform: none;
}




/* responsive  css start */

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


.side_menu {
  width: 50%;
  background: var(--c2);
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transform: translateX(-100%);
  overflow-y: auto;
  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: 9px 12px;
  width: 100%;
  border-bottom: 1px solid #ffffff69;
  color: #fff;
  text-transform: capitalize;
  font-size: 15px;
  text-decoration: none;
}

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

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

.side_menu .accordion-item {
  background: transparent;
}

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

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

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

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

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

/* responsive  css end */