@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Montserrat:wght@100..900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

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

@font-face {
  font-family: rebellion-knight;
  src: url("../fonts/rebellion_knight/rebellion-knight.ttf");
}

/* Root Styling */
:root {
  --c1: #5d4ca7;
  --c2: #fff;
  --c3: linear-gradient(90deg, rgb(67 51 110) 0%, rgb(174 154 230) 100%);
  --f1: 'Montserrat';
  --f2: 'Manrope';
  --f3: 'poppins';
  --f4: 'Montserrat';
}

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 33px;
  background: var(--c3);
  color: #fff;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  border: none;
  z-index: 99;
  box-shadow: 0px 0px 0px 1px var(--c1);
}

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

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

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

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

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

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

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

/* button style */

/* header css start */

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

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

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

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

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

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

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

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;
  background: #000;
  min-height: 120vh;
  padding-top: 6rem;
  z-index: 1;
}

.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;
  filter: hue-rotate(45deg);
}

.banner_cont {
  position: relative;
  color: #fff;
}

.banner_cont h6 {
  font-size: 17px;
  text-transform: uppercase;
  font-family: var(--f2);
  font-weight: 300;
  margin: 0;
}

.banner_cont h3 {
  font-size: 35px;
  font-family: var(--f2);
  text-transform: capitalize;
  margin: 10px 0px;
  font-weight: 600;
  line-height: 1.2;
}

.banner_cont p {
  font-size: 14px;
  width: 90%;
  line-height: 1.5;
}

/* baner css end */

.nav_side {
  display: flex;
  align-items: center;
  gap: 50px;
}

.header_chat a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1;
  font-family: var(--f3);
  color: #fff;
}

.header_chat a i {
  font-size: 18px;
}

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

.white_btn {
  background: var(--c2);
  box-shadow: 0px 0px 0px 1px var(--c1);
  color: var(--c1);
  font-weight: 600;
}

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

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

.nav_side .themebtn {
  padding: 12px 22px;
  border-radius: 50px;
}

.banner_cont h6 span {
  font-weight: 600;
}

.banner_cont h3 span {
  font-family: var(--f4);
  font-weight: 500;
  font-size: 53px;
  line-height: 1.4;
  color: #fff;
  background: var(--c3);
  padding: 0px 20px;
  border-radius: 50px;
  margin: 10px 0 10px -24px;
  display: block;
  width: fit-content;
}

.banner_cont h3 span b {
  font-family: var(--f2);
  font-weight: 600;
  font-size: 50px;
}

.success {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0px;
  border-top: 1px solid #b9b9b94f;
  margin-top: 5rem;
}

.success_item {
  color: #fff;
  width: 25%;
}

.success_item h3 {
  font-size: 28px;
  font-family: var(--f3);
  text-transform: uppercase;
  font-weight: 300;
  line-height: 1.3;
}

.success_item h3 span {
  font-weight: 600;
  font-family: var(--f3);
  display: block;
}

.success_item p {
  font-size: 15px;
  line-height: 1.7;
}

.success_item h1 {
  font-size: 72px;
  font-family: var(--f3);
  font-weight: 500;
  background: var(--c3);
  color: transparent;
  -webkit-background-clip: text;
}

.text-right {
  text-align: right;
}

.transparent_btn {
  background: transparent;
  box-shadow: 0px 0px 0px 1px #ffffff99;
}

.banner_left_books {
  position: absolute;
  top: 8%;
  left: -8%;
  width: 22%;
  height: 65%;
  transition: 700ms ease-in-out;
}

.banner_left_books img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.banner_left_books:hover {
  left: 0;
}


@keyframes rubberband {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.25, 0.75);
  }

  40% {
    transform: scale(0.75, 1.25);
  }

  50% {
    transform: scale(1.15, 0.85);
  }

  65% {
    transform: scale(0.95, 1.05);
  }

  75% {
    transform: scale(1.05, 0.95);
  }

  100% {
    transform: scale(1);
  }
}

.banner_right_books {
  position: absolute;
  top: 8%;
  right: -12%;
  width: 29%;
  height: 68%;
  transition: 700ms ease-in-out;
  z-index: 2;
}

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

.banner_right_books:hover {
  right: 0;
}

.get_intuch {
  padding: 17px 0px;
  background: url('../images/get_intuch_bg.png');
  background-size: cover;
  background-position: center;
  position: relative;
  margin: 70px 0px 0;
  filter: hue-rotate(45deg);
}

.get-in-tuch_img {
  width: 100%;
  height: 375px;
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: -57px;
}

.get-in-tuch_img img {
  width: 78%;
  height: 100%;
  object-fit: cover;
}

.get-in-tuch_cont h4 {
  font-family: var(--f2);
  text-transform: capitalize;
  font-size: 38px;
  color: #fff;
  margin: 0;
}

