@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&family=Varta:wght@300;400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
}

body {
  font-family: 'Poppins', sans-serif !important;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90.25deg, #93ceea 23.97%, #7521ff 76.24%);
  border-radius: 5px;
}

/* Highlight.js  */
pre code.hljs {
  display: block;
  overflow-x: auto;
  padding: 1em;
  border-radius: 10px;
  width: 50%;
}

/* Navbar Section */
.sticky-nav {
  top: 0;
  z-index: 10;
  width: 100%;
  position: absolute;
}

nav {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 0px 5%;
  font-size: 16px;
}

.fixed {
  position: fixed !important;
  background: #000;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

nav .nav-logo {
  background: url("../../assets/img-buygold/white_logo.png");
  background-size: cover;
  width: 200px;
  height: 33.75px;
}

.vl {
  border-left: 6px solid green;
  height: 500px;
}

.sign_in::after {
  content: "";
  border-right: 2px solid #fff;
  margin-left: 7px;
}

/* Navlinks  */
nav .nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0 !important;
  position: relative;
}

nav .nav-links li {
  padding: 30px 0;
}

nav .nav-links li a {
  text-decoration: none;
  margin: 0px 20px;
  color: #FFF;

  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
  cursor: pointer;
  padding: 5px 0px;
  position: relative;
}

.sign_b a {
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
  color: #fff;
  text-decoration: none;
}

nav .nav-links li a::after {
  content: "";
  background: #F5C24D;
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.5s;
}

nav .nav-links li a:hover::after {
  width: 100%;
}

nav button {

  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
  background: #ffffff;
  border-radius: 40px;
  text-decoration: none;
  padding: 10px 20px;
  margin: 0px 30px;
  outline: none !important;
  border: none !important;
  cursor: pointer;
  transition: all 0.25s ease-out;
}

nav button:hover {
  background: linear-gradient(90.25deg, #93ceea 23.97%, #7521ff 76.24%);
  box-shadow: 0 0 0 1px rgba(80, 80, 80, 0.5);
  color: #fff;
}

nav button:active {
  filter: drop-shadow(0 0 0 #15111a);
  transform: translate(0, 5px);
}

/* Mega-Menu for Products  */
nav .products-mega-box {
  border-radius: 20px;
  position: absolute;
  top: 90%;
  left: 2%;
  z-index: 10;
  width: 320px;
  height: 100%;
  display: none;
}

nav .nav-links li:hover .products-mega-box {
  display: block !important;
}

nav .products-mega-box .products-content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  background: #121215dd;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 2px -2px rgb(0 0 0 / 30%);
  border-radius: 20px;
  padding: 20px;
}

.products-content .products-col {
  width: 50%;
}

.products-content ul {
  list-style: none;
  padding: 0px 5px;
  display: flex;
  flex-direction: column-reverse;
}

.products-content ul li {
  padding: 5px 10px !important;
}

.products-content .navlinks {

  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #dddddd;
  text-transform: capitalize;
  cursor: pointer;
  text-decoration: none;
  margin: 0px;
}

.products-content .navlinks::after {
  background: none;
}

.products-content li:hover {
  background: #1d1d1d;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
}

/* Mega-Menu for Industries  */
nav .industries-mega-box {
  border-radius: 20px;
  position: absolute;
  top: 90%;
  right: -50%;
  z-index: 10;
  width: 480px;
  height: 100%;
  display: none;
}

nav .nav-links li:hover .industries-mega-box {
  display: block !important;
}

nav .industries-mega-box .industries-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background: #121215dd;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 2px -2px rgb(0 0 0 / 30%);
  border-radius: 20px;
  padding: 20px;
}

.industries-content .industries-col {
  width: 33%;
}

.industries-content ul {
  list-style: none;
  padding: 0px 5px;
}

.industries-content ul li {
  padding: 5px 10px !important;
}

.industries-content .navlinks {

  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #dddddd;
  text-transform: capitalize;
  cursor: pointer;
  text-decoration: none;
  margin: 0px;
}

.industries-content .navlinks::after {
  background: none;
}

.industries-content li:hover {
  background: #1d1d1d;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
}

#menu {
  display: none;
}

/* Hero Section  */
.hero {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 160px 5% 100px;
  position: relative;
}

.hero-content {
  width: 50%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  z-index: 100;
}

.hero-content h3 {
  color: #FFF;

  font-family: Poppins;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px;
  /* 125% */
  letter-spacing: -0.28px;
}

.hero-content span {
  color: #F5C24D;
}

