/* font inport */
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Nunito Sans", serif !important;
  scroll-behavior: smooth;
}

:root {
  --theme-color: #021270;
  --btn-bg-color: #0d53ea;
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
}
.logo_king {
  width: 150px;
  height: auto;
}
.top_contact_nav {
  width: 100%;
  height: auto;
  /* background-color: #76010c; */
  background-color: var(--theme-color);
}
.top_contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
.contact_info a {
  margin-right: 15px;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  /* text-transform: capitalize; */
}
.contact_info a i {
  padding-right: 5px;
}
.social_media a {
  color: #fff;
  margin-left: 15px;
}

/* nav-bar */
.custom_nav {
  padding-top: 0px;
  padding-bottom: 0px;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 9999;
}
.navbar-brand {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.custom_nav .right_nav ul li {
  margin-left: 15px;
}
.custom_nav .right_nav ul li a {
  font-size: 17px;
  color: #000;
  font-weight: 600;
  text-transform: capitalize;
}
.navbar-brand {
  font-size: 30px;
  color: #d54e4e;
  font-weight: 700;
  text-decoration: none;
}
.navbar-brand:hover {
  color: #d54e4e;
}
.MemberPanel_btn {
  width: 75px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--btn-bg-color);
  color: #fff !important;
  font-size: 15px !important;
  border-radius: 5px;
}
.login_btn {
  background-color: transparent !important;
  border: 1px solid var(--btn-bg-color) !important;
  color: var(--btn-bg-color) !important;
  font-weight: 700 !important;
}
/* banner=nav-section */
.banner_section {
  /* background: url(../images/isp-banner.jpg); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.carousel_inner_image .carousel-item img {
  width: 100%;
  height: calc(100vh - (50px));
  object-fit: cover;
}
.left_bg {
  width: 100%;
  height: 100%;
  background-color: #0000003b;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.banner_content {
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 999;
}
.banner_content h1 {
  color: #fff;
  font-weight: 800;
  font-size: 50px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.banner_content p {
  font-size: 20px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  padding-top: 20px;
  margin-bottom: 0;
}
.banner_content h3 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 0px;
  padding-bottom: 10px;
}
.banner_content h3 span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #d54e4e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.btn_grp {
  margin-top: 20px;
}
.btn_grp .readmore_btn {
  width: 150px;
  height: 48px;
  border: none;
  outline: none;
  /* background-color: #d54e4e; */
  background-color: var(--btn-bg-color);
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 16px;
  border-radius: 5px;
  transition: all 0.5s;
}
.btn_grp .contact_btn {
  width: 140px;
  height: 48px;
  border: none;
  outline: none;
  margin-left: 20px;
  /* color: #d54e4e; */
  color: var(--btn-bg-color);
  font-weight: 600;
  text-transform: capitalize;
  font-size: 16px;
  border-radius: 5px;
  transition: all 0.5s;
}
.btn_grp button i {
  padding-left: 5px;
  transition: all 0.5s;
}
.btn_grp button:hover i {
  transform: translateX(8px);
}
.btn_grp .contact_btn:hover {
  background-color: var(--btn-bg-color);
  color: #fff;
}
.btn_grp .readmore_btn:hover {
  background-color: #fff;
  color: var(--btn-bg-color);
}

/* left-right-btn-css */
.carousel .prev_btn {
  width: 45px;
  height: 45px;
  top: 50%;
  left: 10%;
  right: auto;
  transform: translateY(-50%);
  background-color: var(--btn-bg-color);
  opacity: 1;
  border-radius: 6px;
}
.carousel .next_btn {
  width: 45px;
  height: 45px;
  top: 50%;
  right: 10%;
  left: auto;
  transform: translateY(-50%);
  background-color: var(--btn-bg-color);
  opacity: 1;
  border-radius: 6px;
}

.carousel .prev_btn i,
.carousel .next_btn i {
  font-size: 20px;
  color: #fff;
}
/*-------- about-section --------*/

.about_section {
  width: 100%;
  height: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}