.get-in-tuch_cont p {
  font-size: 14px;
  font-family: var(--f1);
  font-weight: 300;
  margin: 17px 0px;
  color: #fff;
}

.get-in-tuch_btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

a.live_chat span {
  display: block;
}

a.live_chat {
  color: #fff;
  font-family: var(--f1);
  font-size: 14px;
}

.get-in-tuch_btn .themebtn {
  display: flex;
  align-items: center;
  gap: 6px;
}

.get-in-tuch_btn .themebtn i {
  font-size: 25px;
}

.get-in-tuch_cont h4 span {
  font-family: var(--f4);
}

.testimonials {
  padding: 80px 0px 64px;
  background: linear-gradient(90deg, rgb(67 51 110 / 10%) 0%, rgb(174 154 230 / 15%) 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.testo_img {
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 7px;
}

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

.testo_main {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
  position: relative;
}

.testo_main h4 {
  font-size: 21px;
  margin-bottom: 2px;
  text-transform: capitalize;
  font-family: var(--f2);
  font-weight: 600;
  color: #000;
}

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

.testo_items {
  margin: 10px 10px 42px;
  padding: 22px;
  border-radius: 11px;
  height: 238px !important;
  background: #fff;
  transition: 500ms all;
  border: 2px solid #6a6a6a;
  box-shadow: 0px 30px 30px 0px #055e6a3b;
}

.testo_cont p {
  font-size: 15px;
  font-family: var(--f3);
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #fff;
  font-weight: 200;
  background: var(--c3);
  color: transparent;
  -webkit-background-clip: text;
  font-weight: 500;
}

.testimonial_slider .testimonial_slider {
  padding: 0px 100px !important;
}

.testimonial_slider .slick-list.draggable {
  padding: 120px 80px !important;
}

.testimonial_slider .slick-arrow {
  position: absolute;
  top: -85px;
  right: 14rem;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--c3);
  transition: 500ms all;
  font-family: boxicons !important;
  overflow: hidden;
  border-radius: 100%;
}

.testimonial_slider .slick-next.slick-arrow {
  right: 11rem;
}

.testimonial_slider .slick-arrow::before {
  color: #000000;
  transition: 500ms all;
  font-size: 25px;
  opacity: 1;
}

.testimonial_slider .slick-arrow:hover {
  background: var(--c2);
}

.testimonial_slider .slick-next.slick-arrow::before {
  content: "\ebe6";
}

.testimonial_slider .slick-prev.slick-arrow::before {
  content: "\eb33";
}

.testo_main::before {
  position: absolute;
  content: '';
  width: 40px;
  height: 40px;
  top: 50%;
  right: 0;
  background-image: url(../images/quote.png);
  transform: translate(-0%, -50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  filter: brightness(0) invert(1);
}

.user_detail {
  width: 62%;
}

.testo_items.slick-slide.slick-current.slick-active.slick-center {
  background: var(--c3);
}

.testo_items.slick-slide.slick-current.slick-active.slick-center .testo_main h4 {
  color: #fff;
}

.testo_items.slick-slide.slick-current.slick-active.slick-center .testo_main p {
  color: #fff;
}

.testo_items.slick-slide.slick-current.slick-active.slick-center .testo_cont p {
  color: #fff;
}

.testo_items.slick-slide.slick-current.slick-active.slick-center .testo_main::before {
  filter: brightness(100);
}

.section_title h3 {
  font-size: 58px;
  font-family: var(--f2);
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 18px;
  color: #000;
}

.section_title h3 span {
  font-family: var(--f4);
  font-size: 55px;
  line-height: 1;
  color: var(--c1);
}

.section_title p {
  font-size: 16px;
  margin: 0;
  font-weight: 400;
  color: #000;
}

.portfolio {
  padding: 70px 0px;
  background: #F2F2F2;
}

.portfolio_item {
  margin: 12px 12px;
  height: 452px;
  padding: 8px;
  box-shadow: 0px 0px 11px 0px #bbbbbb;
  border-radius: 10px;
}

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

.portfolio-2 {
  transform: rotate(180deg);
}

.portfolio-2 .portfolio_item img {
  transform: rotate(180deg);
}


footer {
  padding: 35px 0;
  background: url(../images/foo_overlay.png);
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

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

.logo_footer_sec p {
  font-size: 17px;
  line-height: 30px;
  color: var(--white);
  font-weight: 300;
}

.social_media_footer ul li a {
  background: var(--white);
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.social_media_footer ul li {
  display: inline-block;
  margin: 0 15px 0 0;
}

.social_media_footer {
  padding-top: 20px;
  display: inline-block;
}

.social_media_footer ul li a:hover {
  background: var(--primary_color);
  color: var(--white);
}

.about__content__sec h3 span,
.footer__info__detail ul li a:hover,
.footer_menu_sec ul li a:hover,
.privacy_policy .about__content__sec h4,
.privacy_policy .about__content__sec p b,
.term_links ul li a:hover {
  color: var(--primary_color);
}

.heading_footer h3 {
  color: #000;
  font-size: 27px;
  margin-bottom: 30px;
  display: inline-block;
  font-family: var(--f1);
  font-weight: 600;
}

.footer_menu_sec ul li a {
  color: #000 !important;
  font-size: 15px;
  padding-bottom: 15px;
  display: inline-block;
  position: relative;
  padding-left: 25px;
}

.copy_text p,
.term_links ul li a {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  font-weight: 400;
  text-align: center;
}

.footer_menu_sec ul li a:after {
  content: "";
  position: absolute;
  border: 2px solid #000;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  transition: 500ms;
  border-radius: 50px;
}

.copy__right {
  background: var(--c3);
  padding: 15px 0;
}

.copy_text p {
  margin-bottom: 0;
}

.term_links ul li {
  display: inline-block;
  padding: 0 0 0 25px;
}

.term_links {
  text-align: right;
}

.badge_logo ul li img {
  width: auto;
  filter: unset;
  margin-bottom: 0;
}

.badge_logo ul li {
  display: inline-block;
  padding: 0 20px 0 0;
}

.badge_logo ul {
  display: flex;
  align-items: center;
}

.footer__info__detail ul li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
}

.footer__info__detail ul li a {
  font-size: 17px;
  color: var(--white);
  font-weight: 500;
}

.footer__info__detail ul li span {
  position: absolute;
  left: 0;
}

.footer__info__detail ul li p {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
  line-height: 22px;
}


.faqs {
  padding: 70px 0;
}

.faqs_card {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 40px;
  transition: 500ms all;
}

.faqs_num {
  font-size: 35px;
  font-family: var(--f2);
  font-weight: 500;
  color: #7E7E7E;
}

.faqs_cont {
  font-size: 24px;
  font-family: var(--f2);
  font-weight: 700;
  position: relative;
  width: 78%;
}

.faqs_cont span {
  display: block;
  font-size: 15px;
  margin-top: 20px;
  font-weight: 400;
  height: 140px;
  overflow-y: auto;
}

.faqs_cont:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #000;
  bottom: -34px;
  left: 0;
}

.faqs_card:hover {
  background: linear-gradient(90deg, rgb(55 165 139 / 22%) 0%, rgb(29 119 186 / 14%) 100%);
  border-radius: 8px;
}

.faqs_card:hover .faqs_num {
  color: #fff;
  background: var(--c3);
  color: transparent;
  -webkit-background-clip: text;
}

.faqs_card:hover .faqs_cont {
  color: #000;
}

.faqs_card:hover .faqs_cont span {
  color: #000;
}

.faqs_card:hover .faqs_cont:before {
  opacity: 0;
  visibility: hidden;
}

.transforming {
  padding: 70px 0 278px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

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

.counter_text {
  font-size: 40px;
  font-family: var(--f2);
  font-weight: 700;
  margin: 0;
}

.counter_text span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  background: #000;
  -webkit-background-clip: text;
}

.trans_cont .title {
  font-size: 50px;
  font-family: var(--f2);
  color: #000;
  font-weight: 500;
  line-height: 68px;
}

.trans_cont .title span {
  font-family: var(--f4);
}

.trans_text {
  font-size: 16px;
  font-family: var(--f2);
  margin: 20px 0;
}

.trans__bt {
  display: flex;
  align-items: center;
  gap: 30px;
}

.trans__bt .white_btn {
  border: 1px solid #000;
}

.trans_image {
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
  height: 90%;
}

.commit {
  padding: 70px 0;
}

.commit_crd {
  width: 50%;
  padding: 36px;
  border: 2px solid var(--c1);
  border-radius: 20px;
  position: relative;
  background: #fff;
  box-shadow: 0 0 15px 1px #4444;
}

.commit_icon {
  width: 23%;
}

.commit_title {
  font-size: 28px;
  margin: 0px 0 40px;
  font-family: var(--f2);
  font-weight: 600;
  color: #000;
}

.commit_text {
  font-size: 15px;
  font-family: var(--f2);
  line-height: 28px;
  height: 140px;
  overflow-y: auto;
}

.empowering_business {
  padding: 150px 0px;
  position: relative;
  overflow: hidden;
}

.empowering_cont h3 {
  font-family: var(--f3);
  font-size: 48px;
  margin-bottom: 22px;
}

.empowering_cont h3 span {
  font-family: var(--f4);
  font-size: 53px;
  line-height: 1.1;
  color: var(--c1);
}

.empowering_cont p {
  font-size: 16px;
  font-family: var(--f3);
  color: #444;
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.empower_point {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin: 20px 0;
  background: linear-gradient(90deg, rgb(67 51 110 / 20%) 0%, rgb(174 154 230) 100%);
  padding: 20px 20px;
  border-radius: 10px;
}

.number {
  font-family: var(--f2);
  font-size: 60px;
  margin: 0;
  font-weight: 700;
  color: transparent;
  background: var(--c3);
  -webkit-background-clip: text;
}

.point_cont h3 {
  font-family: var(--f2);
  font-size: 30px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 21px;
}

.point_cont h3 span {
  font-family: var(--f3);
  font-weight: 600;
  font-size: 30px;
  display: block;
}

.point_cont p {
  font-family: var(--f3);
  font-size: 15px;
  color: #444;
  font-weight: 400;
  margin: 0;
  line-height: 1.8;
}

.published_needs {
  background: var(--c3);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.need_card {
  border: 2px solid #fff;
  padding: 45px 25px;
  border-radius: 24px;
}

.need_img {
  width: 70px;
  height: 70px;
  overflow: hidden;
  margin-bottom: 28px;
}

.need_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0) invert(1);
}

.need_cont h3 {
  color: #fff;
  font-family: var(--f2);
  font-size: 27px;
  margin-bottom: 18px;
  line-height: 1.3;
}

.need_cont p {
  font-family: var(--f3);
  font-size: 14px;
  line-height: 1.9;
  width: 97%;
  color: #fff;
  height: 160px;
  overflow-y: auto;
  direction: rtl;
  text-align: end;
  padding-left: 15px;
}

.need_card.alt {}

.needs_cont h3 {
  color: #fff;
  text-transform: capitalize;
  font-family: var(--f2);
  font-size: 55px;
  line-height: 1.1;
  margin-bottom: 28px;
}

.needs_cont h3 span {
  font-family: var(--f4);
  color: var(--c1);
}

.needs_cont p {
  color: #fff;
  font-family: var(--f3);
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.needs_cont h5 {
  color: #fff;
  font-family: var(--f2);
  font-weight: 300;
  font-size: 22px;
  margin-bottom: 22px;
}



.needs_cont {
  padding-left: 30px;
}

.colo-black {
  color: #000;
}

.testo_para {
  font-size: 14px !important;
}

.Chooseus_btn {
  display: flex;
  align-items: center;
  gap: 15px;
}

.Chooseus_btn .themebtn {
  box-shadow: 0px 0px 0px 1px #ffffff73;
}

.portfolio_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 3rem;
}

/* dropdown css start */

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

ul.dropdown_menu li a {
  border-bottom: 1px solid #00000029 !important;
  padding: 10px 13px;
  color: #000;
  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: 12rem;
  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: 10px;
  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: 14px;
  border-top-right-radius: 14px;
}

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

/* dropdown css end */

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

.inner_cont {
  text-align: center;
  position: relative;
  z-index: 1;
}

.inner_cont h3 {
  margin: 0;
  font-size: 56px;
  font-family: var(--f3);
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.inner_cont h3 span {
  font-family: var(--f3);
  font-weight: 600;
  color: var(--c2);
}

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

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

.inner_content_section {
  padding: 70px 0px;
}

.inner_sub_cont h3 {
  font-size: 30px;
  color: #222f3f;
  font-family: var(--f3);
  font-weight: 600;
  text-transform: capitalize;
}

.inner_sub_cont p {
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 12px;
}

.scroll-block {
  max-height: 380px;
  padding-right: 15px;
  overflow-y: scroll;
}

.scroll-block::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(206, 206, 206, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.scroll-block::-webkit-scrollbar {
  width: 2px;
  background-color: #F5F5F5;
}

.scroll-block::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--c1);
}

.inner_sub_cont li {
  font-size: 15px;
  margin-bottom: 7px;
  position: relative;
}

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

.inner_sub_cont li::before {
  position: absolute;
  content: '';
  width: 7px;
  height: 7px;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
  left: -12px;
  border-radius: 10px;
  border: 1px solid #000;
}

.card_section {
  padding-bottom: 70px;
}

.card_item {
  padding: 40px 33px;
  border: 2px solid #00000021;
  box-shadow: 0px 0px 40px #eeeeee inset;
  border-radius: 10px;
  margin: 10px 13px;
  height: 340px;
  transition: 300ms cubic-bezier(1, 0.9, 0, -0.01);
  position: relative;
  overflow: hidden;
}

.card_item h3 {
  font-size: 20px;
  font-family: var(--f3);
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.card_item p {
  font-size: 15px;
  font-family: var(--f2);
  overflow-y: auto;
  margin: 0;
  padding-right: 10px;
  position: relative;
  z-index: 1;
  height: 160px;
}

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

.card_item p::-webkit-scrollbar {
  width: 2px;
  background-color: #F5F5F5;
}

.card_item p::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--c1);
}

.card_item:hover {
  /* background: var(--c1); */
  color: #fff;
  box-shadow: none;
}

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

.slick-dots li button {
  width: 8px;
  height: 8px;
  background: var(--c2);
  border-radius: 50px;
  padding: 0;
}

.slick-dots li button::before {
  top: 50%;
  left: 50%;
  content: '';
  background: var(--c2);
  opacity: 1;
  border-radius: 50px;
  width: 7px;
  height: 7px;
  transform: translate(-50%, -50%);
}

li.slick-active button {
  background: var(--c1);
}

.slick-dots {
  bottom: -40px;
}

.magic_happens {
  padding: 80px 0px;
  background: #252424;
  overflow: hidden;
  position: relative;
}

.magic_img {
  width: 100%;
  height: 420px;
  overflow: hidden;
  margin-bottom: -98px;
}

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

.magic_cont {
  color: #fff;
  width: 90%;
}

.magic_cont h3 {
  font-size: 46px;
  font-family: var(--f3);
}

.magic_cont p {
  font-size: 17px;
}

.books {
  padding: 70px 0px;
}

.book_item {
  width: 100%;
  height: 37vh;
  overflow: hidden;
  margin: 28px 36px;
  box-shadow: -11px 16px 19px 0px #d5d5d5;
  border-radius: 10px;
  padding: 4px;
}

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

.card_item::before {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 100px;
  height: 100px;
  background: var(--c1);
  content: '';
  border-radius: 100%;
  transition: 600ms ease-in-out;
}

.card_item:hover::before {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.5);
}