.hero-content p {
  color: #FFF;
  max-width: 500px;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.lab_img label {
  display: block;
  color: #FFF;

  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.hero-img {

  position: absolute;
  top: 124px;
  right: 40px;
  align-items: center;
}

.hero-img img {
  width: 100%;
  height: 100%;
}

/* live price css */
.live-block1 img {
  margin-right: 4px;
}

.pamp_refer {
  display: flex;
  gap: 15px;
  background: #f9f9f9;
  padding: 15px 10px;
  border-radius: 12px;
}

.live_block_main {
  border-radius: 12px;
  border: 1px solid #DFDFDF;
  background: #FFF;
  position: absolute;
  top: 170px;
  width: 500px;
  height: 500px;
  right: 136px;
  padding: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.live_block_main span {
  border-radius: 4px;
  background: #D2EBD2;
  color: #1F991D;
  font-family: Poppins;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 2px 4px;

}

.live-block1 {
  position: absolute;
  top: 12px;
  left: 33px;
}

.pamp h4 {
  color: #666;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: -6px;
}

.kyc_block_main a:hover {
  background-color: #ffb404 !important;
  border-color: #ffb404;
  color: #fff;
  box-shadow: 0 0.25rem 0.25rem 0.125rem rgba(255, 191, 40, 0.1), 0 0.375rem 0.75rem -0.125rem rgba(255, 191, 40, 0.4);
}

.pamp span {
  color: #999;

  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: transparent;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: unset;
}

.pamp {
  background: url("../../assets/img-buygold/Group1902.svg") 3px 2px;
  background-repeat: no-repeat;
}

.pamp_augmont1 {
  display: flex;
}

.inline_pam_section {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.text-pamp {
  margin-left: 42px;
}

.refersh_ic {
  background: url("../assets/img-buygold/refresh-ccw.svg") 109px 8px;
  background-repeat: no-repeat;
}

.refersh_ic h5 {
  color: #000;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-right: 20px;
}

.lockerbal {
  margin-top: -10px;
}

.modal-dialog {
  position: fixed !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  width: 100% !important;
}

.lockerbal span {
  color: #999;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: transparent;
}

.modal-header {
  border-bottom: none;
  display: block;
}

.lockerbal h5 {
  color: #000;

  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.w3-black {
  margin-bottom: 30px;
  text-align: center;
}

.w3-black button {
  background: transparent;
  border: none;
  padding: 10px 50px;
  color: #999;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.w3-black button:focus {
  outline: unset;
  color: #000;

  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-bottom: 2px solid #FFC233;
}

.respon_block_main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
}

.promo a {
  background: url("../../assets/img-buygold/chevron-down.png") right center;
  background-repeat: no-repeat;
  display: block;
  color: #666;

  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
}

.process-pay a {
  border-radius: 12px;
  background: #F5C24D;
  text-align: center;
  padding: 10px 20px;
  color: #000;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: 100%;
  display: block;
  margin-top: 36px;
  text-decoration: none;
}

.apply_promo p {
  color: #666;
  font-family: Poppins;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 30px;
  margin-top: 6px;
}

.promo {
  border-radius: 8px;
  background: #F1F5FF;
  padding: 10px 20px;
}

.respon_block_main label {
  color: #999;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.respon_block_main input {
  border-radius: 12px;
  border: 0.5px solid #999;
  width: 200px;
  height: 48px;
  padding: 10px;
}

.tabs a.tab.active {
  color: #000;


  font-weight: 600;

}

.tabs a.tab.active:after {
  opacity: 1;
  transform: scale(1, 1);
}

/* graph section css */
.graph_block_main {
  max-width: 1250px;
  margin: 0 auto;
  padding-top: 170px;
  padding-bottom: 70px;

}

.graph_block_main img {
  width: 100%;
}

.cl {
  clear: both;
  height: 0;
}

/* faqs Section  */
.faqs_section {
  max-width: 1250px;
  margin: 0 auto;
  padding-top: 100px;
  margin-bottom: 70px;

}

.faqs_section h1 {
  text-align: center;
  color: #000;
  font-family: Poppins;
  font-size: 20px;
  margin-bottom: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.faqs_section h2 {
  color: #000;
  border-radius: 10px;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: #F6F6F6;
  padding: 15px;
  margin-bottom: 0;
}

.faqs_section p {
  color: #666;

  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-left: 15px;
}

.back-home a:hover {
  background-color: #ffb404 !important;
  border-color: #ffb404;
  color: #fff;
  box-shadow: 0 0.25rem 0.25rem 0.125rem rgba(255, 191, 40, 0.1), 0 0.375rem 0.75rem -0.125rem rgba(255, 191, 40, 0.4);
}

.modal-header button {
  background: transparent;
  border: none;
  float: right;
}

.faqs_section ul {
  list-style: none;
  perspective: 900;
  padding: 0;
  margin: 0;
}

.faqs_section ul li {
  position: relative;
  padding: 0;
  margin: 0;
  padding-bottom: 0px;
  padding-top: 0px;
  border-top: none
}

.faqs_section ul li:nth-of-type(1) {
  animation-delay: 0.5s;
}

.faqs_section ul li:nth-of-type(2) {
  animation-delay: 0.75s;
}

.faqs_section ul li:nth-of-type(3) {
  animation-delay: 1.0s;
}

.faqs_section ul li:last-of-type {
  padding-bottom: 0;
}

.faqs_section ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 16px;
  right: 22px;
  top: 10px;
}

.faqs_section ul li i:before,
ul li i:after {
  content: "";
  position: absolute;
  background-color: #666666;
  width: 3px;
  height: 9px;
}

.faqs_section ul li i:before {
  transform: translate(-2px, 0) rotate(45deg);
}

.faqs_section ul li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}

.faqs_section ul li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}

.faqs_section ul li input[type=checkbox]:checked~p {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%);
}

.faqs_section ul li input[type=checkbox]:checked~i:before {
  transform: translate(2px, 0) rotate(45deg);
}

.faqs_section ul li input[type=checkbox]:checked~i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}


