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

@font-face {
  font-family: mileast;
  src: url('../fonts/mileast/Mileast.otf');
}

@font-face {
  font-family: mileast-itallic;
  src: url('../fonts/mileast/Mileast\ Italic.otf');
}

@font-face {
  font-family: miguella-charlotte;
  src: url('../fonts/miguella-charlotte/MiguellacharlotteRegular-ywg3d.ttf');
}

:root {
  --f1: 'mileast';
  --f2: 'miguella-charlotte';
  --f3: 'Montserrat';
  --f4: 'mileast-itallic';
  --c1: #140600;
  --c2: #DEC489;
  --c3:
}

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 28px;
  background: linear-gradient(0deg, #8D7853, #EED8AF, #4A361B);
  color: var(--c1);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  z-index: 99;
  font-family: var(--f3);
}

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

.themebtn.trans:hover {
  color: #fff;
}

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

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

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

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

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

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

/* button style */


/* header css start */

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

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

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

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

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: 92vh;
  padding: 80px 0px;
}

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

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

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

.banner_cont h6 {
  font-size: 16px;
  text-transform: uppercase;
  font-family: var(--f13);
  font-weight: 600;
  color: var(--c1);
}

.banner_cont h3 {
  font-size: 55px;
  font-family: var(--f1);
  text-transform: capitalize;
  margin: 10px 0px;
  line-height: 59px;
  color: var(--c1);
  position: relative;
  line-height: 1.2;
  z-index: 2;
}

.banner_cont p {
  font-size: 14px;
  font-family: var(--f3);
  color: var(--c1);
  font-weight: 600;
}

.banner_cont h3 span {
  font-family: var(--f2);
}

.banner_cont h3 i {
  font-family: var(--f1);
}

.banner_cont h4 {
  font-family: var(--f1);
  color: var(--c1);
  font-size: 28px;
  position: relative;
  margin: 0 0 15px;
}