.magic_happens::before {
  position: absolute;
  content: '';
  width: 300px;
  height: 300px;
  top: -50px;
  left: -50px;
  background: #ffffff2b;
  filter: blur(100px);
}

.magic_happens::after {
  position: absolute;
  content: '';
  width: 300px;
  height: 300px;
  bottom: 50px;
  left: 41%;
  background: #ffffff2b;
  filter: blur(100px);
}

/* responsivecss 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;
}

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

.responsive_menu {
  display: none;
}

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

.responsive_logo img {
  width: 100px;
}

.open_menu {
  font-size: 30px;
  color: var(--c1);
}

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

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

.menu_sticky {
  position: fixed;
}

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

.responsive_overly.show {
  left: 0;
}

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

.accordion-item {
  background: transparent;
}

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

.accordion-body {
  padding: 0;
}

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

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

/* responsivecss end */

.slick-dots li button {
  width: 14px;
  height: 14px;
  border-radius: 50px;
  background: gray;
  padding: 0;
}

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

.slick-dots {
  bottom: -32px;
}

li.slick-active button {
  background: var(--c1);
  opacity: 1;
}

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

.menu-accordion-body {
  height: 150px;
  background: #353535;
  overflow-y: auto;
}

li.slick-active button::before {
  opacity: 1;
  background: #fff;
}