/* Footer Section  */
.footer_main {
  background: #000;
  padding: 100px 140px;
  border-top: 14px solid #FFC233;
}

.footer-block-main {
  display: flex;
  justify-content: space-between;
}

.footer-block-main h3 {
  color: #FFC233;

  font-family: Poppins;
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}

.footer-block-main ul {
  list-style: none;
}

.footer-block-main ul li a {
  color: #FFF;
  text-decoration: none;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: 15px;
}

.social_media li {
  display: inline-flex;
  margin-right: 5px;
}

.copy_right {
  background: #FFC233;
  padding: 10px;
  text-align: center;
}

.copy_right p {
  color: #000;

  text-align: center;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  margin: 0;
}

/* kyc verification css */
.hero.kyc_vei {
  padding-top: 0px;
  margin-bottom: 70px;
  padding-bottom: 85px;

}

/* check box css */
.custom_check .container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.custom_check .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.custom_check .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: transparent;
  border: 1px solid #999999;
}

/* On mouse-over, add a grey background color */
.custom_check .container:hover input~.checkmark {
  background-color: transparent;
}

.upload-ar {
  text-align: center;
}

/* When the checkbox is checked, add a blue background */
.custom_check .container input:checked~.checkmark {
  background-color: transparent;
  border: 1px solid #999999;
}

/* Create the checkmark/indicator (hidden when not checked) */
.custom_check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom_check {
  border-radius: 8px;
  background: #F1F5FF;
  padding: 20px 20px;
  margin-bottom: 20px
}

/* Show the checkmark when checked */
.custom_check .container input:checked~.checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.custom_check .container .checkmark:after {
  left: 7px;
  top: 2px;
  width: 9px;
  height: 15px;
  border: solid #999999;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.kyc_block_1 {
  border-radius: 12px;
  border: 1px solid #DFDFDF;
  background: #FFF;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 70px;

}

.pan_verification {
  text-align: center;
  border-bottom: 1px solid #dfdfdf;
}

.kyc_block_main {

  padding: 40px 70px;
}

.pan_verification h3 {
  color: #000;

  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px;
  /* 350% */
  letter-spacing: -0.1px;
}

.kyc_block_main .p_num {
  color: #969191;

  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: block;
}

.buyersec.hero.kyc_vei {
  margin-bottom: 0;
}

.custom_check label {
  color: #666;

  font-family: Poppins;
  font-size: 10px !important;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.kyc_block_main a {
  border-radius: 12px;
  background: #000;
  color: #FFF;
  --bs-btn-border-color: unset;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 10px;
}

#pnum {
  border: none;
  border-bottom: 2px solid #999;
  margin-bottom: 25px;
  width: 100%;
  max-width: 300px;
}

/* pan modal popup css */
.pan_card .modal-content {
  border-radius: 12px;
  border: 1px solid #DFDFDF;
  background: #FFF;
  text-align: center;
}

