* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style-type: none;
  font-family: 'Roboto', sans-serif;
}

:root {
  --c1: #1C2559;
  --c2: #FF5722;
  --c3: linear-gradient(113deg, #FFD922, #f57e58, var(--c2));
  --f1: "Sequel_Sans_regular";
  --f2: "Sequel_Sans_medium";
  --f3: "Sequel_Sans_semibold";
  --f4: "Sequel_Sans_bold";
  --f5: "test-sohne-breit-Breite";
  --f6: "test-sohne-breit-Shne";
  --f7: "test-sohne-breit-ShneBold";
}

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

::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: 10px 35px;
  background: var(--c3);
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  border: none;
  z-index: 99;
}

.themebtn: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(--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: 8px 0px;
}

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

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

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

ul.header-main__nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--c3);
  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: transparent;
  min-height: 85vh;
}

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

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

.banner_cont {
  position: relative;
  color: #fff;
  z-index: 1;
}

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

.banner_cont h3 {
  font-size: 40px;
  font-family: var(--f6);
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
  font-weight: 100;
}

.banner_cont p {
  font-size: 13px;
  width: 86%;
  line-height: 1.7;
  margin: 18px 0px;
}

/* baner css end */


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

.top_bar p {
  margin: 0;
  font-size: 13px;
  position: relative;
  color: #fff;
}

.top_contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top_contact a {
  font-size: 13px;
  position: relative;
  color: #ffff;
}

.top_contact a i {
  font-size: 18px;
  color: var(--c2);
  transition: 500ms;
  margin-right: 3px;
}

.header_top {
  padding: 10px 0px;
  background: var(--c1);
}

.top_bar p::before {
  position: absolute;
  content: '';
  width: 7px;
  height: 7px;
  background: var(--c2);
  top: 6px;
  left: -14px;
  border-radius: 100%;
}

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

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

nav {
  display: flex;
  align-items: center;
  gap: 60px;
}

.header_btn {
  display: flex;
  align-items: center;
}

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

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

.banner_cont h1 {
  font-size: 49px;
  font-family: var(--f4);
  text-transform: uppercase;
  line-height: 0.9;
  font-weight: 100;
  margin-bottom: 10px;
  position: relative;
  width: fit-content;
}

.banner_cont h1::after {
  position: absolute;
  content: '';
  width: 61%;
  height: 15%;
  left: 15px;
  bottom: 3px;
  background: var(--c2);
  z-index: -1;
  /* transform: translateX(-50%); */
}

.banner_cont h4 {
  font-size: 25px;
  font-family: var(--f5);
  text-transform: capitalize;
  margin-bottom: 10px;
  line-height: 1;
  font-weight: 100;
  color: var(--c2);
  width: 81%;
  position: relative;
}