/* contact us css start*/

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

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

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

.contact_form {
  position: relative;
  box-shadow: 0px 0px 10px 0px #d7d7d7;
  padding: 35px 50px;
  border-radius: 0px 65px;
}

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

.contact_cont {
  position: relative;
}

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

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

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

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

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

.fomt_fields input::placeholder,
.fomt_fields textarea::placeholder {
  color: var(--c1);
  text-transform: capitalize;
}

.fomt_fields textarea {
  height: 120px;
}

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

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

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

.contact_form h3 {
  font-size: 42px;
  text-transform: capitalize;
  font-family: var(--f3);
  font-weight: 700;
  margin-bottom: 10px;
}

.fomt_fields input:focus,
.fomt_fields textarea:focus {
  transform: translateY(-6px);
}

/* contact us css end  */

/* popup form css  */

.popup_form {
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background: #000000bf;
  backdrop-filter: blur(4px);
  z-index: 999;
  display: none
}

.close_form {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  background: var(--c1);
  border-bottom-left-radius: 29px;
  color: #fff;
  border: 2px solid #fff;
  display: none;
}

.popup_form.active {
  display: flex
}


.banner__form::before {
  position: absolute;
  content: '';
  width: 270px;
  height: 20px;
  background: #000000;
  top: 0;
  right: 0;
  transition: 500ms;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
}