.about_content p {
  font-size: 14px;
  /* color: #d54e4e; */
  color: var(--btn-bg-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0px;
  padding-bottom: 20px;
}

.about_images img {
  width: 90%;
  height: 700px;
  margin: 0 auto;
  object-fit: cover;
  margin-left: 10%;
  border-radius: 30px;
}

.about_content h1 {
  font-size: 42px;
  color: #000;
  margin-bottom: 0px;
  font-weight: 800;
}

.about_content h1 span {
  /* color: #d54e4e; */
  color: var(--btn-bg-color);
}

.abt_flex_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 30px;
}
.abt_flex_box .icoIbox {
  width: 60px;
  height: 60px;
  background-color: #7b4ed521;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  outline-width: 10px;
  outline-color: #7b4ed521;
  outline-style: solid;
  border-width: 2px;
  border-color: #fff;
  border-style: dashed;
}
.abt_flex_box .icoIbox i {
  font-size: 25px;
  /* color: #d54e4e; */
  color: var(--btn-bg-color);
}
.flex_cnt {
  width: 85%;
}
.flex_cnt h5 {
  font-size: 25px;
  color: #000;
  font-weight: 700;
  margin-bottom: 0px;
  padding-bottom: 20px;
}
.flex_cnt h6 {
  color: #393939;
  font-size: 18px;
  margin-bottom: 0px;
  padding-bottom: 15px;
  font-weight: 500;
  line-height: 25px;
}
.quote {
  font-weight: 700;
  /* color: #d54e4e; */
  color: var(--btn-bg-color);
}