.pan_card .img_cir p {
  color: #56AA39;

  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.pan_card h2 {
  color: #000;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px;
  letter-spacing: -0.1px;
  text-transform: uppercase;
}

.pan_card .modal-dialog {
  max-width: 586px;
}

.pan_card a {
  color: #FFF;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background: #000;
  border-radius: 12px;
  display: block;
  padding: 13px;
  margin-bottom: 10px;
  text-decoration: none;
}

.pan_card span {
  color: #969191;

  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.pan_card p {
  color: #000;

  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* adhaar css */
.stepper .line {
  width: 2px;
  background-color: lightgrey !important;
}

.stepper .lead {
  color: #565656;

  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-bottom: 0 !important;
  margin-top: 10px;
}

.stepper .lead span {
  font-weight: 700;
}

.adhaar_veri .mt-5 {
  margin-left: 85px !important;
}

.adhaar_veri .kyc_block_main {
  padding: 40px 15px;
}

.digilocker {
  border-radius: 12px;
  border: 0.5px solid #999;
  position: relative;
  padding: 40px;
  margin-bottom: 20px;

}

.step_sect {
  max-width: 400px;
  margin: 0 auto;
}

.img_sec {
  text-align: center;
  position: absolute;
  top: -25px;
  left: 22%;
  padding: 5px 30px;
  background: #fff;
}

.digilocker h4 {
  color: #4D4D4D;
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.digilocker .text-white {
  color: #ccc !important;
}

.digilocker .bg-primary {
  background-color: transparent !important;
  border: 1px solid #ccc;

}

.h-100 {
  height: 22px !important;
}

.learn-more {
  color: #969191;
  font-family: Poppins;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  text-align: center;
  border-radius: 8px;
  background: #F1F5FF;
  padding: 12px;
  max-width: 400px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;

}

.learn-more span {
  color: #000;
}

.digi_account {
  color: #969191;
  text-align: center;
  font-family: Poppins;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.adhaar_veri .kyc_block_main a {
  max-width: 522px;
  margin: 0 auto;
}

.pan_verification p {
  color: #969191;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

.pan_verification h3 {
  margin-bottom: -14px;
}

/* upload  css */
/*----------multiple-file-upload-----------*/
.file-upload-contain {
  position: relative;
  margin-bottom: 40px;
}

.file-upload-contain .file-input,
.file-upload-contain .file-preview {
  position: initial;
}

.file-upload-contain .file-drop-zone {
  border: none;
  transition: 0.3s;
  margin: 0;
  padding: 0;
  border-radius: 8px;
  background-color: #f1f5ff;
  min-height: auto;
}

.file-upload-contain .file-drop-zone.clickable:hover,
.file-upload-contain .file-drop-zone.clickable:focus,
.file-upload-contain .file-highlighted {
  border: navy;
  background-color: #dfedfc;
}

.upload-area i {
  color: #1e80e8;
  font-size: 50px;
}

.upload-area p {
  margin-bottom: 30px;
  margin-top: 30px;
  font-size: 20px;
  font-weight: 600;
  color: #2580e8;
}

.upload-area p b {
  color: #1e80e8;
}

.upload-area button {
  padding: 8px 16px;
  min-width: 150px;
  color: #000;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background-color: #F5C24D;
  border: 2px solid #F5C24D;
  border-radius: 12px;
  transition: 0.3s;
  background: #F5C24D url("../../assets/img-buygold/camera.png") 24px 9px;
  background-repeat: no-repeat;
  padding-left: 36px;
}

.upload_inster .incorrect h5,
.upload_inster .incorrect1 h5 {
  color: #ED3434;
}

.correct span img {
  width: 31px;
  height: 31px;
}

.incorrect span img {
  width: 31px;
  height: 31px;
}

.incorrect1 span img {
  width: 31px;
  height: 31px;
}

.check_mark {
  position: absolute;
  top: 168px;
  right: -10px;
}


.upload-area button:hover {
  background-color: #1e80e8;
  box-shadow: 0px 4px 8px rgb(37 128 232 / 48%);
}

.file-preview {
  padding: 0;
  border: none;
  margin-bottom: 30px;
}

.file-preview .fileinput-remove {
  display: none;
}

.file-drop-zone-title {
  padding: 55px 10px;
}

.file-drop-zone .file-preview-thumbnails {
  cursor: pointer;
}

.file-preview-frame {
  cursor: default;
  display: flex;
  align-items: center;
  border: none;
  background-color: #2580e8;
  box-shadow: none;
  border-radius: 8px;
  width: 100%;
  padding: 15px;
  margin: 8px 0px;
}

.file-preview-frame:not(.file-preview-error):hover {
  border: none;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
}

.file-preview-frame .kv-file-content {
  min-width: 45px;
  min-height: 45px;
  width: 45px;
  height: 45px;
  border-radius: 4px;
  margin-right: 10px;
  background-color: #fff;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.file-preview-image {
  border-radius: 4px;
}

.file-preview-frame .file-footer-caption {
  padding-top: 0;
}

.file-preview-frame .file-footer-caption {
  text-align: left;
  margin-bottom: 0;
}

.file-detail {
  font-size: 14px;
  height: auto;
  width: 100%;
  line-height: initial;
}

.file-detail .file-caption-name {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.file-detail .file-size {
  color: #f1f8fe;
  font-size: 12px;
}

.kv-zoom-cache {
  display: none;
}

.file-preview-frame .file-thumbnail-footer {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.file-preview-frame .file-drag-handle,
.file-preview-frame .file-upload-indicator {
  float: none;
}

.file-preview-frame .file-footer-buttons {
  float: none;
  display: flex;
  align-items: center;
}

.file-preview-status.text-center {
  display: none;
}

.kv-file-remove.file-remove {
  border: none;
  background-color: #ef2f2f;
  color: #fff;
  width: 25px;
  height: 25px;
  font-size: 12px;
  border-radius: 4px;
  margin: 0px 4px;
}

.file-drag-handle.file-drag {
  border: none;
  background-color: #fff;
  color: #2580e8;
  width: 25px;
  height: 25px;
  font-size: 12px;
  border-radius: 4px;
  margin: 0px 4px;
}

.kv-file-upload.file-upload {
  border: none;
  background-color: #48bd22;
  color: #fff;
  width: 25px;
  height: 25px;
  font-size: 12px;
  border-radius: 4px;
  margin: 0px 4px;
}

.file-thumb-loading {
  background: none !important;
}

.file-preview-frame.sortable-chosen {
  background-color: #64a5ef;
  border-color: #64a5ef;
  box-shadow: none !important;
}

.fileinput-cancel {
  display: none;
}

#multiplefileupload {
  display: none;
}

.upload_inster {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.upload_inster h5 {
  color: #56AA39;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 50px;
}

.upload_inster p {
  color: #969191;
  text-align: left;
  font-family: Poppins;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 15px;
  margin-bottom: 50px;
}

.upload_inster img {
  width: 100%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 8px;
  background: #FFF;
}

.upload_inster>div {
  flex: 1.3344;
  position: relative;
}

/* upload_photo css */
.upload_photo .kyc_block_main .img_sec1 {
  background: #f1f5ff;
  padding: 10px 50px;
  display: flex;
  justify-content: center;
  border-radius: 8px;
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 90px;
  background: #f1f5ff url("../../assets/img-buygold/x.svg") 462px 6px;
  background-repeat: no-repeat;
}

.upload_photo .kyc_block_main>div img {
  border-radius: 8px;
}

.upload_photo .kyc_block_main a {
  background: #F5C24D;
}

.upload_photo .pan_verification {
  border-bottom: none;
}

.verify_sec {
  position: relative;

  max-width: 476px;
  margin: 0 auto;
  margin-bottom: 130px;
}

.verify_sec label {
  display: block;
  color: #969191;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.verify_sec input {
  border-radius: 12px;
  border: 0.5px solid #999;
  height: 65px;
  width: 100%;

  padding: 10px 40px;
  margin: 0 auto;

}

.verify_sec span {
  position: absolute;
  top: 44px;
  right: 22px;
  color: #000;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;

}

.verify_bank .kyc_block_main a {
  background: #F5C24D;
}

/* verify ifsc */
.very-ifsc .verify_sec {
  margin-bottom: 25px;
}

.very-ifsc .verify_sec span {
  top: 36px;
  right: 15px
}

/* after ifsc verify section css */
.bank-ifsc_verify {
  max-width: 476px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  background: #f1f5ff;
  padding: 20px 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.bank-ifsc_verify h4 {
  color: #565656;

  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.bank-ifsc_verify p {
  color: #969191;

  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.verify_bank .kyc_block_main .bank-ifsc_verify a {
  background: transparent;
  border-radius: 20px;
  border: 1px solid #000;
  color: #000;

  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 5px 20px;
}

.bank_address {
  background: url("../../assets/img-buygold/Rectangle77.svg") -2px 0px;
  background-repeat: no-repeat;
  padding-left: 51px;
}

.note-text {
  background: #f1f5ff;
  padding: 2px 10px;
  max-width: 476px;
  margin: 0 auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.note-text p {
  color: #565656;
  margin: 0;
  text-align: center;
  font-family: Poppins;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;

}

/* procces done css */
.process_done .pan_verification {
  border-bottom: none;
  padding-top: 80px;
}

.bank_procees {
  background: #f1f5ff;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px 20px 0 20px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.bank_procees .bank_ifsc_no {
  display: flex;
  justify-content: space-between;
}

.bank_procees h3 {
  color: #565656;

  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  padding-left: 50px;

}

.bank_procees span {
  color: #969191;

  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.bank_procees p {
  color: #000;

  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  /* 500% */
  letter-spacing: -0.07px;
}

.bank_icon {
  background: url("../../assets/img-buygold/Rectangle77.svg") -2px 0px;
  background-repeat: no-repeat;
  height: 50px;
  display: flex;
  align-items: center;
}

/* bank process done modal popup */
.pan_card#bank_succes .img_cir p {
  color: #969191;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;

}

.pan_card#bank_succes h2 {
  line-height: normal;
}

.pan_card#bank_succes a {
  background: #F5C24D;
}

.pan_card.goldproce#bank_succes .img_cir p {
  color: #000;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 25px;
  margin-top: 25px;
}

.pan_card.pan_card.goldproce#bank_succes a {
  color: #000;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

input {
  outline: none;
}

.img_sec_upload {
  text-align: center;
  margin-bottom: 80px;
}

/* stepper css wizerd */
.wizard,
.wizard .nav-tabs,
.wizard .nav-tabs .nav-item {
  position: relative;
}

.wizard .nav-tabs:after {
  content: "";
  width: 80%;
  border-bottom: solid 2px #ccc;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  top: 38%;
  z-index: -1;
}

.wizard .nav-tabs .nav-item .nav-link {
  width: auto;
  height: 100%;
  margin-bottom: 0;
  background: white;
  border: none;
  color: #56AA39;
  z-index: 10;
  border-top: 5px solid #ECECEC;
  border-radius: unset !important;

}

.wizard .nav-tabs .nav-item .nav-link.active {
  background: #fff;
  border: none;
  color: #FFC233;
  border-top: 5px solid #FFC233;
  border-radius: unset !important;

}

.wizard .nav-tabs .nav-item .nav-link svg {
  font-size: 25px;
}

.mobile_name {
  display: none;
}

.dir_img {
  display: none;
}

.step-number {
  display: none;
}

.moble_digi {
  display: none;
}

/* buy page css */
.congrats {
  text-align: center;
  background: url("../../assets/img-buygold/image31.png");
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 700px;
  margin: 0 auto;
  background-position: top center;

}

.buyersec .hero.kyc_vei {
  margin-bottom: 0;
}

.congrats h2 {
  color: #000;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding-top: 55px;
}

.congrats p {
  color: #666;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.mmtc-pamp {
  border-radius: 10px;
  background: #FBEFD2;
  width: 100%;
  padding: 20px;
}

.Payment-Details {
  border-radius: 10px;
  background: #EEE;
  width: 100%;
  padding: 20px;
}

.box-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  max-width: 920px;
}

.update_blance p {
  color: #999;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
  margin-top: 15px;
}

.update_blance h3 {
  color: #000;

  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;
}

.update_blance a {
  color: #000;

  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
}

.button_section {
  margin-top: 15px;
  float: right;
  width: 39%;

}

.download_img a {
  background: url("../../assets/img-buygold/download.svg") 3px 2px;
  background-repeat: no-repeat;
  padding-left: 30px;
  margin-bottom: 30px;

}

.locker_img a {
  background: url("../../assets/img-buygold/Vectorlocker.svg") 3px 2px;
  background-repeat: no-repeat;
  padding-left: 30px;
}

.balance_sec {
  float: left;
}

.download_img {
  margin-bottom: 15px;

}

.back-home {
  text-align: center;
}

.back-home a {
  border-radius: 12px;
  background: #F5C24D;
  color: #000;
  min-width: 415px;
  --bs-btn-border-color: none;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 40px;
  margin-bottom: 70px;
  padding: 10px;
}

.Payment-Details>div {
  display: flex;
  justify-content: space-between;
}

.Payment-Details h2 {
  color: #000;

  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;

}

.Payment-Details p {
  color: #666;

  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.Payment-Details span {
  color: #666;

  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.heading_text {
  color: #000;

  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px;
  /* 250% */
  letter-spacing: -0.14px;
}




















@media screen and (max-width: 1024px) {
  .footer_main {
    padding: 100px 30px;
  }

  nav .nav-links li a {
    font-size: 14px;
    margin: 0 13px;
  }

  .live_block_main {
    top: 231px;
    right: 18px;
  }

  .hero-content p {
    max-width: 423px;
  }
}

@media screen and (max-width: 991px) {
  .faqs_section p {
    font-size: 14px;
  }

  .pan_card.pan_card.goldproce#bank_succes a {
    font-size: 16px;
  }

  .pan_card.goldproce#bank_succes .img_cir p {
    font-size: 14px;
  }

  .box-section {
    display: block;

  }

  .faqs_section h2 {
    font-size: 16px;
  }

  .faqs_section ul li i {
    right: 14px;
    top: 16px;
  }

  .footer-block-main h3 {
    margin-bottom: 30px;
  }

  .modal-dialog {
    width: 100%;
  }

  .Payment-Details .firset-sec {
    display: block;
  }

  .balance_sec {
    float: none;
  }

  .mmtc-pamp {
    margin-bottom: 20px;
  }

  .button_section {
    margin-top: 15px;
    float: none;
    width: 100%;
  }

  .back-home a {
    min-width: unset;
    width: 100%;
  }

  .live_block_main {
    position: unset;
    width: 100%;
  }

  ul li[data-bs-original-title="Step 2"] {
    display: none;
  }

  ul li[data-bs-original-title="Step 3"] {
    display: none;
  }

  ul li[data-bs-original-title="Step 4"] {
    display: none;
  }

  ul li[data-bs-original-title="Step 5"] {
    display: none;
  }

  .wizard .nav-tabs .nav-item .nav-link {
    border-top: none !important;
    background: transparent !important;

  }

  .moble_digi {
    display: block !important;
  }

  .wizard .nav-tabs .nav-item .nav-link span {
    display: none;
  }

  .pan_verification {
    display: none;
  }

  .mobile_name {
    display: block;
  }

  .dir_img {
    display: block;
  }

  .dir_img {
    position: absolute;
    top: 0;
  }

  .mobile_graph img {
    width: 100%;
  }

  .digi_account {
    display: none;
  }

  .step-number {
    display: block;
  }

  .step-number {
    position: absolute;
    top: 0;
    right: 58px;
  }

  #myTab.justify-content-center {
    justify-content: left;
  }

  .kyc_block_main {
    padding: 20px 20px;
  }

  .wizard .nav-tabs:after {
    content: "";
    width: 59%;
    border-bottom: unset;
    position: absolute;

    top: 50%;
    z-index: -1;
    left: 33px;
    border: 4px solid #56AA39;
    border-radius: 50px;
  }

  .mobile_name h3 {
    color: #000;

    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.08px;
  }

  .mobile_name p {
    color: #969191;

    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
  }

  #myTab.nav-tabs {
    --bs-nav-tabs-border-width: none;
  }

  .mobile_sign {
    display: flex;
  }

  .mobile_sign .sign_in::after {
    margin-right: 7px;
  }

  /* Form Submission Success Popup */
  .sign_b {
    display: none;
  }

  .success-inner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 20px;
  }

  .success-inner-content img {
    width: 50px;
    height: 50px;
  }

  .success-inner-content h2 {
    font-size: 18px;
  }

  .success-inner-content span {
    font-size: 14px;
  }

  .modal-content {
    width: 90%;
    margin: auto;
    padding: 10px;
  }

  /* Owl Prev/Next Buttons  */
  .btns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto !important;
  }

  /* Founder Overlay Text  */
  .founder-text {
    font-size: 12px;
  }

  /* Navbar Section  */
  #menu {
    display: block;
  }

  #menu a button {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    border-radius: 30px;
    color: #000;
    text-decoration: none;
    padding: 10px 18px;
    outline: none;
    border: none;
    transition: all 0.25s ease-out;
    width: 99px;
    height: 38px;
  }

  /* Navbar Section */
  .sticky-nav {
    top: 0;
    z-index: 10;
    width: 100%;
    position: absolute;
  }

  .header-main nav {
    padding: 15px 24px;
    margin: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background: #141414;
    border-radius: 30px;
  }

  nav .nav-logo {
    width: 125px;
    height: 21px;
  }

  /* Navlinks  */
  nav .nav-links {
    display: none;
  }

  /*  modal */
  #mainnav .toggle {
    margin-bottom: 15px;
  }

  #menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
  }

  #menu .menu-hamburger {
    background: url("../../assets/img-buygold/menu.png");
    background-size: cover;
    width: 25px;
    height: 25px;
  }

  .bgxb {
    background-color: #030422 !important;
  }

  .dilglx {
    width: 100% !important;
    border-radius: 0px !important;
    left: 0;
    padding-top: 0px !important;
    height: 100% !important;
    z-index: 99999 !important;
  }

  .dilglx .modal-content {
    width: 100% !important;
    border-radius: 0px !important;
    border: none !important;
    display: block;
  }

  .dilglx .modal-dialog {
    margin: 0px !important;
    height: 100%;
    position: absolute;
    width: 100%;
    display: block;
  }

  .dilglx .modal-content {
    height: 100% !important;
    overflow-y: auto;
  }

  .dilglx .modal-content::-webkit-scrollbar {
    display: none !important;
  }

  .dilglx .modal-header {
    border: none !important;
  }

  .corssx {
    background: none;
    border: none;
    margin-top: 5px;
  }

  .p3 h1 {
    font-size: 64px !important;
    line-height: 105% !important;
    margin-bottom: 40px;
    margin-top: 20px;
    letter-spacing: -0.05em;
  }

  .p3 .exp2 {
    padding-right: 0% !important;
    justify-content: flex-start;
    padding: 0 15px;
  }

  .menu-logo {
    background: url("../../assets/img-buygold/logo.png");
    background-size: cover;
    width: 169px;
    height: 20.77px;
  }

  .corssx {
    background: url("../../assets/img-buygold/cros.png");
    background-size: cover;
    width: 20px;
    height: 20px;
  }

  .banner-slider {
    padding: 0;
    margin-top: 0;
    background: #f5f7f8 !important;
  }

  #mainnav #menu {
    display: block;
    padding: 0;
  }

  #mainnav .nvavm {
    width: 100%;
  }

  #mainnav ul li {
    display: block;
  }

  #mainnav ul li a {
    display: block;
    text-decoration: none;
    transition: all 0.2s linear;
    text-align: left;

    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 40px;
    letter-spacing: 0.03em;
    color: #ffffff;
    padding: 8px 0px;
    text-transform: capitalize;
  }

  #mainnav ul li a:hover {
    text-decoration: none;
  }

  .modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 0 2% !important;
  }

  .menu-contact {
    height: 38px;
    background: #ffffff;
    border-radius: 30px;

    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.03em;
    color: #000;
    outline: none;
    border: none;
    display: block;
    margin: 0px;
    margin-top: 15px;
  }

  #mainnav .accordion-container {
    position: relative;
    height: auto;
    margin: 0px auto;
  }

  #mainnav .accordion-container .set {
    position: relative;
    width: 100%;
    height: auto;
    border-bottom: 2px dashed #414070;
  }

  #mainnav .accordion-container .set:last-child {
    border-bottom: none !important;
  }

  #mainnav .accordion-container .set>a {
    display: block;
    text-decoration: none;
    transition: all 0.2s linear;
    text-align: left;

    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 40px;
    letter-spacing: 0.03em;
    color: #ffffff;
    padding: 8px 0px;
    text-transform: capitalize;
  }

  #mainnav .accordion-container .set>a .arrow {
    float: right;
    margin-top: 3px;
    font-size: 15px;
  }

  #mainnav .accordion-container .set>a .tick {
    padding-right: 5px;
  }

  #mainnav .accordion-container .set>a.active {
    display: block;
    text-decoration: none;
    transition: all 0.2s linear;
    text-align: left;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #fff;
    padding: 15px 0px;
    text-transform: capitalize;
  }

  #mainnav .accordion-container .content {
    display: none;
  }

  #mainnav .accordion-container .content a {
    padding: 0px 0px 0px;
    margin: 0;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 40px;
    letter-spacing: 0.03em;
    color: #c7c7c7;
    text-align: left;
  }

  nav button {
    display: none;
  }

  .graph_sec {
    padding: 20px;
  }

  .respon_block_main label {
    display: block;
  }

  .graph_block_main {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  /* Hero Section  */
  .hero.kyc_vei {
    height: 100%;
  }

  .hero {
    /*height: 100%;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 100px 5%;
    position: relative;
  }

  .live_price {
    padding: 20px;
    position: relative;
  }

  .hero::before {
    background: transparent;
    filter: blur(125px);
    content: "";
    z-index: 0;
    position: absolute;
    width: 100%;
    height: 147px;
    left: 0px;
    top: 0px;
  }

  .hero-content {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    padding-bottom: 50px;
    padding-top: 35px;
    z-index: 3;
  }

  .hero-content h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    color: #eeeeee;
    width: 246px;
    height: 232px;
  }

  .hero-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-img img {
    width: 100%;
    height: 100%;
  }

  /* footer css */
  .footer_main {
    padding: 40px 20px;
  }

  .footer-block-main {
    display: block;
  }

  .live_block_main {
    top: 469px;
  }

  .lab_img {
    margin-top: 30px;
  }
}

/* Responsive  */
@media only screen and (min-width: 1600px) {
  .partners-inner {
    padding: 50px 0%;
    max-width: 1200px;
    margin: auto;
  }

  .partners {
    padding: 100px 12%;
  }

  nav {
    padding: 0px 12%;
  }

  .hero {
    padding: 250px 12% 100px;
  }

  .hero-img img {
    width: 100%;
    height: 100%;
  }



}

#myTab {
  margin-bottom: 50px;
}