.banner__form::after {
  position: absolute;
  content: '';
  width: 300px;
  height: 17px;
  background: #00000059;
  top: 0;
  right: 0;
  transition: 500ms;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
}

.banner__form {
  padding: 40px 40px;
  width: 66%;
  margin-left: auto;
  box-shadow: 0px 0px 29px 0px #d0d0d0;
  border-radius: 0px 40px;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #000;
}

.banner__form h3 {
  font-size: 24px;
  color: #222f3f;
  font-family: var(--f3);
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 1rem;
}

.form_fields input,
.form_fields textarea {
  width: 100%;
  margin-bottom: 15px;
  height: 42px;
  border: none;
  box-shadow: 0px 0px 2px 0px #939393;
  padding: 12px;
  border-radius: 2px;
  font-size: 14px;
  outline: 0;
}

.form_fields textarea {
  height: 107px;
}

.form_btn button {
  border: none;
  padding: 9px 30px;
}

/* popup form end  */

.close_form:hover {
  color: #fff;
}

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

.popup_form .banner__form {
  background: #fff;
  width: 25%;
  margin: auto;
}


.popup_form .close_form {
  display: flex;
}

.testo_inner {
  background-image: none;
  background: var(--c1);
}

.feedback-card {
  color: #000;
  background: #fff;
  padding: 26px 25px;
  box-shadow: 0 0 10px 5px #00000020;
  margin: 0.75rem;
  position: relative;
}