.banner_cont h4::before {
  position: absolute;
  content: '';
  width: 67%;
  background: var(--c2);
  height: 2px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.banner_cont ul {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0px;
}

.banner_cont ul li {
  width: 49%;
  font-size: 13px;
  margin-bottom: 7px;
  position: relative;
  padding-left: 20px;
}

.banner_cont ul li::before {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  background: url(../images/check.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 3px;
  left: 0px;
}

.main_btn {
  display: flex;
  align-items: center;
  gap: 13px;
}

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

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

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

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

.chat_field {
  margin-bottom: 15px;
}

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

.form_btn .themebtn {
  width: 100%;
}

.chat_form h3 {
  font-size: 38px;
  font-family: var(--f3);
  color: #fff;
  margin-bottom: 15px;
  text-align: center;
}

.chat_form h3 span {
  color: var(--c2);
  font-family: var(--f6);
}

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

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

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

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

.banner_form {
  position: relative;
}

.banner_book {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

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

.banner_cont::before {
  position: absolute;
  content: '';
  width: 200px;
  height: 200px;
  background: url(../images/disc.webp);
  bottom: -60px;
  right: -60px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.logo_item {
  width: 100%;
  height: 84px;
  padding: 12px;
  margin: 0px 10px;
}

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

.logos {
  padding: 20px 0px;
}



.book_deserves_main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-top: -60px;
  position: relative;
}

.book_deserves_img {
  width: 234px;
  height: 376px;
  overflow: hidden;
}

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

.book_deserves_big_img {
  width: 300px;
  height: 561px;
  overflow: hidden;
}

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

.book_deserves_cont {
  width: 600px;
  height: auto;
  padding: 47px 30px;
  background: var(--c1);
  text-align: center;
  position: relative;
}

.book_deserves_cont h3 {
  color: #fff;
  font-family: var(--f4);
  font-size: 24px;
  margin: 46px 0px 20px;
  position: relative;
}

.book_deserves_cont p {
  color: #fff;
  font-size: 11px;
  line-height: 1.9;
  margin: 8px 0px;
}

.book_deserves_cont h3::before {
  position: absolute;
  content: '';
  width: 40%;
  height: 10px;
  border-radius: 50px;
  background: var(--c2);
  left: 50%;
  transform: translateX(-50%);
  top: -47px;
}

.section_title h3 {
  font-size: 48px;
  font-family: var(--f4);
  color: #000;
  margin: 0;
}

.book_deserves_big_img.__alt {
  margin-top: -90px;
}

.book_deserves_cont::before {
  position: absolute;
  content: '';
  width: 150px;
  height: 269px;
  background: url(../images/arrow_img.webp);
  left: 40px;
  top: -224px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.book_deserves {
  padding: 70px 0px;
}

.premium_book_text p {
  padding: 9px 20px;
  background: #000;
  color: #fff;
  font-size: 23px;
  text-transform: capitalize;
  font-family: var(--f6);
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}

.premium_book_text {
  position: absolute;
  left: 10%;
  bottom: 0;
  z-index: 1;
}

.premium_img {
  position: absolute;
  width: 99%;
  bottom: -30px;
  z-index: -1;
}

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

.testo_item {
  text-align: center;
  padding: 0px 17rem;
  margin: 0;
  color: #fff;
}

.testo_item p {
  font-size: 16px;
}

.testo_item h6 {
  font-family: var(--f2);
  margin: 0;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  background: transparent;
  border: 2px solid #fff;
  width: 35px;
  height: 35px;
  font-size: 20px;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
}

.slick-arrow::before {
  color: #fff;
  opacity: 1;
  font-family: boxicons !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonials {
  padding: 100px 0px;
  background: var(--c3);
}

.slick-prev {
  left: 9%;
  content: "\eb32";
}

.slick-prev::before {
  content: "\eb32";
}

.slick-next::before {
  content: "\ebe5";
}

.slick-next {
  right: 9%;
  content: "\ebe5";
}

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

.slick-dots li button {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 100%;
  font-size: 0;
  transition: 500ms;
}

.slick-dots li button::before {
  display: none;
}

.slick-dots {
  bottom: -60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
}

.slick-active button {
  background: var(--c2) !important;
}


.section_title h3 span {
  font-size: 48px;
  font-family: var(--f4);
  color: var(--c2);
  margin: 0;
}

/* ===================================
counter section css start
=================================== */


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

.stat {
  text-align: center;
  color: #ffff;
  width: 24%;
  position: relative;
  border-right: 1px solid;
}

.stat p {
  margin: 0;
  font-size: 15px;
}

.stat .counter {
  font-size: 60px;
  font-family: var(--f3);
  margin: 0;
  line-height: 1;
}

.counter_text {
  text-align: center;
  width: 60%;
  margin: 0 auto;
}

.counter_text h3 {
  font-size: 26px;
  font-family: var(--f4);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 27px;
}

.stats_counter_main {
  padding: 72px 60px;
  border-radius: 23px;
  background: url(../images/stats_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.stat:nth-last-child(1) {
  border: none;
}

.stats-section {
  padding: 20px 0px;
}

/* ===================================
counter section css start
=================================== */

/* ==============================
faqs section start
============================== */
.faqs {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 70px 0px;
  min-height: 90vh;
  background: var(--c1);
  transition: 500ms;
}

.faq_img {
  width: 45%;
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  height: 759px;
  border-radius: 30px;
  z-index: 1;
}

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

.accordion-button {
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  padding: 17px 3px;
  font-family: var(--f6);
}

.accordion-button {
  background: transparent;
  padding: 19px 6px;
  font-family: var(--f2);
  font-size: 18px;
  color: #fff;
  box-shadow: none !important;
  outline: 0;
}

.accordion-item {
  background: transparent;
}

.accordion-button:not(.collapsed) {
  color: var(--c2);
  background: transparent;
  border-color: var(--c2);
}

.accordion-button::after {
  background-image: none;
  content: '+';
  color: var(--c2);
  font-size: 30px;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  position: absolute;
  top: 16px;
  right: 2px;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  content: "-";
}

.accordion-body p {
  margin: 0;
  font-family: var(--f6);
  color: #fff;
  line-height: 1.7;
}

.accordion-body {
  padding: 14px 10px;
  border-bottom: 1px solid var(--c2);
  background: #ffffff14;
}

.faqs_main h3 {
  font-size: 55px;
  font-family: var(--f3);
  line-height: 1;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 20px;
}

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


/* ==============================
faqs section start
============================== */


.passion {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.passion_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  object-position: right;
}

.passion_img {
  width: 80%;
  height: 561px;
  position: relative;
}

.passion_cnt p {
  font-size: 15px;
  font-family: var(--f1);
  margin-bottom: 30px;
  width: 90%;
}

.passion_cnt h3 {
  font-family: var(--f5);
  font-size: 60px;
  font-weight: 700;
  width: 90%;
  line-height: 1;
}

.passion_cnt h3 span {
  font-family: var(--f5);
  font-size: 60px;
  color: var(--c2);
}

.passion_cnt h6 {
  font-family: var(--f4);
  font-size: 17px;
  margin: 15px 0;
}

.passion_img:before {
  content: '';
  position: absolute;
  width: 50%;
  height: 80%;
  top: 53%;
  right: -20px;
  background: var(--c2);
  border-radius: 30px;
  transform: translateY(-50%);
  z-index: -1;
}

.passion_img:after {
  content: '';
  background-image: url(../images/dots.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 52px;
  height: 225px;
  position: absolute;
  top: 30px;
  right: -89px;
}

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

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

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

.passionbook_main {
  position: absolute;
  right: -45px;
  bottom: 90px;
  display: flex;
  align-items: end;
  gap: 30px;
  justify-content: end;
  width: 570px;
}

.passion_book1 {
  width: 105px;
  height: auto;
}

.passion_book2 {
  width: 125px;
  height: auto;
}

.passion_book3 {
  width: 185px;
  height: auto;
}

.passionbook_main:before {
  content: '';
  position: absolute;
  width: 570px;
  height: 90px;
  background: #fedcd3;
  z-index: -1;
  left: 0;
  bottom: -20px;
}

.creating {
  padding: 70px 0;
}

.creating_card {
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 8px 9px 1px 1px #dae7f4;
  transition: all 350ms;
  margin-bottom: 25px;
  overflow: hidden;
  position: relative;
}

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

.creatingcard_icon {
  width: 60px;
  height: 60px;
}

.creatingcard_cnt h4 {
  margin: 20px 0 15px;
  font-family: var(--f6);
  font-weight: 700;
  font-size: 23px;
  color: #000;
  transition: 350ms;
}

.creatingcard_cnt p {
  font-size: 13px;
  line-height: 1.9;
  margin: 0;
  transition: 350ms;
}

.creating_card:hover {}

.creating_card:hover :is(p, h4) {
  color: #fff;
}

.creating_card:hover .creatingcard_icon {
  filter: brightness(0) invert(1);
}

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

.creating_img {
  width: 90%;
  margin: 0 auto;
  height: 98%;
  position: relative;
}

.creating_img:before {
  content: '';
  position: absolute;
  background: var(--c2);
  top: 50%;
  transform: translateY(-50%);
  left: -15px;
  width: 40%;
  height: 85%;
  border-radius: 20px;
  z-index: -1;
}

.creating_img:after {
  content: '';
  background-image: url(../images/fulldots.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 154px;
  height: 146px;
  position: absolute;
  top: -38px;
  right: -37px;
  z-index: -1;
}

.expert {
  background-image: url(../images/blue.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 20px;
  overflow: hidden;
}

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

.expert_img {
  width: 100%;
  height: 383px;
  position: relative;
}

.expert_cnt h3 {
  color: #fff;
  font-family: var(--f6);
  font-weight: 600;
  font-size: 40px;
}

.expert_cnt h3 span {
  font-family: var(--f6);
  color: var(--c2);
  font-weight: 600;
  font-size: 40px;
}

.expert_cnt h6 {
  font-family: var(--f1);
  color: #fff;
  font-size: 23px;
  margin-bottom: 15px;
}

.expert_cnt p {
  color: #fff;
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.expert_img:before {
  position: absolute;
  content: '';
  background-image: url(../images/arrow.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 260px;
  height: 220px;
  top: 50%;
  transform: translate(-50%, -50%);
  right: -420px;
}

.worldwide {
  padding: 70px 0;
  background: #e8e9ee;
}

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

.worldwide_img {
  border-radius: 20px;
  overflow: hidden;
  border: 6px solid #fff;
  height: 377px;
}

.professional_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 300ms;
}

.professional_img {
  width: 100%;
  height: 223px;
}

.procard {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}

.procard h6 {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  width: 90%;
  text-align: center;
  font-family: var(--f6);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: capitalize;
  z-index: 9;
}

.professional .col-md-3:nth-child(even) {
  margin-top: 50px;
}

.professional .col-md-3:nth-child(even) .procard:nth-child(1):before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: linear-gradient(0deg, var(--c2), transparent);
}

.professional .procard:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: linear-gradient(0deg, #000000d9, transparent);
}

.professional {
  padding: 70px 0;
  background: url(../images/grey_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.procard:hover img {
  scale: 1.2;
}

.procard:before {
  z-index: 8;
}

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

/* ===================================FOOTER CSS================================================== */

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

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

.footer_logo {
  width: 200px;
  height: auto;
  margin: 0px auto;
}

.footer_head {
  width: 70%;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 30px;
}

.footer_head p {
  text-align: center;
  color: #fff;
  font-size: 13px;
  margin: 20px 0px 0px;
}

.footer_input :is(input, textarea) {
  width: 100%;
  outline: none;
  border: none;
  padding: 12px 12px;
  border-radius: 5px;
  font-size: 13px;
  color: #000;
}

.footer_input {
  margin-bottom: 10px;
}

.footer_input textarea {
  height: 170px;
}

.footer_input :is(input, textarea)::placeholder {
  color: #000;
  text-transform: capitalize;
}

.footer_btn .themebtn {
  width: 100%;
  text-align: center;
}

.fotter_cnt h4 {
  font-family: var(--f6);
  color: #ffff;
  font-size: 43px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.3;
}

.fotter_cnt h4 span {
  font-family: var(--f6);
  color: var(--c2);
  font-weight: 700;
  font-size: 43px;
  text-transform: capitalize;
}

.fotter_cnt p {
  font-size: 15px;
  color: #fff;
  line-height: 1.7;
}

.fotter_cnt {
  position: relative;
}

.fotter_cnt:before {
  content: '';
  position: absolute;
  background-image: url(../images/rightarrow.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: 40%;
  left: 640px;
  transform: translate(-50%, -50%);
  width: 190px;
  height: 170px;
}

.footer_orange {
  background: var(--c2);
  padding: 12px 0;
  margin-top: 50px;
}

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

.footer_address a {
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  transition: all 300ms;
}

.footer_address a i {
  font-size: 19px;
  width: 20px;
  height: 20px;
}

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

.copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0px;
}

.term_condition_img {
  display: flex;
  align-items: center;
  gap: 9px;
  justify-content: center;
}

.copyright p {
  color: #fff;
  font-size: 13px;
  margin: 0;
}

.term_condition_img a {
  color: #fff;
  font-size: 13px;
  transition: 300ms;
}

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

.card_img {
  width: 130px;
  height: auto;
}

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

.term_condition_img span {
  width: 1px;
  height: 11px;
  background: #fff;
}

.creating_card::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 2%;
  top: 0;
  left: 0;
  background: var(--c3);
  transition: 500ms;
  z-index: -1;
}

.creating_card:hover::before {
  height: 100%;
}

.faq_img::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 87%;
  background: #fff;
  z-index: -1;
  right: -20px;
  border-radius: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.chat_field textarea {
  height: 100px;
}

.row_border {
  padding-top: 30px;
  border-top: 1px solid #ffffff52;
  position: relative;
}

/* ===================================
popup form css start
=================================== */

.form_close {
  position: absolute;
  width: 40px;
  height: 40px;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: #fff;
  top: -23px;
  right: -23px;
  z-index: 999;
  background: var(--c2);
  border-radius: 8px 0;
}

.popup_form {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: #59362982;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
  backdrop-filter: blur(24px);
  overflow: hidden
}

.popup_form .banner_form {
  width: 30%;
  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(0);
  box-shadow: 0 0 10px 0 inset #a180608c
}

.form_close:hover {
  color: #fff;
  background: var(--c2)
}

.popup_form .chat_form {
  width: 31%;
  padding: 46px 33px;
}

/* ====================================
popup form css end
=================================== */

/* ===================================
Dropdown Css Start
===================================  */
ul.dropdown_menu {
  background: #fff;
  position: absolute;
  z-index: 99999;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: 500ms all;
  overflow: hidden
}

ul.dropdown_menu li a {
  padding: 12px 10px;
  color: #000;
  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 rgb(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;
  display: inline-block;
  position: absolute;
  margin-left: 8px
}

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

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

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

/* ===================================
Dropdown Css End
===================================  */
/* ===================================
Responsive Css Start
=================================== */

.menu_logo {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 500ms all;
  box-shadow: 0 0 10px 0 #cfcfcf
}

.side_menu {
  width: 80%;
  background: #fff;
  height: 100vh;
  position: fixed;
  top: 0;
  padding: 10px 16px;
  left: 0;
  z-index: 99999;
  transform: translateX(-100%);
  transition: 200ms all
}

.responsive_menu {
  display: none
}

.show {
  transform: translateX(0%)
}

.responsive_logo img {
  width: 80px;
}

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

.side_menu li a {
  padding: 12px 12px;
  width: 100%;
  color: #373737;
  text-transform: capitalize;
  font-size: 13px;
  font-weight: 500
}

.close_menu {
  width: 50px;
  text-align: end;
  padding: 8px 12px !important;
  float: inline-end;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center
}

.menu_sticky {
  position: fixed
}

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

.responsive_overly.show {
  left: 0
}

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

.side_menu .accordion-item {
  background: #fff0;
  border: none
}

.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: "\ebc0";
  color: #000;
  font-size: 19px
}

.side_menu .accordion-body {
  padding: 0;
  overflow-x: auto
}

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

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

.side_menu .accordion-button:not(.collapsed) a {
  color: var(--c1)
}

.close_menu i {
  font-size: 23px
}

.side_form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 5px 12px;
  gap: 10px;
  box-shadow: 0 1px 0 0 #ebebeb;
  margin-bottom: 14px;
  margin-top: 0
}

.side_form input {
  background: #fff0;
  border: none;
  outline: 0;
  color: gray;
  font-size: 13px;
  width: 100%
}

.side_form button {
  background: #fff0;
  border: none;
  font-size: 17px;
  color: gray;
  outline: 0
}

.social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between
}

.social a {
  font-size: 24px;
  color: var(--c2)
}

.link_row {
  display: flex;
  flex-wrap: wrap;
  padding: 12px 0;
  justify-content: space-between;
  padding-left: 14px
}

.link_colom {
  width: 100%
}

.sidenav {
  height: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 0 10px;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: 200ms all;
  width: 500px;
  border-left: 1px solid;
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-image: initial;
  padding: 20px 17px
}

.custom-select {
  position: relative;
  width: 180px;
  cursor: pointer
}

.custom-select .selected {
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f1);
  font-size: 13px
}

.custom-select img {
  width: 20px;
  height: 14px
}

.custom-select .options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  background: #fff;
  display: none;
  z-index: 99
}

.custom-select .options li {
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px
}

.custom-select.open .options {
  display: block
}

.side_menu ul {
  height: 84vh;
  overflow-y: auto
}

/* ===================================
Responsive Css End
=================================== */
/* ===================================
Inner Banner Css Start
===================================  */

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

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

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

.inner_cont h3 {
  font-size: 41px;
  font-family: var(--f4);
  text-transform: capitalize;
  font-weight: 100;
  margin-bottom: 10px;
  position: relative;
}

.inner_cont p {
  font-size: 13px;
  width: 86%;
  line-height: 1.7;
  margin: 18px 0px;
}

.inner_cont {
  color: #fff;
  position: relative;
  z-index: 1;
}

.inner_cont h3 span {
  color: var(--c2);
  font-family: var(--f4);
  display: block;
}


.inner_cont ul {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0px;
}

.inner_cont ul li {
  width: 49%;
  font-size: 13px;
  margin-bottom: 7px;
  position: relative;
  padding-left: 20px;
}

.inner_cont ul li::before {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  background: url(../images/check.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 3px;
  left: 0px;
}

/* ===================================
Inner Banner Css Start
===================================  */

/* =================================== 
 inner SubBanner Css Start
===================================  */

.inner_sub {
  padding: 70px 0px;
}

.inner_sub_cont h3 {
  font-family: var(--f4);
  font-size: 35px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.inner_sub_cont p {
  font-size: 15px;
  font-family: var(--f1);
  margin-bottom: 30px;
  width: 94%;
}

.inner_sub_img {
  width: 80%;
  height: 581px;
  position: relative;
  margin: 0 auto;
}

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

.inner_sub_img::before {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  top: -5%;
  right: -20px;
  border-radius: 100%;
  transform: rotate(39deg);
  z-index: -1;
  border: 2px dashed var(--c2);
  background: transparent;
  animation: rorate 10s linear infinite;
}

.inner_sub_img::after {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  bottom: -5%;
  left: -20px;
  border-radius: 100%;
  transform: rotate(39deg);
  z-index: -1;
  border: 2px dashed var(--c2);
  background: transparent;
  animation: rorate 10s linear infinite;
}

@keyframes rorate {
  100% {
    transform: rotate(360deg);
  }
}

.inner_sub_cont h3 span {
  font-family: var(--f4);
  color: var(--c2);
  display: block;
}

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

/* =================================== 
 inner SubBanner Css Start
===================================  */

a.procard.--alt::before {
  background: linear-gradient(0deg, var(--c2), transparent);
}

/* privacy page css start */

.privacy {
  padding: 80px 0;
  background: #f9fafc;
}

.policy_content {
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  padding: 50px 60px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* Section Headings */
.policy_content h4 {
  font-size: 26px;
  font-family: var(--f2);
  font-weight: 600;
  margin: 13px 0;
  color: #111827;
  position: relative;
  padding-left: 18px;
  text-transform: capitalize;
}

.policy_content h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  height: 70%;
  width: 4px;
  background: var(--c2);
  border-radius: 4px;
}

/* Paragraph Styling */
.policy_content p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #374151;
  text-align: justify;
  margin-bottom: 14px;
}

/* Bold text highlight */
.policy_content p b {
  color: var(--c2);
  font-weight: 600;
}

/* Links */
.policy_content a {
  color: var(--c2);
  text-decoration: none;
  font-weight: 500;
}

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

/* Contact Section Highlight */
.policy_content h1 {
  font-size: 50px;
  font-family: var(--f1);
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
  text-decoration: underline !important;
  text-decoration-color: var(--c2) !important;
}

.policy_content ul,
.terms_content ul {
  padding-left: 22px;
  margin: 15px 0;
}

.policy_content ul li,
.terms_content ul li {
  font-size: 15px;
  line-height: 1.9;
  color: #374151;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

/* Custom bullet */
.policy_content ul li::before,
.terms_content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  color: var(--c2);
  font-size: 21px;
  line-height: 1.9;
  width: 7px;
  height: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--c2);
  border-radius: 50px;
}

.policy_content h5 {
  font-size: 22px;
  font-family: var(--f1);
  font-weight: 500;
}

/* privacy page css end */

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

/* contact us page css start */
.contact_section {
  padding: 70px 0px;
}

.contact_title h3 {
  font-size: 62px;
  font-family: var(--f1);
  font-weight: 700;
  color: #000;
  margin: 0;
}

.contact_title p {
  font-size: 20px;
  margin: 0;
}

.contact_form_title {
  padding: 24px 0px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 26px;
  border-bottom: 1px solid #8080804f;
  margin-bottom: 21px;
}

.contact_form_item label {
  display: block;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 2px;
  text-transform: capitalize;
}

.contact_form_item :is(input, textarea) {
  width: 100%;
  padding: 13px 10px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  outline: 0;
}

.contact_form_item {
  margin-bottom: 18px;
}

.cotact_form_main {
  background: #f4f4f4;
  padding: 5px 40px 30px;
  border-radius: 12px;
}

.contact_form_item textarea {
  height: 95px;
}

.contact_info {
  padding: 5px 30px 30px;
  background: #f4f4f4;
  border-radius: 12px;
  margin-bottom: 15px;
}

.contact_info_item {
  display: flex;
  width: 49%;
  margin-bottom: 22px;
  align-items: center;
  gap: 13px;
}

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

.contact_info_text p {
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  transition: 500ms;
}

.contact_info_icon {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact_info_icon i {
  font-size: 34px;
}

.contact_info_text span {
  font-size: 17px;
  font-weight: 600;
  transition: 500ms;
}

.business_hours {
  padding: 5px 30px 30px;
  background: #f4f4f4;
  border-radius: 12px;
}

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

.open_days span {
  font-weight: 700;
}

.contact_info_item:hover .contact_info_text p {
  color: var(--c2);
}

.contact_info_item:hover .contact_info_text span {
  color: var(--c2);
}

.contact_info_item:hover .contact_info_icon i {
  animation: tada 700ms;
  color: var(--c2);
}

.contact_map {
  width: 100%;
  overflow: hidden;
  height: 215px;
  border-radius: 13px;
}

.contact_map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* contact us page css end */

.inner_sub_cont ul li {
  font-size: 14px;
  margin-bottom: 11px;
  position: relative;
  padding-left: 22px;
}

.inner_sub_cont ul li::before {
  position: absolute;
  content: '';
  width: 7px;
  height: 7px;
  background: var(--c2);
  border-radius: 100%;
  left: 8px;
  top: 7px;
  font-family: var(--f4);
}

.inner_sub_cont ul li b {
  font-weight: 600;
  font-family: var(--f4);
}

.worldwide_slider .slick-dots li button {
  width: 10px;
  height: 10px;
  box-shadow: 0px 0px 4px 2px #0000001c;
}

.slick-slide {
  margin: 0px 3px;
}

/* ===============================================
Thank You & 404 page css start
===============================================  */

/* Container */
.wrapper {
  text-align: center;
  animation: fadeIn 1.2s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  background: var(--c3);
}

/* 404 Text */
.wrapper h1 {
  font-size: 140px;
  font-weight: bold;
  animation: float 3s ease-in-out infinite;
  font-family: var(--f4);
  color: #fff;
}

/* Message */
.wrapper p {
  font-size: 20px;
  margin: 10px 0 30px;
  opacity: 0.8;
  color: #fff;
}

/* Button */
.btn {
  padding: 12px 25px;
  background: #ff4b2b;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  transition: 0.3s;
  display: inline-block;
}

.btn:hover {
  background: #ff3a1a;
  transform: scale(1.05);
}

/* Floating animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

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

/* Fade in */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .wrapper h1 {
    font-size: 80px;
  }

  .wrapper p {
    font-size: 16px;
  }
}

.wrapper h1 span {
  /* color: var(--c1); */
  font-family: var(--f3);
}


h1.thank_you_title {
  font-size: 61px;
  animation: none;
}

.icon {
  width: 150px;
  height: auto;
  overflow: hidden;
  animation: float 3s ease-in-out infinite;
}

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


/* ===============================================
Thank You & 404 page css end
=============================================== */

.main_btn.__alt {
    justify-content: center;
}

.inner_sub_img.__alt img {
    object-fit: contain;
}

.inner_cont h3.text-center span {
    display: contents;
}

p.dis {
    font-size: 10px;
}