.nav-link.active .text-col {
  color: #000;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;

}

#myTab.nav-tabs {
  --bs-nav-tabs-border-width: none;
}

.text-col {
  color: #999;

  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  /* 583.333% */
  letter-spacing: -0.06px;
}

.find_ifsc img {
  width: 100%;
  max-width: 31px;
}

.mobile_graph {
  display: none;
}

@media only screen and (max-width: 767px) {

  /* from css box */
  .live_block_main {
    position: unset;
  }

  .graph_sec {
    padding: 20px;
  }

  .faqs_section {
    padding-top: 35px;
  }

  .live_block_main {
    width: 100%;
    height: 100%;
  }

  .live_price {
    padding: 20px;
    position: relative;
  }

  .hero {
    /*height: 100%;*/
    padding-bottom: 0;
  }

  .card {
    overflow: scroll;
  }

  .modal.show .modal-dialog {
    margin-top: 0;
  }

  .pamp_refer {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 17px;
  }

  .live_block_main {
    padding: 30px 13px;
  }

  .refersh_ic {
    background: url("../../assets/img-buygold/refresh-ccw.svg") 121px 8px;
    background-repeat: no-repeat;
  }

  .refersh_ic h5 {
    margin-right: 50px;
    margin-left: 10px;

  }

  .w3-black button {
    padding: 10px 25px;
  }

  .respon_block_main {
    gap: 7px;
  }

  .respon_block_main input {
    width: 100%;
  }

  .inline_pam_section {
    padding: 5px;
  }

  .lockerbal {
    margin-top: 13px;
  }

  .graph_block_main {
    padding-top: 340px;
  }

  .hero-content h3 {
    font-size: 36px;
    line-height: normal;
    margin-bottom: 35px;
  }

  .hero-content h3 br {
    display: none;
  }

  /* step page css */
  .img_sec {
    left: 15px;
    padding: 0;
  }

  .adhaar_veri .mt-5 {
    margin-left: 0 !important;
  }

  .check_mark {
    top: 137px;
  }

  .live-block1 {
    top: 48px;
    left: 52px;
  }

  .graph_block_main {
    display: none;
  }

  .mobile_graph {
    display: block;
  }

}

@media screen and (max-width: 392px) {
  .img_sec {
    left: 0;
  }
}

::placeholder {
  color: #CCC;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.1px;
  opacity: 100;
}

::-ms-input-placeholder {
  /* Edge 12-18 */
  color: #CCC;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  opacity: 100;
  letter-spacing: -0.1px;
}

.w3-black .main_one {
  border-bottom: 2px solid #FFC233;
  font-weight: 600;
  color: #000;
}

/* new css */

@media (max-width:320px) {
  .inline_pam_section {
    display: block !important;
  }
}