.feedback-card__user {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
}

.feedback-card__user .icon {
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  overflow: hidden;
  box-shadow: 0 0 5px 1px #00000020;
  background: #000;
  font-size: 1.5rem;
  font-family: var(--f3);
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.feedback-card__user .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.feedback-card__user .name {
  margin-bottom: 8px;
  font-family: var(--f3);
  line-height: 1;
  font-size: 18px;
  font-weight: 500;
}

.feedback-card__user .location {
  text-transform: uppercase;
  font-size: 0.85rem;
}

.feedback-card__stars {
  width: 110px;
  margin: 1rem 0 0.75rem;
}

.feedback-card__content .title {
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
}

.feedback-card__content .review {
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 400;
  height: 120px;
  overflow-y: auto;
  padding-right: 0.5rem;
  font-family: var(--f1);
}

.feedback-card__content .review::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

.feedback-card__content .review::-webkit-scrollbar-track-piece {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

.feedback-card__content .review::-webkit-scrollbar-thumb:vertical {
  border-radius: 10px;
  background-color: rgb(0, 0, 0);
}

.about_card .card_item {
  height: 315px;
}

.kobo_book .card_item {
  height: 270px;
}

.apple_card .card_item {
  height: 310px;
}

.printing_card .card_item {
  height: 280px;
}

.marketing_card .card_item {
  height: 265px;
}

.sec_card .card_item {
  height: 250px;
}

.author_card .card_item {
  height: 250px;
}

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

.commit_text::-webkit-scrollbar {
  width: 3px;
  background-color: #F5F5F5;
}

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

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

.need_cont p::-webkit-scrollbar {
  width: 3px;
  background-color: #F5F5F5;
}

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

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

.faqs_cont span::-webkit-scrollbar {
  width: 3px;
  background-color: #F5F5F5;
}

.faqs_cont span::-webkit-scrollbar-thumb {
  background-color: #000000;
}

.footer_menu_sec ul li a:hover {
  color: #fff;
}

.footer_menu_sec ul li a:hover:after {
  transform: scale(1.4);
  left: -10px;
}

.heading_footer {
  text-align: center;
}

.logo_footer_sec {
  text-align: center;
}

.heading_footer {
  text-align: center;
}

.logo_footer_sec {
  text-align: center;
}

.copy_text2 {
  color: #fff;
}

.copy_text2 p {
  margin: 0;
  color: #fff;
}

.logo_footer_sec a {
  width: 330px;
  height: auto;
  margin-bottom: 23px;
}

.feedback-card:before {
  position: absolute;
  top: -12px;
  left: 20px;
  background-image: url(../images/coma.png);
  content: '';
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

a.header__logo {
  width: 292px;
  overflow: hidden;
  height: auto;
}

.copy_text p,
.term_links ul li a:hover {
  color: #fff;
}


.contact_info {
  width: 61%;
}

.term_sec {
  padding: 70px 0;
}

section.term_sec h4 {
  font-size: 25px;
  margin: 0 0 10px;
  font-family: var(--f1);
  font-weight: 700;
  color: #000;
}

.term_sec h5 {
  font-size: 20px;
  color: #000;
  font-family: var(--f1);
  font-weight: 600;
  margin: 0 0 10px;
}

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

.term_sec ul {
  margin: 10px 0;
}

.term_sec ul li {
  font-size: 14px;
  margin: 10px 0;
}

.checkfomt_fields {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin: 0 0 15px;
}

.checkfomt_fields label {
  font-size: 11px;
}

.checkfomt_fields input {
  margin: 3px 0 0;
}

.checkfomt_fields label a {
  font-weight: 700;
  text-decoration: underline !important;
}

.counter_text {
  background: var(--c3);
  color: transparent;
  -webkit-background-clip: text;
}

.discount_crd {
  position: fixed;
  z-index: 999;
  bottom: 0;
  left: 20px;
  width: 21%;
  transform: translatey(130%);
  transition: 500ms all;
}

.crss_btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: #c62828;
  color: #fff;
  font-size: 21px;
  border-radius: 5px;
  cursor: pointer;
}

.discount_img {
  width: 100%;

}

.discount_img img {
  width: 100%;
  height: 100%;
  border-radius: 10px 10px 0 0;
}

.discount_crd.active {
  transform: translatey(0);
}

@media (max-width: 768px) {
  .discount_crd {
    display: none;
  }
}

a.custom-top-banner {
  display: none;
}

.empowering_cont h5 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--f1);
  margin: 0 0 10px;
}