/* ---------services------- */
.services_section {
  width: 100%;
  height: auto;
  padding-top: 50px;
  padding-bottom: 80px;
}
.services_head p {
  font-size: 14px;
  color: var(--btn-bg-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0px;
  text-align: center;
  padding-bottom: 10px;
}
.services_head h1 {
  font-size: 45px;
  color: #000;
  margin-bottom: 0px;
  font-weight: 800;
  width: 40%;
  margin: 0 auto;
  text-align: center;
}
.services_head span {
  color: var(--btn-bg-color);
}
/* .services_img img {
  width: 100%;
  height: auto;
} */
/* .img_ml {
  margin-left: 2%;
} */
.services_row {
  margin-top: 50px;
}
.services_img {
  position: relative;
  width: 98%;
  border-radius: 30px;
  overflow: hidden;
  margin-left: 1%;
}
.services_img::after {
  content: "";
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 45%;
  background-image: linear-gradient(#0000, #112a51d7);
  z-index: 9;
}

.services_content {
  width: calc(100% - (40px));
  height: auto;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 99;
}

.services_content h3 {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 0px;
  padding-bottom: 8px;
}
.services_content p {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0px;
}

/* ----------collection------- */
.collection_section {
  width: 100%;
  height: auto;
  padding-top: 50px;
}
.collection_head p {
  font-size: 14px;
  /* color: #d54e4e; */
  color: var(--btn-bg-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0px;
  text-align: center;
  padding-bottom: 10px;
}
.collection_head h1 {
  font-size: 45px;
  color: #000;
  margin-bottom: 0px;
  font-weight: 800;
  text-align: center;
}
.collection_head h1 span {
  /* color: #d54e4e; */
  color: var(--btn-bg-color);
}

.product_card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product_img {
  width: 48%;
  height: 380px;
  background-color: #7b4ed533;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* .product_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.collection_margin_top {
  padding-top: 60px;
  padding-bottom: 150px;
}

.product_details {
  padding-left: 15px;
}

.product_details {
  width: 50%;
}
.product_details h4 {
  font-size: 20px;
  color: #000;
  font-weight: 700;
  margin-bottom: 0px;
  padding-bottom: 8px;
}
.product_details p {
  font-size: 15px;
  color: #666464;
  margin-bottom: 0px;
  padding-bottom: 10px;
  text-align: justify;
}
.product_details a {
  /* color: #d54e4e; */
  color: var(--btn-bg-color);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: none;
}
.product_details a i {
  padding-left: 5px;
}

.transfer_poduct {
  width: 100%;
  height: auto;
  /* background-color: #511111f0; */
  background-color: #021270f0;
  border-radius: 30px;
  margin-bottom: 50px;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  padding-left: 10%;
}
.transfer_poduct h1 {
  font-size: 40px;
  color: #fff;
  font-weight: 800;
  width: 60%;
}
.transfer_poduct button {
  width: 160px;
  height: 45px;
  margin-top: 25px;
  border: none;
  outline: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #271151;
}
.transfer_poduct button i {
  padding-left: 3px;
}
.transfer_poduct p {
  font-size: 17px;
  color: #d9d9d9;
  margin-bottom: 0px;
  width: 60%;
}
.fun_img {
  position: absolute;
  bottom: 0px;
  right: 20px;
  width: 330px;
}

.contactus_section {
  width: 100%;
  height: auto;
}

.contact_head small {
  font-size: 14px;
  /* color: #d54e4e; */
  color: var(--btn-bg-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0px;
  padding-bottom: 10px;
}
.contact_head p {
  font-size: 15px;
  color: #4f4f4f;
  margin-bottom: 0px;
  font-weight: 500;
  width: 75%;
}

.contactus_section {
  padding-top: 45px;
  padding-bottom: 50px;
}

.contact_head h1 {
  font-size: 45px;
  color: #000;
  margin-bottom: 0px;
  font-weight: 800;
  width: 60%;
  margin-top: 10px;
}

.contact_head span {
  /* color: #d54e4e; */
  color: var(--btn-bg-color);
}

.add_flex {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.add_flex span i {
  /* color: #d54e4e; */
  color: var(--btn-bg-color);
  width: 20px;
}
.justify_center {
  align-items: center;
}
.add_flex p {
  color: #2a2a2a;
  font-size: 15px;
  margin-bottom: 0px;
  font-weight: 600;
  margin-left: 6px;
}
.contact_mt {
  margin-top: 25px;
}
.name_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mt_margin {
  margin-top: 10px;
}
.first_name,
.last_name {
  width: 48%;
}
.first_name label,
.last_name label,
.in_grp label {
  display: block;
  font-size: 14px;
  color: #4f4f4f;
  font-weight: 600;
  text-transform: capitalize;
  padding-bottom: 5px;
}
.first_name input,
.last_name input {
  width: 100%;
  height: 40px;
  border: 1px solid #bdbdbd;
  outline: none;
  border-radius: 8px;
  padding-left: 10px;
  font-size: 14px;
  color: #000;
  font-weight: 600;
}

.in_grp #address {
  width: 100%;
  height: 40px;
  border: 1px solid #bdbdbd;
  outline: none;
  border-radius: 8px;
  padding-left: 10px;
  font-size: 14px;
  color: #000;
  font-weight: 600;
  padding-top: 5px;
  resize: none;
}

.in_grp #Message {
  width: 100%;
  height: 80px;
  border: 1px solid #bdbdbd;
  outline: none;
  border-radius: 8px;
  padding-left: 10px;
  font-size: 14px;
  color: #000;
  font-weight: 600;
  padding-top: 5px;
  resize: none;
}

.form_btn button {
  width: 160px;
  height: 40px;
  /* background-color: #d54e4e; */
  background-color: var(--btn-bg-color);
  border: none;
  outline: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}
.form_btn button i {
  padding-right: 5px;
}
.form_btn {
  display: flex;
  justify-content: start;
  padding-top: 20px;
}
.contact_form {
  padding: 25px;
  border-radius: 20px;
  margin-left: 40px;
}
.contact_form h4 {
  font-size: 22px;
  color: #2a2a2a;
  font-weight: 600;
  margin-bottom: 0px;
  padding-bottom: 25px;
}

.footer_section {
  width: 100%;
  height: auto;
  /* background-color: #511111f0; */
  background-color: #021270f0;
  position: relative;
  padding-top: 50px;
  z-index: 9;
}
.footer_section::after {
  content: "";
  background-image: url(../images/world.png);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: -1;
}

.logo_ftr h1 {
  font-size: 30px;
  color: #ffff;
  /* color: var(--btn-bg-color); */
  font-weight: 700;
  margin-bottom: 0px;
}
.logo_ftr p {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0px;
}
.ftr_menu p {
  font-size: 15px;
  color: #fff;
  margin-bottom: 0px;
  font-weight: 600;
}
.ftr_menu ul {
  margin-top: 15px;
  padding-left: 0px !important;
  margin-bottom: 0px;
  list-style: none;
}

.ftr_menu ul li {
  margin-bottom: 8px;
}

.ftr_menu ul li a {
  font-size: 16px;
  text-decoration: none;
  color: #e6e4e4;
}
.ftr_menu ul li a i {
  padding-right: 5px;
  font-size: 12px;
}
.social_ftr {
  margin-top: 25px;
  display: flex;
}
.social_ftr a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #d54e4e;
  background-color: var(--btn-bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  margin-right: 20px;
  text-decoration: none;
}

.opening_time {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.opening_time span {
  width: 80px;
  height: 80px;
  /* background-color: #d54e4e; */
  background-color: var(--btn-bg-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.opening_time span i {
  font-size: 45px;
  color: #fff;
}
.time_ftr {
  margin-left: 20px;
}
.time_ftr h5 {
  font-size: 15px;
  color: #d4d4d4;
  margin-bottom: 0px;
  margin-bottom: 10px;
}
.time_ftr p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 0px;
  font-weight: 600;
  line-height: 20px;
}
.pb_border {
  padding-bottom: 30px;
  border-bottom-color: #8a8a8a;
  border-bottom-width: 2px;
  border-bottom-style: dashed;
}

.copyRight p {
  font-size: 15px;
  color: #d4d4d4;
  margin-bottom: 0px;
  font-weight: 500;
  padding-top: 10px;
  padding-bottom: 10px;
}
.copyRight p a {
  font-size: 17px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

/* inner-page-banner-css-start-here */
.overflow_while {
  background-color: #ffffffc7;
}
.inner_page_banner_Content {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #0000003d;
}
.inner_page_banner_Content h1 {
  font-size: 60px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 0px;
  text-transform: capitalize;
}
.inner_page_banner_Content ul {
  list-style: none;
  margin-bottom: 0px;
  padding-left: 0px !important;
}
.inner_page_banner_Content ul li {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  color: #fff;
}
.inner_page_banner_Content ul li a {
  text-decoration: none;
  font-size: 17px;
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
}

.embled_map {
  width: 100%;
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 100px;
}

/* plan-page-section */
.plan_head p {
  font-size: 14px;
  /* color: #d54e4e; */
  color: var(--btn-bg-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0px;
  text-align: center;
  padding-bottom: 10px;
}
.plan_head h1 {
  font-size: 45px;
  color: #000;
  margin-bottom: 0px;
  font-weight: 800;
  width: 50%;
  margin: 0 auto;
  text-align: center;
}
.plan_head h1 span {
  /* color: #d54e4e; */
  color: var(--btn-bg-color);
}
.plan_head h5 {
  font-size: 18px;
  color: #4f4f4f;
  margin-bottom: 0px;
  font-weight: 600;
  padding-top: 10px;
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
.plan_details_section {
  width: 100%;
  height: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

.mt_plan_card {
  margin-top: 30px;
}

.plan_card {
  width: 96%;
  height: auto;
  /* background-color: #ffeeee; */
  background-color: #eef3ff;
  margin-top: 40px;
  border-radius: 25px;
  padding: 30px;
  margin-left: 2%;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.included_plan {
  background-color: #fff;
  width: 100%;
  height: auto;
  border-radius: 15px;
  padding: 20px;
}

.plan_name h2 {
  font-size: 23px;
  color: #000;
  margin-bottom: 0px;
  font-weight: 700;
}
.plan_name p {
  font-weight: 18px;
  color: #545454;
  margin-bottom: 0px;
  font-weight: 500;
}

.plan_price h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 0px;
  padding-top: 10px;
  padding-bottom: 10px;
  /* color: #d54e4e; */
  color: var(--btn-bg-color);
}
.plan_price h1 i {
  font-size: 28px;
}
.plan_price h1 span {
  font-size: 18px;
}

.flex_amnt p {
  font-size: 13px;
  margin-bottom: 0px;
  color: #3a3a3a;
  font-weight: 500;
}

.flex_amnt p span {
  font-size: 14px;
  color: #000;
  font-weight: 600;
}

.flex_amnt {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.included_plan {
  margin-top: 15px;
}

.included_plan h3 {
  font-size: 18px;
  color: #131313;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-weight: 700;
  border-bottom-width: 2px;
  border-bottom-color: #959595;
  border-bottom-style: dashed;
}

.included_plan p {
  font-size: 17px;
  margin-bottom: 0px;
  color: #2a2a2a;
  font-weight: 500;
  padding-top: 8px;
}

.included_plan p i {
  /* color: #d54e4e; */
  color: var(--btn-bg-color);
  margin-right: 5px;
}

.plan_card:hover {
  /* border: 1px solid #d54e4e; */
  border: 1px solid var(--btn-bg-color);
  transform: scale(1.02);
}

.scroll_top button {
  width: 40px;
  height: 40px;
  /* background-color: #d54e4e; */
  background-color: var(--btn-bg-color);
  border: none;
  outline: none;
  border-radius: 10px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: none;
}
.scroll_top button i {
  color: #fff;
}
.row_align {
  align-items: center;
}
.last_card {
  padding-top: 30px;
}

.bonus_level {
  margin-top: 45px;
}
.bonus_level ul {
  margin-bottom: 0px;
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
}
.bonus_level ul li {
  width: 25%;
  display: flex;
  padding-left: 0px;
  margin-top: 12px;
  font-size: 16px;
  color: #000;
  font-weight: 600;
}
.bonus_level ul li span {
  width: 30px;
  height: 30px;
  /* background-color: #d54e4e; */
  background-color: var(--btn-bg-color);
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  margin-right: 10px;
  border-radius: 8px;
}

/* redesign-css-start-here */
.sub_menu {
  position: relative;
}
.project_submenu {
  position: absolute;
  top: 120%;
  width: 70%;
  height: auto;
  left: 30%;
  background-color: #fff;
  border-radius: 5px;
  padding: 20px 10px;
}
.cat_prjct p {
  padding-left: 15px;
  padding-right: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.project_flex_menu {
  display: flex;
  width: 100%;
}
.cat_prjct {
  width: 50%;
}
.cat_prjct .main_li a{
  font-size: 15px !important;
  color: #0d53ea !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  text-decoration: none;
}
.cat_prjct .main_li {
  margin-bottom: 10px;
}
.ongoing_subMenu {
  list-style: none;
  padding-left: 20px !important;
}
.ongoing_subMenu li {
  margin-bottom: 5px;
  margin-left: 0px !important;
}
.ongoing_subMenu li a {
  font-size: 16px !important;
  color: #3e3e3e !important;
  text-decoration: none;
}
.ongoing_subMenu li a:hover {
  color: #0d53ea !important;
}

.submenu_card {
  position: absolute;
  top: 120%;
  left: 0;
  width: 190px;
  height: auto;
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  border: 0.5px solid #afafaf;
}

.submenu_card ul {
  padding-left: 0px;
  margin-bottom: 0px;
  display: block;
  list-style: none;
}
.submenu_card ul li {
  margin-left: 0px !important;
  padding-top: 3px;
  padding-bottom: 3px;
}
.submenu_card ul li a {
  font-size: 16px !important;
  color: #000;
  text-decoration: none;
  text-transform: capitalize;
}
.submenu_card ul li a i {
  font-size: 13px;
  color: #000;
  padding-left: 6px;
}
.pro_width {
  width: 225px;
}

.flim_prod img {
  height: 408px;
  object-fit: cover;
}

.mission_vission {
  margin-top: 50px;
}
.mission_img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 15px;
}

.mission_vission_txt h4 {
  font-size: 20px;
  color: var(--theme-color);
  margin-bottom: 10px;
  text-transform: capitalize;
  font-weight: 700;
}
.mission_vission_txt p {
  font-size: 16px;
  color: #2a2a2a;
  margin-bottom: 0px;
  text-align: justify;
}

.category_banner {
  width: 100%;
  height: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.flim_banner {
  /* background-image: url(../images/theblackbeltbanner.avif); */
  /* background-position: end !important; */
  background-image: url(../images/flim-2x.JPG);
}
.import_banner {
  background-image: url(../images/import-banner.jpg);
}
.poultry_banner {
  background-image: url(../images/poultry_banner.jpg);
}
.digi_banner {
  background-image: url(../images/digi_banner.jpg);
}
.finalcial_banner {
  background-image: url(../images/finan_banner.jpg);
}
.real_banner {
  background-image: url(../images/realestate.jpg);
}
.fish_banner {
  background-image: url(../images/fish_banner.jpg);
}
.farming_banner {
  background-image: url(../images/farming_banner.jpg);
}
.ecom_banner {
  background-image: url(../images/ecom_banner.jpg);
}
.transport_banner {
  background-image: url(../images/transport_banner.jpg);
}
.brand_banner {
  background-image: url(../images/make_banner.jpg);
}

.categorY_img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.category_sec {
  margin-top: 100px;
  margin-bottom: 100px;
}

.align_items {
  align-items: center;
}

.right_nav {
  position: relative;
}

.active_item a {
  color: var(--btn-bg-color) !important;
}

/*---------- pre-loder -------*/
.loader {
  animation: rotate 1s infinite;
  height: 50px;
  width: 50px;
}

.loader:before,
.loader:after {
  border-radius: 50%;
  content: "";
  display: block;
  height: 20px;
  width: 20px;
}
.loader:before {
  animation: ball1 1s infinite;
  background-color: var(--btn-bg-color);
  box-shadow: 30px 0 0 var(--theme-color);
  margin-bottom: 10px;
}
.loader:after {
  animation: ball2 1s infinite;
  background-color: var(--theme-color);
  box-shadow: 30px 0 0 var(--btn-bg-color);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) scale(0.8);
  }
  50% {
    transform: rotate(360deg) scale(1.2);
  }
  100% {
    transform: rotate(720deg) scale(0.8);
  }
}

@keyframes ball1 {
  0% {
    box-shadow: 30px 0 0 var(--theme-color);
  }
  50% {
    box-shadow: 0 0 0 var(--theme-color);
    margin-bottom: 0;
    transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 var(--theme-color);
    margin-bottom: 10px;
  }
}

@keyframes ball2 {
  0% {
    box-shadow: 30px 0 0 var(--btn-bg-color);
  }
  50% {
    box-shadow: 0 0 0 var(--btn-bg-color);
    margin-top: -20px;
    transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 var(--btn-bg-color);
    margin-top: 0;
  }
}
.preloder_website {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  top: 0;
  left: 0;
}

/* =========ADMIN-LOGIN-CSS =========*/
.member_position {
  top: calc(40% + 51px);
  right: -150px;
  background-color: var(--btn-bg-color);
}

.admin_position {
  top: 40%;
  right: -150px;
  background-color: var(--theme-color);
}

.admin_login {
  position: fixed;
  z-index: 9999;
  width: 200px;
  padding-left: 15px;
  padding-right: 15px;
  transition: all 0.5s;
}
.admin_login:hover {
  right: 0%;
}

.admin_login a {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  padding: 15px 0px;
  text-decoration: none;
}
.admin_login a:hover {
  text-decoration: none;
}
.admin_login a i {
  font-size: 20px;
  color: #fff;
}
.admin_login a p {
  margin-bottom: 0px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  padding-left: 15px;
}