.banner_cont h4::before {
  position: absolute;
  content: '';
  background: url(../images/half-top.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 225px;
  height: 30px;
  top: 0;
  right: 200px;
  z-index: 111;
}

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

.banner_point ul {
  line-height: 1.8;
  margin: 0 0 14px;
  padding-left: 25px;
}

.banner_point ul li {
  color: var(--c1);
  font-family: var(--f3);
  font-weight: 600;
  font-size: 15px;
  position: relative;
  margin: 0 0 10px;
}

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

.home_banner::before {
  position: absolute;
  content: '';
  width: 48%;
  height: 9%;
  background: var(--c1);
  top: 180px;
  left: 0;
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.home_banner::after {
  position: absolute;
  content: '';
  width: 49%;
  height: 9%;
  background: var(--c2);
  top: 175px;
  left: -5px;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.banner_cont h3 c {
  position: relative;
  color: var(--c2);
  z-index: 1;
  font-family: var(--f1);
}

/* baner css end */

/* new css start */

.footer {
  position: relative;
  overflow: hidden;
  background: #000;
  padding: 70px 0px 0px;
}

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

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

.footer_cont {
  position: relative;
  color: #000;
}

.end_footer {
  position: relative;
  bottom: 0;
  background: var(--c1);
  color: var(--c2);
  padding: 14px 0px;
  margin: 70px 0 0;
}

p.last_foot_para {
  margin: 0;
  font-family: var(--f3);
  font-weight: 600;
  font-size: 11px;
}

.footer_cont h3 {
  font-family: var(--f1);
  font-size: 22px;
  margin: 0 0 22px;
  color: #000;
  position: relative;
  text-transform: capitalize;
}

.footer_cont p {
  font-family: var(--f3);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.9;
}

ul.footer_icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 !important;
  gap: 8px;
}

.footer_cont h3::before {
  position: absolute;
  content: '';
  bottom: -6px;
  left: 0;
  width: 15%;
  background: #361102b3;
  height: 3px;
}

.footer_cont ul li a {
  font-family: var(--f3);
  font-weight: 600;
  text-transform: capitalize;
  font-size: 14px;
  transition: 500ms;
}

.footer_cont ul {
  line-height: 2.2;
  padding-left: 15px;
}

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

.footer_cont ul li::marker {
  font-size: 12px;
}

.footer_cont.contact ul li a {
  display: block;
  font-family: var(--f3);
  line-height: 1.4;
}

.footer_cont.contact ul li span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 -6px;
  gap: 6px;
  font-size: 18px;
  font-family: var(--f3);
  font-weight: 700;
}

.footer_cont.contact ul li {
  list-style: none;
  margin: 0px 0px 15px;
}

.footer::after {
  position: absolute;
  content: '';
  width: 350px;
  right: -195px;
  top: 30px;
  height: 350px;
  background: url(../images/footer-bef-1.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.footer::before {
  position: absolute;
  content: '';
  width: 150px;
  left: -48px;
  top: 25px;
  height: 175px;
  background: url(../images/footer-bef-2.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 99;
}

.footer_cont.contact ul li img {
  width: 235px;
  height: auto;
  object-fit: contain;
}


.partnership {
  position: relative;
  background: #000;
  padding: 80px 0px 70px;
  background-color: #f2ebde;
  overflow: hidden;
}

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

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

.partner_cont {
  position: relative;
  color: #000;
}

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

.section_title h3 {
  font-family: var(--f1);
  font-weight: 600;
  font-size: 40px;
  color: #000;
}

.section_title::before {
  position: absolute;
  content: '';
  width: 465px;
  height: 30px;
  background: url(../images/title-top.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
}

.partner_logos {
  text-align: center;
  background: url(../images/partner-vec.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 240px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner_cont .col {
  min-width: 20%;
}

.partner_logos img {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.partnership::before {
  position: absolute;
  content: '';
  width: 150px;
  height: 150px;
  background: url(../images/footer-bef-2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 50px;
  z-index: 99;
  left: -50px;
}

.spotlight {
  padding: 70px 0px;
  background: url(../images/partnership-back.webp);
  background-position: center;
  background-color: #f2ebde;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  position: relative;
}

.spotlight::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100px;
  top: 50%;
  background: var(--c1);
  left: 0;
  transform: translateY(-50%);
}

.main_spotlight {
  background: url(../images/spotlight-back.webp);
  width: 100%;
  height: 490px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 9999;
  position: relative;
}

.spotlight_cont {
  padding: 95px 190px;
}

.spotlight_cont h3 {
  color: #000;
  font-family: var(--f1);
  font-size: 60px;
  line-height: 1.1;
  margin: 0 0 20px;
  position: relative;
}

.spotlight_cont h3 i {
  font-family: var(--f4);
}

.spotlight_cont h3 span {
  font-family: var(--f2);
}

.spotlight_cont p {
  font-family: var(--f3);
  font-weight: 600;
  font-size: 15px;
  width: 85%;
  margin: 0 auto 25px;
  color: #000;
}

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

.themebtn.trans {
  background: transparent;
  box-shadow: 0px 0px 0px 2px var(--c1);
  color: var(--c1);
}

.spotlight_cont h3::before {
  position: absolute;
  content: '';
  width: 460px;
  height: 30px;
  background: url(../images/title-top.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
}

.contact_form_div {
  background: url(../images/free-form-back.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 118px;
}

.contact_cont h3 {
  color: #fff;
  font-family: var(--f1);
  font-size: 46px;
  line-height: 1.1;
  margin: 0 auto 15px;
}

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

.contact_cont p {
  color: #fff;
  font-family: var(--f3);
  font-weight: 500;
  font-size: 13px;
  margin: 0 0 30px;
}

form.contact_form input {
  padding: 12px 10px;
  margin: 0 0 18px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 13px;
  width:100%;
  font-family: var(--f3);
  font-weight: 500;
}

form.contact_form textarea {
  width: 100%;
  padding: 12px 10px;
  margin: 0 0 18px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 13px;
  font-family: var(--f3);
  font-weight: 500;
}

form.contact_form input::placeholder {
  font-family: var(--f3);
  font-weight: 600;
  font-size: 13px;
  color: #808080b0;
}

form.contact_form textarea::placeholder {
  font-family: var(--f3);
  font-weight: 600;
  font-size: 13px;
  color: #808080b0;
}

.themebtn.form {
  width: 100%;
  font-size:13px;
}

/* faq css */

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

.faqs_sect .accordion-button {
  padding: 12px 40px;
  font-family: var(--f1);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: 0;
  box-shadow: 0px 0px 0px 2px #444444;
}

.faqs_sect .accordion-button:not(.collapsed)::after {
  background-image: none;
  color: #f6c453;
  content: "\eb8b";
}

.faqs_sect .accordion-button:not(.collapsed) {
  background: #230b02;
  color: #fff;
  box-shadow: none;
}

.faqs_sect .accordion-item {
  border: none;
  box-shadow: 0px 0px 6px 0px #cecece;
  border-radius: 0px !important;
  margin-bottom: 25px;
}

.faqs_sect .accordion-body {
  font-family: var(--f3);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  background: var(--c2);
}

.faqs_sect {
  padding: 50px 0px 70px;
  position: relative;
}

.faq_img {
  width: 100%;
  height: 625px;
  overflow: hidden;
}

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

/* faq css end */

/* counter css */

.count {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 52px;
  font-weight: bold;
  color: #000;
}

.counter-wrapper {
  background: #333;
  background-image: url('https://images.unsplash.com/photo-1568563643102-37d43956d1d3?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
  background: cover;
  background-position: center center;
  position: relative;
}

.counter-wrapper:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .5);
}

.counter-inner {
  position: relative;
  z-index: 2;
}

.count-icon {
  font-size: 48px;
}

/* counter css end */

section.counter_sect {
  padding: 0;
}

.counter_main::before {
  background: url(../images/counter-back.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.count-cont {
  color: #000;
  font-family: var(--f3);
  font-weight: 500;
  font-size: 15px;
}

.counter_main {
  position: relative;
  padding: 348px 215px;
  text-align: center;
}

.section_title.count h3 {
  font-size: 46px;
}

.text-center.text-white {
  border-right: 1px solid #000;
  padding-right: 18px;
}

.counter-inner .col-lg-3:nth-last-child(1) .text-center.text-white {
  border-right: none;
}

.counter_faqs_contact {
  background: url(../images/partnership-back.webp);
  background-color: #f2ebde;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -441px;
}

section.testimonials {
  position: relative;
  padding: 130px 0px 500px;
}

.testi_cont {
  background: url(../images/testimonial-back.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 34px 35px;
  transition: 500ms;
}

.client_name img {
  width: 95px;
  height: 95px;
  object-fit: contain;
  position: absolute;
  top: 70px;
  left: 0;
  transform: scale(0.7);
  transition: 500ms;
}

.client_name {
  position: relative;
  padding-left: 70px;
}

.client_name::before {
  position: absolute;
  content: '';
  width: 60px;
  height: 68px;
  background: url(../images/client-vec.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  left: 0px;
  top: 0;
}

.client_name h3 {
  font-size: 22px;
  font-weight: 500;
  font-family: var(--f1);
  margin: 0 0 5px;
}

.client_name h5 {
  font-family: var(--f3);
  font-weight: 500;
  font-size: 16px;
}

.testi_cont p {
  font-family: var(--f3);
  font-weight: 600;
  font-size: 15px;
  width: 96%;
}

.client_name::after {
  background: url(../images/testi-vec.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 80px;
  height: 80px;
  right: -5px;
  top: -8px;
  position: absolute;
  content: '';
}

.testi-items {
  margin: 10px 10px;
  padding: 0px 0px;
}

.testi-items.slick-slide.slick-current.slick-active.slick-center .testi_cont {
  background: url(../images/testimonial-back-alt.webp);
  margin-top: -75px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.testi-items.slick-slide.slick-current.slick-active.slick-center .client_name::after {
  background: url(../images/testi-vec-alt.webp);
  background-position: center;
  background-size: cover;
}

.testi-items.slick-slide.slick-current.slick-active.slick-center .client_name::before {
  background: url(../images/client-vec-alt.webp);
  background-repeat: no-repeat;
}

.testi-items.slick-slide.slick-current.slick-active.slick-center .client_name h3 {
  color: var(--c2);
}

.testi-items.slick-slide.slick-current.slick-active.slick-center .client_name h5 {
  color: #fff;
}

.testi-items.slick-slide.slick-current.slick-active.slick-center .testi_cont p {
  color: #fff;
}

.testi-items.slick-slide.slick-current.slick-active.slick-center .testi_cont img {
  transform: none;
}


.testi_slider .slick-list.draggable {
  padding-top: 73px !important;
  padding-bottom: 80px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.section_title.white h3 {
  font-size: 48px;
  color: #fff;
}

.step_process {
  position: relative;
  z-index: 1;
  padding-bottom: 28rem;
}

.step_card h3 {
  font-family: var(--f1);
  color: var(--c2);
  font-size: 24px;
  margin: 0 0 12px;
}

.step_card p {
  color: #fff;
  font-family: var(--f3);
  font-weight: 500;
  font-size: 15px;
}

.step_main {
  width: 77%;
  margin: 0 auto 58px;
  position: relative;
}

.testi_process {
  background: url(../images/Group\ 1707488355.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.testi_process::before {
  position: absolute;
  content: '';
  background: url(../images/step-back.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 65%;
  bottom: 0;
  left: 0;
}

.step_card::before {
  position: absolute;
  content: '';
  background: url(../images/step-card-ber.webp);
  width: 150px;
  height: 150px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: -25px;
  left: -88px;
}

.section_title.white::before {
  background: url(../images/title-top-light.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.step_img {
  width: 20%;
  height: 50px;
  overflow: hidden;
  position: absolute;
  top: 46px;
  left: -80px;
}

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

.testimonials::before {
  position: absolute;
  content: '';
  background: url(../images/footer-bef-1.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 380px;
  height: 380px;
  right: 15px;
  bottom: 200px;
}

.testimonials::after {
  position: absolute;
  content: '';
  background: url(../images/object-vec.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 450px;
  height: 352px;
  left: -72px;
  bottom: 190px;
}

.testi_process::after {
  position: absolute;
  content: '';
  background: url(../images/footer-bef-2.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 50px;
  left: 250px;
  width: 110px;
  height: 110px;
}

.faqs_sect::before {
  position: absolute;
  content: '';
  background: url(../images/footer-bef-2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 280px;
  height: 320px;
  right: -80px;
  top: -110px;
  transform: rotateY(180deg);
}

.custom_publishing {
  padding: 80px 0px 0px;
  position: relative;
  z-index: 2;
}

.custom_card {
  background: url(../images/testimonial-back-alt.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 25px 32px;
  border-radius: 6px;
  margin: 0 0 18px;
}

.custom_img {
  width: 75px;
  height: 75px;
  overflow: hidden;
  margin: 0 0 20px;
}

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

.custom_cont h3 {
  font-family: var(--f1);
  color: var(--c2);
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 14px;
}

.custom_cont p {
  font-family: var(--f3);
  font-weight: 400;
  color: #fff;
  font-size: 13px;
  margin: 0;
}

.bestseller_custom_sects {
  padding: 420px 0px 90px;
  position: relative;
  background: url(../images/back1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bestseller_custom_sects::before {
  position: absolute;
  content: '';
  background: url(../images/custom-b.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  height: 65%;
}

section.bookseller_sect {
  position: relative;
  background: var(--c1);
}

.books_img {
  width: 100%;
  height: 800px;
  overflow: hidden;
  position: relative;
  margin: -70px 0 0px;
}

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

.bookseller_sect .section_title {
  margin: -335px 0 0;
}

.bookseller_sect .section_title h3 {
  font-size: 46px;
}

.custom_publishing::before {
  position: absolute;
  content: '';
  width: 440px;
  height: 440px;
  background: url(../images/footer-bef-1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  left: -273px;
  top: -290px;
}

.custom_publishing::after {
  position: absolute;
  content: '';
  width: 360px;
  height: 280px;
  background: url(../images/object-vec.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  right: 20px;
  top: -200px;
  transform: rotateY(180deg);
}

.empowering_author {
  background: url(../images/Group\ 1707488355.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0px 60px;
  position: relative;
}

.empowering_author .section_title h3 {
  font-size: 48px;
  font-weight: 500;
}

.section_title p {
  font-family: var(--f3);
  font-weight: 500;
  font-size: 14px;
}

.power_img {
  width: 100%;
  height: 500px;
  z-index: 1;
  position: relative;
}

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

.power_cont {
  width: 85%;
  margin: 0 auto;
}

.power_cont h3 {
  font-family: var(--f1);
  font-weight: 600;
  color: #000;
  font-size: 32px;
  margin: 0 0 18px;
}

.power_cont p {
  font-family: var(--f3);
  font-weight: 500;
  font-size: 13px;
  color: #000;
  margin: 0 0 25px;
}

.power_img::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 560px;
  background: url(../images/power-bef-1.webp);
  background-position: center;
  background-repeat: no-repeat;
  top: -60px;
  left: 0;
  z-index: -1;
  background-size: contain;
}

.empower_1 {
  margin: 0 0 100px;
  position: relative;
}

.empower_2 {
  margin: 0 0 100px;
  position: relative;
}

.empower_2 .power_img::before {
  background: url(../images/power-bef-2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.empower_3 .power_img::before {
  background: url(../images/power-bef-3.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.empowering_author::before {
  position: absolute;
  content: '';
  width: 185px;
  height: 185px;
  background: url(../images/footer-bef-1.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 50px;
  left: -88px;
}

.empowering_author::after {
  position: absolute;
  content: '';
  width: 165px;
  height: 165px;
  background: url(../images/black-bef-1.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 30px;
  right: -68px;
}

.empower_1::before {
  position: absolute;
  content: '';
  width: 245px;
  height: 245px;
  background: url(../images/footer-bef-1.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -100px;
  right: -250px;
}

.empower_3 {
  position: relative;
}

.empower_2::before {
  position: absolute;
  content: '';
  width: 245px;
  height: 225px;
  background: url(../images/black-bef.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -125px;
  left: -230px;
}

.empower_2 .power_img::after {
  position: absolute;
  content: '';
  width: 500px;
  height: 500px;
  background: url(../images/footer-bef-1.webp);
  left: -50px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 0;
  z-index: -1;
}

.empower_3::before {
  position: absolute;
  content: '';
  width: 250px;
  height: 250px;
  background: url(../images/footer-bef-2.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  right: -240px;
  bottom: -60px;
}

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

ul.footer_icon li {
  list-style-type: none;
}

ul.footer_icon li a {
  font-size: 22px;
  background: var(--c1);
  width: 38px;
  aspect-ratio: 1/1;
  color: var(--c2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  transition: 500ms;
}


ul.footer_icon li a:hover {
  box-shadow: 0px 0px 8px 4px var(--c1);
  transform: scale(1.2);
  background: var(--c2);
  color: var(--c1);
}

/* header css */


.top_main ul::before {
  position: absolute;
  content: '';
  width: 2px;
  height: 100%;
  background: var(--c2);
  left: 150px;
}

.header {
  background: url(../images/back1.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.top_header {
  background: var(--c1);
  padding: 15px 0px;
}

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

.top_main p {
  color: var(--c2);
  margin: 0;
  font-family: var(--f3);
  font-weight: 500;
  font-size: 14px;
}

.top_main ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
  position: relative;
}

.top_main ul li a {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-family: var(--f3);
  font-weight: 500;
  font-size: 14px;
}

.top_main ul li a i {
  color: var(--c2);
  font-size: 24px;
}

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

.header_nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header_nav li a {
  font-size: 14px;
  font-family: var(--f3);
  text-transform: capitalize;
  color: var(--c1);
  font-weight: 500;
  text-shadow: 0px 0px 2px transparent;
  position: relative;
}

.main_header {
  padding: 3px 0px;
}

.header_nav li a:hover {
  color: var(--c1);
  position: relative;
  text-shadow: 0px 0px 2px black;
}

.header_nav li a:before {
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--c1);
  content: '';
  transition: 500ms all;
  left: 0;
  bottom: 0;
}

.header_nav li a:hover:before {
  width: 100%;
}

a.main__logo h3 {
  font-family: var(--f1);
  font-size: 38px;
}

/* header css end */

.banner_cont::before {
  position: absolute;
  content: '';
  background: url(../images/banner-cont-bef.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 600px;
  height: 100%;
  right: -310px;
  top: 0;
}

/* banner form css  */

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

.contact___form form h4 {
  text-align: center;
  font-size: 30px;
  font-family: var(--f1);
  margin: 0 auto;
  color: #fff;
  width: 88%;
}

.contact___form form h5 {
  text-align: center;
  font-size: 40px;
  font-family: var(--f1);
  margin: 0 auto;
  color: var(--c2);
}

.contact___form form {
  width: 64%;
  float: inline-end;
  border-radius: 14px;
  background: url(../images/testimonial-back-alt.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 30px 5px;
}


.contact___form form h6 {
  font-size: 17px;
  text-align: center;
  font-family: var(--f1);
  font-weight: 600;
}

.form_group {
  padding: 16px 20px;
}

.form_group p {
  font-size: 15px;
  text-align: center;
  line-height: 1.5;
  color: #fff;
  width: 90%;
  margin: 0 auto 13px;
}

.form_field input,
.form_field textarea {
  width: 100%;
  height: 46px;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: none;
  outline: 0;
  font-size: 15px;
}

.form_field input::placeholder,
.form_field textarea::placeholder {
  color: gray;
  font-family: var(--f3);
  font-weight: 500;
  text-transform: capitalize;
  font-size: 13px;
}

.form_field textarea {
  height: 80px;
}

.form_shade {
  position: absolute;
  width: 380px;
  height: 422px;
  z-index: -1;
  top: 25px;
  left: 0px;
}

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

.form_img {
  width: 521px;
  height: 550px;
  position: absolute;
  left: -190px;
  z-index: -1;
  transform: translateY(100%);
  animation: form_img 1s ease-out forwards;
}

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

  60% {
    transform: translateY(-20px);
  }

  80% {
    transform: translateY(10px);
  }

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

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

.form_field button {
  width: 100%;
}

.contact___form form::before {
  position: absolute;
  content: '';
  width: 190px;
  height: 190px;
  background: url(../images/footer-bef-1.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: -60px;
  left: -80px;
  z-index: -1;
}

.contact___form form::after {
  position: absolute;
  content: '';
  width: 190px;
  height: 190px;
  background: url(../images/footer-bef-1.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -60px;
  right: -80px;
  z-index: -1;
}

.banner_img::after {
  position: absolute;
  content: '';
  background: url(../images/footer-bef-2.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 200px;
  height: 200px;
  top: 10px;
  right: -90px;
  transform: rotateY(180deg);
}

.empowering_author.about {
  background: none;
  padding: 100px 0px 75px;
}

.testi_process.test::before {
  background: none;
}

.testi_process.test .testimonials {
  padding: 130px 0px 100px;
}

.testi_process.test .testimonials::before {
  background: none;
}

.testi_process.test .testimonials::after {
  background: none;
}

.testi_process.test {
  background: none;
}

.inner_banner::before {
  background: none;
}

.inner_banner::after {
  background: none;
}

.inner_banner {
  min-height: 55vh;
}

.inner_banner .banner_cont::before {
  background: none;
}

.inner_banner .banner_img::after {
  background: none;
}

.banner_cont.inner h3 {
  font-size: 70px;
}

.testi_process.test .sect_bttn {
  margin-top: 7rem !important;
}

.footer_cont ul li a:hover {
  color: var(--c1);
  transform: scale(1.2);
}

.counter_faqs_contact.inner {
  margin-top: 0;
}

.themebtn.trans.white {
  color: #fff;
  box-shadow: 0 0 0 2px #fff;
}

/* dropdown css start */

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

ul.dropdown_menu li a {
  padding: 12px 10px;
  color: #000000;
  font-size: 13px;
  align-items: center;
}

.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_nav li a i {
  font-size: 15px;
  transition: 300ms;
}

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

ul.header_nav li {
  position: relative;
}

/* dropdown css end */

a.main__logo {
  width: 120px;
  height: auto;
  overflow: hidden;
}

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

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

section.portfolio {
  padding: 35px 0px;
}

.port_items {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

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

.port_slider.alt {
  transform: rotate(180deg);
}

.port_items.alt {
  transform: rotate(180deg);
}

/* dropdown css start */

ul.dropdown_menu {
  background-image: url(../images/section_bg.webp);
  position: absolute;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  transition: 500ms all;
}

ul.dropdown_menu li a {
  border-bottom: 1px solid #00000029 !important;
  padding: 12px 12px;
  color: #000000;
  display: flex;
  font-size: 13px;
  align-items: center;
  gap: 7px;
  background-repeat: no-repeat;
  background-size: 130% 140%;
  background-position: center;
}

.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: 10px;
  transition: 500ms;
}

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

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

/* dropdown css end */

/* inner banner css */

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

.inner_banner_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  filter: grayscale(0.3);
}

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

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

.inner_cont h6 {
  font-size: 21px;
  text-transform: uppercase;
  font-family: var(--f1);
  word-spacing: -4px;
  color: #212529;
}

.inner_cont h3 {
  font-size: 44px;
  font-family: var(--f1);
  text-transform: uppercase;
  margin: 10px 0px;
  line-height: 54px;
  font-weight: 900;
}

.inner_cont p {
  font-size: 15px;
  font-family: var(--f3);
  font-weight: 500;
}

.inner_sub_img {
  width: 80%;
  height: 580px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

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

.inner_sub_banners {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 107vh;
  padding: 52px 0px;
}

.inner_sub_cont h3 {
  font-size: 38px;
  font-family: var(--f1);
  text-transform: uppercase;
  margin-bottom: 21px;
  line-height: 1.2;
  font-weight: 900;
}

.inner_sub_cont p {
  font-size: 16px;
  font-family: var(--f3);
  font-weight: 500;
}

.inner_sub_banners_overly {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.inner_sub_cont {
  position: relative;
  z-index: 9;
}

.inner_cont.text-center h3 {
  font-size: 80px;
  letter-spacing: 2px;
}

.inner_cont h3 span {
  font-family: var(--f3);
}

.inner_sub_cont ul li {
  font-size: 15px;
  position: relative;
  font-family: var(--f3);
  margin-bottom: 14px;
  font-weight: 500;
}

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

.inner_sub_cont ul li::before {
  position: absolute;
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 100%;
  background: var(--c2);
  top: 50%;
  left: -18px;
  transform: translateY(-50%);
}

/* inner banner css end */

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

a.live_chat {
  font-family: var(--3);
  font-weight: 700;
  font-size: 18px;
  text-transform: capitalize;
}

/* popup form css start */

.form_close {
  position: absolute;
  width: 40px;
  height: 40px;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  color: #000;
  top: 10px;
  right: 10px;
  z-index: 999;
  transition: 1s;
  /* background: var(--c1);  */
  border-radius: 100%;
}

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

.popup_form .banner_form {
  width: 30%;
  background: url(../images/banner-image.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 73px 40px;
}

.popup_form .form_arrow {
  display: none;
}

.popup_form.active {
  display: flex;
}

.popup_form .form_close {
  display: flex;
}

.popup_form .banner_form .form_fields input,
.popup_form .banner_form .form_fields textarea {
  background: #ffffff7a;
  filter: blur(0px);
  box-shadow: 0px 0px 10px 0px inset #a180608c;
}

.popup_form .banner_form::before {
  position: absolute;
  content: '';
  width: 100px;
  height: 100px;
  background: url(../images/splatter.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  top: -7px;
  right: -28px;
  transform: rotate(75deg);
}

.form_close:hover {
  color: #fff;
  transform: rotate(360deg);
}

/* popup form css end */

/* responsive  css start */

.menu_logo {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 10px;
  background: url(../images/top_bar_bg.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 500ms all;
}

.side_menu {
  width: 66%;
  background: url(../images/section_bg.webp);
  background-position: top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: 111dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  transform: translateX(-100%);
  transition: 500ms all;
}

.responsive_menu {
  display: none;
}

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

.responsive_logo img {
  width: 100px;
}

.side_menu li a {
  padding: 10px 12px;
  width: 100%;
  border-bottom: 1px solid #00000040;
  color: var(--c4);
  text-transform: capitalize;
  font-size: 15px;
  position: relative;
  font-family: var(--f2);
  letter-spacing: 1px;
  font-weight: 200;
}

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

.menu_sticky {
  position: fixed;
}

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

.responsive_overly.show {
  left: 0;
}

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

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

.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: var(--c4);
  font-size: 23px;
}

.side_menu .accordion-body {
  padding: 0;
  height: 120px;
  overflow-x: auto;
  background: #cdcdcd5e;
  backdrop-filter: blur(2px);
}

.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(--c4);
  color: #fff;
}

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

.menu_logo::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 29px;
  background: url(../images/fire.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  left: 0;
  bottom: -9px;
}

.menu_logo::after {
  position: absolute;
  content: '';
  width: 75px;
  height: 64px;
  background: url(../images/splatter.webp);
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
  right: -11px;
  bottom: -12px;
  transform: rotate(105deg);
  z-index: -1;
}

.popup_form .form_title {
  margin-bottom: 20px;
}

.banner_form {
  position: relative;
  width: 70%;
  padding: 50px 40px;
  background: #ffffff59;
  border-radius: 0px;
  margin: 0 auto;
  backdrop-filter: blur(3px);
}

.form_title {
  font-size: 29px;
  font-family: var(--f3);
  text-transform: uppercase;
  margin: 10px 0px;
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
}

.form_fields input,
.form_fields textarea {
  width: 100%;
  height: 47px;
  padding: 10px;
  margin-bottom: 14px;
  border: none;
  box-shadow: 0px 0px 0px 1px #d4d4d4;
  border-radius: 1px;
  background: #f4f4f4;
  outline: 0;
}

.form_fields input::placeholder,
.form_fields textarea::placeholder {
  text-transform: capitalize;
  font-size: 15px;
  font-family: var(--f1);
}

.form_fields textarea {
  height: 104px;
}

.banner_form .fire {
  height: 40px;
  top: -21px;
}

.bottom_fire {
  bottom: -14px;
  top: auto !important;
}

.smoke3 {
  left: -120px;
}

.form_btn .white_btn {
  width: 34%;
}

.form_btn .white_btn::before {
  height: 100%;
}

.form_btn .white_btn .themebtn {
  width: 100%;
}

.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;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.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: 10px 10px;
  width: 10%;
}

.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: 99999999;
  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;
  font-family: 'Montserrat';
  font-weight: 600;
}

.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;
  font-family: 'Montserrat';
}

/* 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;
  font-family: 'Montserrat';
  font-weight: 700;
}

.port_popMainSec>p {
  font-size: 14px;
  font-family: 'Montserrat';
  font-weight: 500;
}

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

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;
  font-family: 'Montserrat';
}

.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;
  font-family: 'Montserrat';
  font-weight: 700;
}

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





















.book {
  width: 100%;
  height: 166px;
  position: relative;
  text-align: center;
}

.book-cover {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform-origin: 0 50%;
  -webkit-transform-origin: 0 50%;
  background: #111;
  background-size: cover;
  border-radius: 3px;
  box-shadow:
    inset 4px 1px 3px #ffffff60,
    inset 0 -1px 2px #00000080;
  transition: all .5s ease-in-out;
  -webkit-transition: all .5s ease-in-out;
  background-position: center !important;
  background-size: cover !important;
}

.cover1 {
  background: url('http://fuel-design.com/media/uploads/publications/Soviet_Space_Dogs_cover.jpg');
}

.cover2 {
  background: url('http://fuel-design.com/media/uploads/publications/Tattoo_Vol_I_cover.jpg');
}

.cover3 {
  background: url('http://fuel-design.com/media/uploads/publications/CRIME_cover.jpg');
}

.book .book-cover {
  background-size: 100% 100%;
}


.effect {
  width: 20px;
  height: 100%;
  margin-left: 10px;
  border-left: 2px solid #00000010;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  transition: all .5s ease;
}

.light {
  width: 90%;
  height: 100%;
  position: absolute;
  border-radius: 3px;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%);
  top: 0;
  right: 0;
  opacity: .1;
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
}

.book:hover {
  cursor: pointer;
}

.book:hover .book-cover {
  transform: perspective(2000px) rotateY(-30deg);
  -webkit-transform: perspective(2000px) rotateY(-30deg);
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  box-shadow:
    inset 4px 1px 3px #ffffff60,
    inset 0 -1px 2px #00000080,
    10px 0px 10px -5px #00000030
}

.book:hover .effect {
  width: 40px;
  /** margin-left:13px;
  opacity: 0.5; **/
}

.book:hover .light {
  opacity: 1;
  width: 70%;
}

.book-inside {
  width: calc(100% - 2px);
  height: 96%;
  position: relative;
  top: 2%;
  border: 1px solid grey;
  border-radius: 3px;
  background: white;
  box-shadow:
    10px 40px 40px -10px #00000030,
    inset -2px 0 0 grey,
    inset -3px 0 0 #dbdbdb,
    inset -4px 0 0 white,
    inset -5px 0 0 #dbdbdb,
    inset -6px 0 0 white,
    inset -7px 0 0 #dbdbdb,
    inset -8px 0 0 white,
    inset -9px 0 0 #dbdbdb;
}

.title {
  font-size: 22px;
  width: 100%;
  color: #333;
  text-align: center;
  position: absolute;
  top: -30px;
  height: 1px;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}

.title p {
  width: 100%;
  margin: 0;
  line-height: 1.3;
}


.btn {
  position: relative;
  background: #aaa;
  color: #fff;
  font-weight: bold;
  padding: 15px 30px;
  font-size: 16px;
  letter-spacing: 1px;
  border-radius: 50px;
  bottom: -50px;
  display: inline-block;
  opacity: 0;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}

.book:hover .btn,
.book:hover .title {
  opacity: 1;
}
.portInnerMain {
    display: flex;
    align-items: center;
    justify-content: center;
}

.port_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: -1;
}

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

.footer_cont.contact a {
    text-transform: lowercase;
}