.empowering_cont ul {
  margin: 0 0 20px !important;
}

.empowering_cont ul li {
  margin: 0 0 10px;
  font-size: 14px;
  font-family: var(--f1);
}

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

.header_chatBtns a {
  color: #000;
  font-size: 14px;
}

.header_chatBtns a i {
  background: var(--c3);
  color: transparent;
  background-clip: text;
}

.banner_book {
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  z-index: -1;
}

.banner_book img {
  object-position: left;
}

.banner_formMain {
  width: 80%;
  background: #fff;
  padding: 30px 20px 0;
  border-radius: 10px;
  margin: 0 auto;
}

.formHead {
  text-align: center;
  font-size: 32px;
  text-transform: uppercase;
  font-family: var(--f1);
  font-weight: 700;
  color: var(--c1);
}

.formHead span {
  display: block;
  font-size: 27px;
  font-family: 'Poppins';
  text-transform: uppercase;
  font-weight: 400;
  background: var(--c3);
  width: fit-content;
  margin: 0 auto;
  color: transparent;
  -webkit-background-clip: text;
}

.banner_feild {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #4444;
  border-radius: 50px;
  padding: 0 10px;
  margin: 12px 0;
}

.banner_feild :is(input, textarea) {
  width: 100%;
  padding: 13px 0px;
  font-size: 12px;
  text-transform: uppercase;
  border: none;
  background: transparent;
}

.banner_feild--text {
  align-items: baseline;
  border-radius: 15px;
}

.banner_feild textarea {
  height: 100px;
}

X .banner_feildBtn button {
  width: 100%;
}

.formImg {
  margin: 30px 0 0;
}

.banner_feild i {
  background: var(--c3);
  color: transparent;
  -webkit-background-clip: text;
}

.empowering_img img {
  border-radius: 100%;
}

.empowering_img {
  position: relative;
  width: 620px;
  aspect-ratio: 1/1;
  border: 10px solid #fff;
  border-radius: 100%;
}

.empowering_img:before {
  position: absolute;
  width: 60%;
  height: 60%;
  content: '';
  background: var(--c3);
  bottom: -70px;
  left: -70px;
  border-radius: 0px 0px 0px 400px;
  z-index: -1;
}

.girl_img {
  position: absolute;
  left: -160px;
  bottom: 0;
  z-index: -1;
  height: 100%;
  width: 30%;
}

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

.commit_head :is(h3, p) {
  text-align: left;
  width: 50%;
}

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

.commit_head h3 {
  font-size: 45px;
}

.commit_head h3 span {
  font-size: 45px;
}

.commit_nuumb {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 80px;
  font-family: 'Poppins';
  color: #4444;
}

.main_commitCrds {
  display: flex;
  align-items: center;
  width: 100%;
}

.inner_commitCrds {
  width: 50%;
}

.inner_commitCrds .commit_crd {
  width: 100%;
  margin: 20px 0;
}

.inner_commitCrds .commit_crd:nth-child(1) {
  margin-left: 20px;
}

.inner_commitCrds .commit_crd:nth-child(2) {
  margin-left: -17px;
}

.empower_img {
  width: 95%;
  margin-left: auto;
  height: 499.71px;
}

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

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

.faq_Innerimg {
  width: 100%;
  height: 270px;
  scale: 1.5;
  margin-left: -50px;
}

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

.main__innerFaqs {
  margin: 40px 0 0;
}

.accordion-item {
  margin: 10px 0;
  border: none;
  background: #4444 !important;
  border-radius: 50px !important;
  overflow: hidden;
}

.accordion-button {
  padding: 20px 25px;
  border-radius: 50px !important;
  background: transparent !important;
}

.accordion-header {
  overflow: hidden;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background: var(--c3) !important;
  border-radius: 0 !important;
}

.accordion-button {
  font-size: 18px;
  font-family: 'Poppins';
  color: #000;
  text-transform: capitalize;
  line-height: 28px;
}

