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

/* Root Styling */
:root {
  --c1: #D55500;
  --c2: #226077;
  --c3: linear-gradient(90deg, #B44800, #FF6600);
  --f1: 'poppins';
  --f2: 'Inter';
}

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: 11px 20px;
  background: var(--c3);
  color: #fff;
  text-transform: capitalize;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: none;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
}

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

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

a.header__logo img {
  width: 133px;
  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);
}


.home_banner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  min-height: 89vh;
  z-index: 1;
}

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

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

.banner_review {
  width: 300px;
  height: auto;
}

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


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

.banner_cont h5 {
  text-transform: capitalize;
  font-size: 35px;
  font-family: var(--f1);
  font-weight: 400;
}

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

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

.banner_cont h1 {
  font-size: 48px;
  font-family: var(--f2);
  text-transform: capitalize;
  margin: 10px 0px;
  line-height: 70px;
}

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

.publish {
  background-image: url(../images/publish.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.publish_cnt h3 {
  font-family: var(--f2);
  color: #fff;
  font-size: 60px;
  width: 60%;
  margin: 0 auto;
  text-align: center;
}

.publish_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.themebtn i {
  font-size: 17px;
}

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

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

.white_btn:hover {
  color: #fff;
}

.publish:before {
  content: '';
  position: absolute;
  background-image: url(../images/books.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: 61%;
  top: 50%;
  width: 78%;
  height: 100%;
  transform: rotate(39deg) translateY(-50%);
}

.publish::after {
  content: '';
  position: absolute;
  background-image: url(../images/books.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 61%;
  top: 50%;
  width: 78%;
  height: 100%;
  transform: rotate(-39deg) translateY(-50%);
}

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

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

.empower {
  padding: 70px 0 140px;
}

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

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

.empower_card {
  display: flex;
  justify-content: end;
  align-items: end;
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 390px;
  border-radius: 30px;
  overflow: hidden;
  z-index: 1;
  padding: 20px 30px;
}

.empower_card h3 {
  width: 100%;
  color: #fff;
  font-family: var(--f2);
  font-size: 25px;
  font-weight: 600;
}

.section_title h6 {
  font-family: var(--f1);
  text-transform: uppercase;
  color: var(--c2);
  font-size: 19px;
}

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

.section_title h5 {
  font-family: var(--f2);
  font-size: 45px;
  color: #0000009e;
  margin: 0;
}

.section_title h5 span {
  color: var(--c1);
}

.empower_slider .slick-arrow {
  width: 40px;
  height: 40px;
  position: absolute;
  top: auto;
  bottom: -60px;
  right: 42px;
  background: var(--c1);
  transition: 300ms;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empower_slider .slick-prev {
  right: 90px;
}

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

.empower_slider .slick-prev:before {
  position: absolute;
  content: "\e9b4";
  font-family: 'boxicons';
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 21px;
  line-height: 0;
}

.empower_slider .slick-next:before {
  position: absolute;
  content: "\e9b4";
  font-family: 'boxicons';
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 21px;
  line-height: 0;
  transform: rotate(180deg);
}

.empower_main {
  margin: 0 5px;
}

.self {
  padding: 70px 0;
}

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

.self_img {
  width: 97%;
  height: 504px;
  border-top-right-radius: 150px;
  overflow: hidden;
}

.self_cnt h3 {
  font-family: var(--f2);
  font-size: 45px;
  width: 100%;
  line-height: 1;
  color: #000;
}

.self_cnt h3 span {
  font-size: 40px;
}

.self_cnt p {
  font-size: 16px;
  color: #000;
  margin: 10px 0 15px;
}

.self_btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}

.self_cnt ul li {
  margin-bottom: 9px;
  font-size: 14px;
  letter-spacing: -0.7px;
  margin-left: 35px;
  position: relative;
}

.self_cnt ul li:before {
  position: absolute;
  content: '';
  background-image: url(../images/tick.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 18px;
  height: 18px;
  left: -31px;
  top: 2px;
}

.self_btn a:nth-child(1):after {
  background: #000;
}

.empower_btn a:after {
  background: #000;
}

.self_btn a:nth-child(1):hover {
  color: #fff;
}

.global {
  background-image: url(../images/global.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.section_title h3 {
  font-family: var(--f2);
  text-align: center;
  font-size: 50px;
  font-weight: 500;
  width: 65%;
  margin: 0 auto;
}

.section_title.text_white :is(h3, p) {
  color: #fff !important;
}

.section_title p {
  font-size: 16px;
  text-align: center;
  font-family: var(--f2);
  width: 90%;
  margin: 0 auto;
  font-weight: 400;
  margin-top: 15px;
  margin-bottom: 0;
  color: #000;
}

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

.global_icon {
  width: 33px;
  height: 30px;
}

.global_main {
  display: flex;
  gap: 10px;
  background: #e9eef1;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 20px;
  min-height: 125px;
}

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

.global_cnt h4 {
  margin-bottom: 10px;
  font-family: var(--f2);
  font-size: 22px;
  font-weight: 600;
}

.global_cnt {
  width: 90%;
}


.global_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}

.global:before {
  background-image: url(../images/world.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: '';
  position: absolute;
  left: -157px;
  bottom: -94px;
  width: 476px;
  height: 436px;
}

.global:after {
  background-image: url(../images/world.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: '';
  position: absolute;
  right: -125px;
  bottom: -74px;
  width: 476px;
  height: 436px;
  transform: rotate(-32deg);
}

.your_book {
  padding: 70px 0;
}

.section_title h3 span {
  display: block;
  color: var(--c1);
}

.yourbook_card {
  border: 2px solid #0000006e;
  text-align: center;
  padding: 0px 15px;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  transition: 300ms;
}

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

.yourbook_icon {
  width: 70px;
  height: auto;
  margin: 0 auto;
}

.yourbook_card h4 {
  margin: 15px 0;
  font-family: var(--f2);
  color: #000;
  font-size: 28px;
  transition: 300ms;
}

.yourbook_card p {
  width: 83%;
  font-size: 14px;
  color: #000000b5;
  transition: 300ms;
}

.yourbook_card:hover {
  background: #000000;
}

.yourbook_card:hover :is(h4, p) {
  color: #ffff;
}


.yourbook_btn {
  text-align: -webkit-center;
  margin-top: 25px;
}

.yourbook_btn p {
  font-size: 18px;
}

.across_amazon {
  background-image: url(../images/accross.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 70px 0;
  position: relative;
}


.across_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.across_cnt h3 {
  font-family: var(--f2);
  color: #fff;
  font-size: 41px;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  line-height: 1.3;
}

.across_amazon:before {
  content: '';
  position: absolute;
  background-image: url(../images/girl.png);
  background-position: center;
  background-size: cover;
  right: -8px;
  bottom: -20px;
  width: 340px;
  height: 340px;
}

.across_amazon:after {
  content: '';
  position: absolute;
  background-image: url(../images/moon.png);
  background-position: center;
  background-size: cover;
  left: -88px;
  bottom: -20px;
  width: 340px;
  height: 320px;
}


.vision {
  padding: 70px 0;
}

.vision_cnt ul {
  display: flex;
  align-items: center;
  font-size: 19px;
  color: #ffcd38;
  margin-bottom: 10px;
}

.vision_inner_main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid #938b8bb5;
  padding-top: 10px;
}

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

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

.vision_icon {
  width: 45px;
  height: 45px;
}

.vision_inner_cnt h5 {
  margin: 0;
  font-family: var(--f1);
  font-size: 18px;
}

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

.vision_spectrun {
  width: 110px;
  height: 30px;
}

.vision_cnt {
  /* background: var(--c1); */
  padding: 25px 20px;
  position: relative;
}

.vision_cnt h6 {
  font-family: var(--f1);
  font-size: 19px;
  font-style: italic;
}

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

.vision_cnt:before {
  position: absolute;
  content: '';
  background-image: url(../images/vision_sec.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 55px;
  height: 55px;
  top: 15px;
  right: 30px;
}

.visionslidersub {
  margin: 0 10px;
}

.visionslidersub.slick-slide.slick-current.slick-active {
  background: var(--c1);
}

.visionslidersub.slick-slide.slick-current.slick-active h6 {
  color: #fff;
}

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

.visionslidersub.slick-slide.slick-current.slick-active h5 {
  color: #fff;
}

.visionslidersub.slick-slide.slick-current.slick-active .vision_spectrun {
  filter: invert(1);
}

.visionslidersub.slick-slide.slick-current.slick-active .vision_cnt:before {
  filter: brightness(0) invert(1);
}

.visionslidersub {
  border-radius: 20px;
}

.faqs {
  background-image: url(../images/faqs.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 70px 0;
  position: relative;
}

/*===================================== faqs page css start ================================*/

/* .faqs_section {
  padding: 70px 0px;
} */

.faqs_mian .accordion-button {
  padding: 20px 20px;
  font-family: var(--f1);
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
  border-radius: 0 !important;
  background: #fff;
}

.faqs_mian .accordion-item {
  margin-bottom: 17px;
  border: 1px solid #c7c7c7 !important;
  overflow: hidden;
  border-radius: 8px !important;
  box-shadow: 0px 0px 10px 0px #00000026;
}

.faqs_mian .accordion-button:not(.collapsed) {
  color: #000;
  background: #fff;
  box-shadow: none;
  padding: 15px 20px 10px;
}

.faqs_mian .accordion-body {
  /* background: var(--c3); */
  padding: 0px 24px 12px;
}

.faqs_mian .accordion-body p {
  margin: 0;
  color: #000;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  font-family: var(--f1);
}

.faqs_mian .accordion-button::after {
  background-image: none;
  content: "\ebc0";
  font-size: 14px;
  width: 28px;
  height: 28px;
  font-family: boxicons !important;
  /* border: 2px solid; */
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--c3);
  color: #fff;
}

.faqs_mian .accordion-button:not(.collapsed)::after {
  background-image: none;
  /* transform: rotate(90deg) scale(1.3); */
  color: #fff;
  content: "\eb8b";
  background: var(--c3);
}

.faqs_mian .accordion-button:hover {
  color: var(--c1);
}

.faqs_img {
  width: 100%;
  height: 700px;
  overflow: hidden;
  position: sticky;
  top: 20px;
  transform: translateX(30px);
}

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

.logo_main {
  position: relative;
  width: 100%;
  height: 510px;
}

.faqs:before {
  content: '';
  position: absolute;
  background-image: url(../images/faq_book.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 40px;
  left: -6px;
  width: 210px;
  height: 300px;
}

.faqs:after {
  content: '';
  position: absolute;
  background-image: url(../images/faq_book1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 40px;
  right: 0px;
  width: 220px;
  height: 300px;
}

/* ====================================== faqs page css end ================================ */



.talk_cont h3 {
  font-size: 44px;
  font-family: var(--f2);
  color: #000;
  margin: 0 0 12px;
}

.talk_cont p {
  font-family: var(--f1);
  width: 68%;
  font-size: 15px;
  margin: 0 0 70px;
  font-weight: 500;
}

.discuss_box {
  background: var(--c3);
  padding: 30px 24px 1px;
  border-radius: 10px;
  width: 85%;
}

.discuss_box h5 {
  color: #fff;
  font-family: var(--f1);
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 15px;
}

.discuss_box ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  font-size: 17px;
  color: #fff;
  font-family: var(--f2);
  margin: 0 0 30px;
  transition: 300ms;
}

.discuss_box ul li a i {
  background: #000;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: 20px;
}

.discuss_box ul {
  position: relative;
}

.discuss_box ul:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  background: #6868688f;
  top: 50%;
  left: 0;
}

.contact_sect {
  padding: 70px 0px;
}

.main_contact {
  background: url(../images/cont-back.png);
  background-position: center;
  background-repeat: no-repeat;
  padding: 35px 25px;
  width: 100%;
  border-radius: 15px;
}

.input_field {
  display: grid;
  align-items: center;
  margin: 0 0 20px;
}

.main_contact h3 {
  font-family: var(--f1);
  color: #fff;
  font-weight: 400;
  font-size: 36px;
  margin: 0 0 28px;
}

.input_field label {
  color: #fff;
  font-family: var(--f1);
  font-size: 13px;
  font-weight: 500;
  margin: 0 0 5px;
  padding-left: 8px;
}

.input_field input {
  border: none;
  outline: none;
  background: #fff;
  padding: 11px 14px;
  border-radius: 25px;
}

.input_field input::placeholder {
  font-size: 14px;
  font-family: var(--f1);
  font-weight: 500;
}

.input_field textarea {
  border: none;
  outline: none;
  background: #fff;
  padding: 11px 14px;
  border-radius: 12px;
}

.input_field textarea::placeholder {
  font-size: 14px;
  font-family: var(--f1);
  font-weight: 500;
}

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

.form_btn p {
  font-size: 10px;
  color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 3px;
  width: 75%;
  margin: 0;
}

.form_btn p i {
  font-size: 22px;
}

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

.discuss_box ul li a:hover i {
  background: #fff;
}


.check_field input {
  accent-color: var(--c1);
}

.check_field {
  display: flex;
  align-items: baseline;
  gap: 5px;
  width: 80%;
}

.check_field label {
  font-size: 11px;
  color: #fff;
}

/* ========================Footer */


.footer {
  background: #000;
  padding: 70px 0px 0px;
}

.footer_logo {
  width: 215px;
  height: auto;
  overflow: hidden;
  margin-bottom: 10px;
}

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

.about_foot p {
  color: #fff;
  font-family: 'Poppins';
  font-size: 13px;
  line-height: 1.8;
  margin: 0 0 30px;
  font-weight: 300;
  width: 85%;
}

.about_foot h4 {
  font-size: 18px;
  color: #fff;
  font-family: var(--f2);
  margin: 0 0 15px;
}

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

.foot_icon li a {
  font-size: 26px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 300ms;
  width: 40px;
  height: 40px;
}

.footer_heading {
  font-family: var(--f2);
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 22px;
  margin-bottom: 17px;
}

.foot_list li a {
  color: #ffff;
  font-family: var(--f1);
  font-size: 15px;
  position: relative;
  font-weight: 300;
  display: flex;
  justify-content: flex-start;
  gap: 5px;
  text-transform: capitalize;
  width: fit-content;
}

ul.foot_list {
  line-height: 1.8;
}

.foot_list.contact li a::before {
  display: none;
}

ul.foot_list.contact li a {
  padding: 0;
  font-size: 12px;
  margin: -2px 0 25px;
}

ul.foot_list.contact li a span {
  font-size: 14px;
}

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

.end_footer {
  margin: 30px 0 0;
  padding: 22px 0px;
  border-top: 3px solid;
}

.end_main_foot p {
  color: #ffffffe0;
  margin: 0;
  font-family: 'Poppins';
  font-size: 14px;
  font-weight: 300;
  text-align: center;
}

.end_main_foot img {
  width: 192px;
  height: auto;
  object-fit: contain;
}

.foot_icon li a:hover {
  background: var(--c1);
}

.foot_list li a:hover {
  transform: translateX(8px);
  color: var(--c1);
  font-weight: 400;
}

ul.foot_list.contact li a:hover i {
  background: var(--c1);
  animation: tada 700ms;
}

ul.foot_list li {
  margin-bottom: 13px;
}

.foot_icon li a:hover {
  background: #fff;
  color: var(--c1);
  border-radius: 100%;
}

.books {
  padding: 70px 0;
}

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

.authore_slider {
  width: 100%;
  height: 252px;
}

.authore_slider {
  margin: 0px 10px;
}

.book_slider.--alt {
  transform: rotate(180deg);
  margin-top: 20px;
}


.book_slider.--alt .authore_slider {
  transform: rotate(-180deg);
}

.book_slider {
  position: relative;
}

.book_slider:before {
  position: absolute;
  content: '';
  background-image: url(../images/cloud.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 20%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.book_slider:after {
  position: absolute;
  content: '';
  background-image: url(../images/cloud.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 10%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
  transform: rotate(180deg);
}

.built {
  padding: 70px 0;
  background-image: url(../images/built.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.built .section_title.text_white h3 {
  font-size: 49px;
}

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

.bulit_image {
  width: 100%;
  height: 500px;
}

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

ul.header-btn li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

ul.header-btn li a span {
  display: grid;
  justify-content: center;
  align-items: center;
  color: var(--c1);
  font-family: var(--f1);
  font-weight: 600;
  font-size: 18px;
  transition: 300ms;
}

ul.header-btn li a span small {
  font-family: var(--f1);
  font-weight: 400;
  font-size: 14px;
  color: #000;
}

ul.header-btn li a .ico {
  color: var(--c1);
  background: #fff;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: 30px;
  position: relative;
}

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

ul.header-btn li a .ico:before {
  position: absolute;
  content: '';
  background: var(--c1);
  height: 122%;
  width: 76%;
  border-radius: 300px 55px 55px 300px;
  top: -5px;
  left: -4px;
  z-index: -1;
}

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

.top_head a {
  font-family: var(--f1);
  font-size: 13px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: 300ms;
}

.top_head a i {
  background: #ffffff57;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: 18px;
  transition: 300ms;
}

.top_header {
  padding: 10px 0px;
  background: var(--c2);
}

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

.top_head a:hover i {
  background: #fff;
}

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


/* ===================================
banner form css start
=================================== */

.chat_form {
  position: relative;
  z-index: 1;
  padding: 25px 25px;
  background: #fff;
  width: 85%;
  margin: 0 auto;
  backdrop-filter: blur(11px);
  border: 2px solid #fff;
  border-radius: 30px;
  transition: 500ms;
}

.chat_field :is(input, textarea) {
  width: 100%;
  padding: 10px 10px;
  background: transparent;
  border: none;
  border: 1px solid #0606068f;
  color: #00000078;
  font-size: 14px;
  outline: 0;
  transition: 500ms;
  border-radius: 10px;
}

.chat_field label {
  color: #000000cf;
  text-transform: capitalize;
  font-size: 14px;
  margin-bottom: 3px;
}

.chat_field {
  margin-bottom: 10px;
}

.chat_field :is(input, textarea)::placeholder {
  color: #000000e8;
  font-size: 12px;
  letter-spacing: 2px;
}

.chat_form h3 {
  font-size: 36px;
  font-family: var(--f2);
  color: #000;
  margin-bottom: 5px;
  text-align: center;
}

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

.chat_form:hover {
  box-shadow: 0px 0px 40px 0px #ff57225c;
}

.chat_field :is(input, textarea):focus {
  border-radius: 50px;
}

.chat_form p {
  font-size: 12px;
  margin-bottom: 25px;
}

/* ===================================
banner form css end
=================================== */


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

.banner_form {
  position: relative;
}

.banner_book {
  width: 220px;
  height: 230px;
  position: absolute;
  right: -118px;
  bottom: -60px;
  z-index: 2;
}

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

.navMenu li a {
  font-size: 14px;
  color: #000;
  display: flex;
  align-items: center;
  gap: 2px;
}

.navMenu li a i {
  font-size: 20px;
  margin: 0 0 3px;
}

.submenu {
  position: absolute;
  background: #fff;
  width: 250px;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: 300ms all;
}

.submenu li a {
  padding: 10px;
  width: 100%;
  border-bottom: 1px solid #4444;
}

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

.navMenu li:hover .submenu {
  opacity: 1;
  visibility: visible;
}



.feildBtn button {
  padding: 10px 56px;
  color: #fff;
  text-decoration: none;
  border-radius: 9px;
  background: #EB7A37;
  border: none;
}

.contact {
  padding: 70px 0;
}

.sectionContent h3 {
  font-size: 45px;
  font-family: 'Inter';
  font-weight: 700;
  color: #000;
  margin: 0 0 10px;
}

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

.contactMain {
  margin: 20px 0 0;
}

.inputFeild :is(input, textarea) {
  width: 100%;
  padding: 15px 10px;
  border: none;
  border-radius: 8px;
  background: #ffff;
  margin: 10px 0 0;
  font-size: 14px;
}

.inputFeild {
  margin: 0 0 10px 0;
}

.inputFeild label {
  font-size: 14px;
}

.inputFeild textarea {
  height: 220px;
}

.sectionContent h3 span {
  color: var(--c1);
}

.contactBox {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 200px;
  background: #eeeeee;
  border-radius: 20px;
  margin: 0 0 20px 0;
}

.contactBox i {
  font-size: 45px;
  color: #eb7a37;
  margin: 0 0 10px;
}

.contactBox a {
  font-size: 19px;
  color: #000;
  font-family: 'Inter';
  text-decoration: none;
  font-weight: 600;
}
.innerBanner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 150px 0;
    position: relative;
}

.innerBannerContent h1 {
    margin: 0;
    text-align: center;
    font-size: 65px;
    font-family: var(--f1);
    font-weight: 700;
    color: #fff;
}
.book_sliderPort {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.book_sliderPort .authore_slider {
    width: 23%;
    height: 480px;
    margin: 10px 0;
}
.vision_sliderInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.vision_sliderInner .visionslidersub {
    width: 32.5%;
    border: 1px solid #4444;
    margin: 10px 0;
}
.privacyLinks {
    display: flex;
    align-items: center;
}

.privacyLinks li a {
    font-size: 14px;
    color: #fff;
    padding: 0 10px;
    border-right: 1px solid #fff;
}

.privacyLinks li:nth-last-child(1) a {
    border-right: 0;
    padding-right: 0;
}
.privacy {
    padding: 70px 0;
}

.privacyContent p {
    font-size: 14px;
    color: #000;
    margin: 10px 0;
    font-family: var(--f1);
    line-height: 27px;
}

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

.privacyContent ul li {
    margin: 10px 0;
    list-style: disc;
    font-family: var(--f1);
    font-size: 14px;
    color: #000;
}

.privacyContent h4 {
    font-size: 26px;
    font-family: var(--f1);
    font-weight: 700;
    color: var(--c1);
    margin: 10px 0;
    text-transform: uppercase;
}


footer.main_footer {
    padding: 50px 0 50px 0;
    background-image: url(../images/footer_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.footer_inner p {
    color: #FFF;
    font-family: var(--f1);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 30px 0 0 0;
    width: 461px;
}

.footer_info {
    width: 50%;
    margin: auto;
}

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

.footer_info ul li a, .footer_info ul li {
    color: #FFF;
    font-family: var(--f1);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0 0 10px;
    display: flex;
    justify-content: flex-start;
}

.footer_info ul li svg {
    margin: 0 20px 0 0;
    width: 25px;
    height: 30px;
}

.footer_info img {
    margin: 20px 0 0 0;
}

.border_bottom {
    border-bottom: 1px solid #F2F2F2;
    padding: 0 0 40px 0;
}

.footer-logo ul {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: -17px 0 0 0;
}


.footer_links ul {
    display: flex;
    justify-content: center;
    margin: 24px 0 0 0;
}

.footer_links ul li a {
    color: #FFF;
    font-family: var(--f1);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer_links ul li {
    color: #fff;
    margin: 0 10px;
}

.desc_para {
    margin: 29px 0 0 0;
    text-align: center;
}

.desc_para h2 {
    color: #FFF;
    font-family: Lato;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0 0 9px 0;
}

.desc_para p {
    color: #FFF;
    text-align: center;
    font-family: var(--f1);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    width: 90%;
    margin: auto;
}

.logoFoo {
    width: 250px;
    height: auto;
}

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

.empower .section_title p {text-align: justify;margin: 0;font-size: 18px;font-weight: 400;font-family: var(--f1);}

.empower .section_title p span {
    color: var(--c1);
    font-weight: 700;
    font-size: 20px;
}




/* popUp Form  */
.popUpForm {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #000000c2;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 300ms all;
}
.popUpForm.active{
    opacity: 1;
    visibility: visible;
}

.popFrom {
    width: 30%;
    background: var(--c2);
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.crsBtn {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    border-radius: 100%;
    color: #000;
    box-shadow: 0 0 15px 1px #4444;
    cursor: pointer;
    transition: 300ms all;
}
.crsBtn:hover {
    transform: rotate(180deg);
}

.formHead {
    font-weight: 700;
    font-size: 30px;
    color: #fff;
    font-family: var(--f2);
}

.inputFeildBtn button {
    padding: 10px 30px;
    background: var(--c3);
    color: #fff;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    border: none;
}