.accordion-body {
  background: var(--c3);
}

.accordion-body {
  padding: 20px;
  color: #fff !important;
}



.accordion-button:not(.collapsed)::after {
  color: #fff;
}

.slick-vertical .slick-slide {
  border: none !important;
}

.testimonial_slider .slick-arrow::before {
  color: #fff;
}

.testo_items.slick-slide.slick-current.slick-active {
  background: var(--c3);
  color: #fff;
  scale: 1.2;
  z-index: 2;
  position: relative;
  filter: none;
}

.testo_items {
  margin: 0;
}

.testo_items.slick-slide.slick-current.slick-active .testo_main h4 {
  color: #fff;
}

.testo_items.slick-slide.slick-current.slick-active .testo_cont p {
  color: #fff;
}

.testimonial_slider .slick-prev {
  top: 34px;
  left: 10px;
  transform: rotate(90deg);
}

.testimonial_slider .slick-next {
  top: 400px;
  transform: rotate(90deg);
  left: 0;
}

.testimonial_slider .slick-arrow:hover::before {
  color: #000;
}

.testo_items {
  filter: blur(3px);
}

.test_img {
  width: 100%;
  height: 540px;
  margin: 0 0 -117px;
}

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

.nav-tabs {
  justify-content: center;
  gap: 10px;
  border: none !important;
}

.nav-tabs li button {
  background: #4444 !important;
  color: #000 !important;
  border-radius: 50px !important;
  padding: 10px 30px;
}

.nav-link.active {
  background: var(--c3) !important;
  color: #FFF !important;
}

.port_books {
  padding: 70px 0;
  background: linear-gradient(90deg, rgb(67 51 110 / 16%) 0%, rgb(174 154 230 / 10%) 100%);
}

.port_innerSlider {
  margin: 60px 0 0;
}

.port_innerSlider .slick-arrow {
  top: 50%;
  transform: translatey(-50%);
  width: 50px;
  height: 50px;
  background: var(--c3);
}

.port_innerSlider .slick-next {
  right: -60px;
}

.port_innerSlider .slick-prev {
  left: -60px;
}

.port_innerItem {
  margin: 0 10px;
}

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

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

.port_innerSlider .slick-arrow:hover {
  background: var(--c1);
}

.port_innerSlider .slick-arrow:hover:before {
  color: var(--c2);
}

.port_innerImg {
  width: 100%;
  height: 364px;
  cursor: pointer;
}

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

.port_popMain {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: 500ms all;
}

.port_mainCrd {
  display: flex;
  width: 80%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 20px;
  height: 600px;
  overflow: hidden;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000000c7;
  backdrop-filter: blur(4px);
}

.port_imgSec {
  height: 100%;
  width: 50%;
  background: var(--c1);
  padding: 30px 0 0;
}

.port_popMainSec {
  width: 50%;
}

.port_img {
  width: 40%;
  height: 240px;
  text-align: center;
}

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

h3.portHead {
  font-size: 40px;
  color: #fff;
  padding-left: 40px;
  padding-top: 20px;
}

.port_abbout {
  padding-left: 40px;
  height: 220px;
  overflow-y: scroll;
  margin-right: 30px;
}

.port_abbout p {
  font-size: 16px;
  line-height: 25px;
  margin: 10px 0;
  color: #fff;
}

/* width */
.port_abbout::-webkit-scrollbar {
  width: 2px;
}

/* Track */
.port_abbout::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
.port_abbout::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 10px;
}

/* Handle on hover */
.port_abbout::-webkit-scrollbar-thumb:hover {
  background: #fff;
}

.port_popMainSec {
  padding: 40px;
}

.port_popMainSec h2 {
  font-size: 40px;
  font-weight: 600;
  color: #000;
}

.port_popMainSec>p {
  font-size: 14px;
}

.port_popMainSec>p span {
  display: block;
  font-size: 24px;
  text-decoration: underline !important;
  color: #000;
}

a.retailBtn {
  padding: 10px 20px;
  border: 1px solid #4444;
  border-radius: 10px;
  width: 32%;
  height: 60px;
}

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

.retailers_btn {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  margin: 20px 0 0;
}

.price span {
  display: block;
  font-size: 12px;
  color: #000;
}

.price {
  font-size: 21px;
  font-weight: 600;
  color: #000;
  margin: 0 0 10px;
}

.crs_btn {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 40px;
  height: 40px;
  background: var(--c1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 20px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 300ms all;
}

.crs_btn:hover {
  color: var(--c1);
  background: transparent;
  border-color: var(--c1);
}

.port_popMainSec h6 {
  font-size: 18px;
  color: #000;
  font-weight: 500;
}
.port_popMain.active {
    opacity: 1;
    visibility: visible;
}
