/*
[Table of contents]
 
1. root variable
2. Common styles
3. Full css view

*/
/*==============================
	Fonts
==============================*/
@import "root-style.css";
ul,
ol,
p,
form,
input,
textarea,
select,
pre,
em,
sub,
sup,
canvas,
section,
article,
aside,
img,
a,
li,
iframe,
table,
nav,
header,
footer,
body,
menu,
button {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  outline: none;
  border: 0;
  border-spacing: 0;
  border-collapse: collapse;
  line-height: 1.5;
}
*,
after,
before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
body {
  line-height: 1;
}
a {
  color: var(--black_theam);
  text-decoration: none;
  transition: all 0.2s ease-in-out 0s;
  -webkit-transition: all 0.2s ease-in-out 0s;
  outline: 0;
}
a:hover {
  text-decoration: none;
  color: #1c6dc7;
}
a,
a:hover,
a:focus {
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
html,
body {
  scroll-behavior: smooth;
  -webkit-scroll-behavior: smooth;
}
::selection {
}
p {
  font-weight: 300;
}
:focus {
  /* outline: 1px dotted;
  outline-offset: -4px;
  border-radius: 15px; */
}
img.lazy {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}
img.loaded {
  opacity: 1;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0 0 0px 0;
  color: var(--black_theam);
}
.onnlink {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  cursor: pointer;
  opacity: 0;
}
img {
  max-width: 100%;
}
img {
  height: auto;
  vertical-align: middle;
}

/*==============================
	Common styles
==============================*/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

div {
  transition: all ease 0.5s;
}

body {
  font-family: var(--Montserrat_font);
  font-optical-sizing: auto;
  background-color: #fff;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--black_theam);
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: var(--theam_color);
}

body::-webkit-scrollbar {
  width: 8px;
  background: var(--primary_gradient);
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px #ddc081;
  background: var(--primary_gradient);
}

p {
  margin-bottom: 0px;
}

a {
  text-decoration: none;
  color: var(--black_theam);
}

ul {
  list-style: none;
}

ul li {
  margin-bottom: 0;
}

nav ul li a {
  color: var(--black_theam) !important;
}

/* navbar css start   */

.navbar {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 999;
  background-color: white;
}
.navbar-brand img {
}

.commenr_btn {
    background: #0601fd;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #fff !important;
    overflow: hidden;
    position: relative;
    width: fit-content;
    display: flex;
}
.border_commen {
  border: 1px solid #0601fd;
  background-color: transparent;
  padding: 10px 50px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #0601fd !important;
}
.commenr_btn:hover::before {
  animation: shine 1s ease-out infinite;
}

.commenr_btn::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

.nav_cmn_bx {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: end;
  width: 100%;
  align-items: center;
 
}

.secound_nv ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav ul li a {
  font-weight: 600 !important;
  font-style: Semi Bold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000 !important;
}

.navbar-expand-lg .navbar-nav {
  gap: 20px;
}

.login_area {
  padding: 200px 0 0;
}

.login_area_inner {
  text-align: center;
}

.login_area_inner p {
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-top: 16px;
}

.form_bx label {
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #9f9f9f;
  text-align: start;
  width: 100%;
}
.form_bx_in input {
  width: 100%;
  border: 1px solid #cbcbcb;
  padding: 10px 22px;
  border-radius: 7px;
}
.form_bx_in {
  position: relative;
  display: flex;
  align-items: center;
}
.form_bx_in .eye_btn {
  position: absolute;
  right: 20px;
  margin-bottom: 5px;
}

.eye_btn img {
  width: 20px;
  display: none;
}

.eye_btn .eye_open {
  display: block;
}

.form_bx .commenr_btn {
  padding: 15px 22px;
}
button:disabled,
input[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-control:focus {
  box-shadow: none;
}

footer { 
}
.footer_inner {
  position: relative;
  padding: 25px 0;
}
.footer_inner::before {
  position: absolute;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #e3e3e3;
  content: "";
  left: 0;
}
.footer_inner p {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #a4a4a4;
}

.footer_inner a.reset {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: black;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body::before {
  position: absolute;
  left: 0;
  background: url(../images/noice.png);
  background-position: left;
  background-size: cover;
  width: 50%;
  height: 100%;
  top: 0;
  content: "";
  z-index: -1;
}

.dashboard_area {
  padding: 160px 0 120px;
}

.container_dash {
  max-width: 713.6724853515625px;
  margin: auto;
}

.vb_selector {
  width: 200px;
  font-family: sans-serif;
  position: relative;
}

.vb_selector_header {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #323232;
}

.vb_arrow {
  transition: 0.3s;
}

.vb_selector.active .vb_arrow {
  transform: rotate(180deg);
}

.vb_selected_value {
  margin-top: 10px;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
}

.vb_selector_list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  display: none;
}

.vb_selector_list li {
  padding: 0px 0 22px;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
}

.vb_selector_list li:hover {
  color: #6c63ff;
}

.vb_selector.active .vb_selector_list {
  display: block;
  position: absolute;
  background: #f4f4f4;
  border: 1px solid #e9e9e9;
  padding: 15px 15px;
  width: 100%;
  max-width: 182px;
  border-radius: 8px;
  z-index: 2;
}
 
.form_bx_inner label {
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #9f9f9f;
  text-align: start;
  width: 100%;
  margin-bottom: 10px;
}

.form_bx_inner_mn input {
  width: 100%;
  border: 1px solid #cbcbcb;
  padding: 16px 22px;
  border-radius: 7px;
  text-align: end;
}
.sell_buy_bx .secound_show_bx .form_bx {
  margin: auto;
  margin-top: 30px;
  max-width: 400px;
}
.form_bx_inner_mn {
  display: flex;
  align-items: center;
}

.img-dropdown {
  position: absolute;
  width: fit-content;
  padding: 0 10px;
}

.img-dropdown-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.img-box {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-arrow {
  width: 8px;
  height: 9px;
  border-right: 3px solid #999;
  border-bottom: 3px solid #999;
  transform: rotate(45deg);
  margin-left: 13px;
  transition: 0.3s;
}

/* rotate arrow */
.img-dropdown.active .img-arrow {
  transform: rotate(-135deg);
}

/* dropdown menu */
.img-dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: none;
  position: absolute;
  z-index: 2;
}

.img-dropdown-menu li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  cursor: pointer;
}

.img-dropdown-menu li img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.img-dropdown-menu li:hover {
  background: #f5f5f5;
}

/* show menu */
.img-dropdown.active .img-dropdown-menu {
  display: block;
}

.form_bx_inner p {
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: right;
  color: #9f9f9f;
  margin-top: 10px;
}

.form_bx_inner p.card_p {
  text-align: center;
  margin-top: 30px;
} 
 

/* Home Page css  start   */
 
 
.commen_btn_border{
  border: 3px solid #7B7B7B; 
font-weight: 600; 
font-size: 18px; 
line-height: 100%;
letter-spacing: 0%;
color: #969696;
padding: 10px 22px;
display: flex;
justify-content: center;
background-color: #FFFFFF;
width: fit-content;
margin: auto;
box-shadow: 4px 4px 0px 0px #9F9F9F4D;
border-radius: 10px;
margin-top: 26px;
}

@keyframes rotate1 {
 0%{
    transform: rotate(0deg);
   }
100%{
    transform: rotate(360deg);
   }
}


@keyframes re-rotate1 {
 0%{
    transform: rotate(360deg);
   }
100%{
    transform: rotate(0deg);
   }
}
 

.reward_bx{
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
    text-align: center;
    margin-top: 60px;
}

.reward_bx h3{ 
font-weight: 600; 
font-size: 30px; 
line-height: 40px;
letter-spacing: 0%;
text-align: center;
 color:#000;
}
.reward_bx h3 span{
     color: #0500FF;
}



/* hero area css */

._hero_area{
    padding: 152px 0 70px;
    position: relative;
}
._hero_area::before{
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  width: 638.16px;
  height: 770.42px;
  z-index: 1;
  background: url('../images/hand_mbl.png');
}
._hero_area_inner{
  padding-left: 80px;
}
._hero_area_inner h1{ 
font-weight: 600; 
font-size: 60px; 
line-height: 100%;
letter-spacing: 0%;

}
._hero_area_inner p{ 
font-weight: 600; 
font-size: 25px; 
line-height: 20px;
letter-spacing: 0%;
margin: 37px 0;

}

._hero_area_inner_inner{
  background: #B3B2FF;
   border-radius: 16px;
   padding: 28px 38px;
   display: flex;
   align-items: center;
   gap: 20px;
    width: 100%;
  max-width: 467px;
   
}

._hero_area_inner_inner b{ 
font-weight: 600; 
font-size: 30px; 
line-height: 100%;
letter-spacing: 0%;

}
._hero_area_inner_inner span{ 
font-weight: 400;
font-style: Italic;
font-size: 14px; 
line-height: 20px;
letter-spacing: 0%;
color: #3D3C70;
}

._hero_area_inner .buttons{
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 30px 0 0  0;
}

._hero_area_inner .buttons a{
  border-radius: 8px;
  padding: 10px 17px;
}

._hero_area_inner1 .img_vdeo{
  width: 100%;
  max-width: 308px;
  height: 308px;
}

._hero_area_inner1 .img_vdeo video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

._hero_area_inner1{
      margin-top: 13px;
    display: inline-grid;
    grid-template-columns: repeat(2, 2fr);
}

._hero_area_counts{
  display: flex;
  align-items: center;
  gap: 80px;
  margin-top: 60px;
  z-index: 2;
  position: relative;
}
._hero_area_counts ._bx_in b{ 
font-weight: 700; 
font-size: 26px; 
line-height: 20px;
letter-spacing: 0%;
color: #010314;
  text-align: center;
display: flex;
justify-content: center;
margin-bottom: 20px;
}

._hero_area_counts ._bx_in {
  display:inline-block;
}

._hero_area_counts ._bx_in span{ 
font-weight: 400; 
font-size: 19px; 
line-height: 20px;
letter-spacing: 0%;
  display: flex;
  text-align: center;
}
/* invest_sec_area */


.invest_sec_area_bx h3{ 
font-weight: 700; 
font-size: 26px; 
line-height: 20px;
letter-spacing: 0%;
text-align: center;
 color: black;
}

.invest_sec_area_bx p{ 
font-weight: 400; 
font-size: 16px; 
line-height: 20px;
letter-spacing: 0%;
text-align: center;
margin-top: 10px;

}

.invest_sec_area_bx .image{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.invest_sec_area_bx .image::before{
  position: absolute;
  content: "";
  background: #E76F22;
filter: blur(14px);
width: 168.603515625px;
height: 17.15625px; 
bottom: 0;
z-index: -1;
}

.invest_sec_area_bx.color2 .image::before{
background: #4DC23D;

}
.invest_sec_area_bx.color3 .image::before{
background: #35A49D;


}
/* simple_pay_area */
.simple_pay_area{
  padding: 100px 0 0;
  position: relative;
  z-index: 1;
}
.simple_pay_area::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 1000px;
  bottom: 0;
  z-index: -1;
  background: url('../images/union_vactor1.svg');

}
.simple_pay_area_inner h3{ 
font-weight: 600; 
font-size: 60px;  
line-height: 100%;
letter-spacing: 0%;

color: #000;
}
.simple_pay_area_inner{
      padding-left: 80px;
}

.simple_pay_area_inner ul{
  padding-left: 0;
  margin-top: 70px;
}
.simple_pay_area_inner ul li{
  margin-bottom:20px ;
}


/* _debit_area_inner */

._debit_area_inner{
  text-align: center;
}

._debit_area{
  padding: 100px 0;
  position: relative;
  z-index: s1;
  /* height: 1140px; */
}

._debit_area::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
background: linear-gradient(180deg, rgba(182, 180, 255, 0) 0%, #B6B4FF 51.44%, rgba(182, 180, 255, 0) 100%);
filter: blur(300px);
z-index: -2;
  top: 0;

}

._debit_area::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url('../images/card_fly_vactor.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: 0;
z-index: -1;

}

._debit_area_inner{
  padding-top: 200px;

}



._debit_area_inner h2{ 
font-weight: 600; 
font-size: 60px; 
margin-top: 40px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
color: black;
}


._debit_area_inner ul{
      display: inline-grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 20px;
    align-items: start;
    justify-content: start;
    margin-top: 50px;
}
._debit_area_inner ul li{
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px; 
font-weight: 400; 
font-size: 22px; 
line-height: 100%;
    margin-bottom: 10px;

letter-spacing: 0%;

}
._debit_area_inner ul li i{
  color: #0A6800;
}

/*  _apps_area*/

._apps_area {
  /* background: #f5f5f7; */
  overflow: hidden;
}
._apps_area_inner h2{ 
font-weight: 600; 
font-size: 60px; 
line-height: 100%;
letter-spacing: 0%;
  text-align: center;
color: black;
margin-bottom: 37px;
}

._apps_area .apps_wrapper {
  overflow: hidden;
  position: relative;
}

._apps_area .apps_track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: scrollApps 20s linear infinite;
}

._apps_area .app_item img {
  height: 42px;
  object-fit: contain;
  opacity: 0.8;
  transition: 0.3s;
}

._apps_area .app_item img:hover {
  opacity: 1;
}

/* Animation */
@keyframes scrollApps {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* _travel_st_area */

._travel_st_area {

  position: relative; 
  padding: 100px 0;
  z-index: 1;
}
._travel_st_area::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/travel_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    z-index: -2;
    bottom: -18%;

}
._travel_st_area::after{
    background: linear-gradient(180deg, rgb(224 245 250 / 67%) 0%, #f8f8ff 100%);
    height: 141px;
    position: absolute;
    content: "";
    width: 100%;
    z-index: -1;
    transform: rotate(180deg);
    top: 13%;
}
._travel_st_area .container::after{
  position: absolute;
  left: 0;
  content: "";
  background: #FFFFFF99;
filter: blur(150px);
width: 50%;
top: 0%;
height: 100%;
z-index: -1;
border-radius: 100px;
 
}
._travel_st_area .container::before{
      background: linear-gradient(180deg, rgb(224 245 250 / 88%) 0%, #ffffff 100%);
    height: 141px;
    position: absolute;
    content: "";
    width: 100%;
    z-index: -1;
    transform: rotate(0deg);
    bottom: -25%;
    left: 0;

}
._travel_st_area h2{ 
font-weight: 600; 
font-size: 60px; 
line-height: 100%;
letter-spacing: 0%;
text-align: center;
  color: black;
}
._travel_st_area p.text-muted{  
font-weight: 400; 
font-size: 17px; 
line-height: 20px;
letter-spacing: 0%;
 margin-top: 15px;

}
._travel_st_area .travel_card {
  text-align: center;
}

._travel_st_area .travel_card img {
  height: 70px;
  margin-bottom: 10px;
}

._travel_st_area .travel_card h6 {
  
  margin-bottom: 15px; 
font-weight: 600; 
font-size: 25px; 
color: black;
line-height: 100%;
letter-spacing: 0%;
text-align: center;

}

._travel_st_area .travel_card p { 
font-weight: 450; 
font-size: 16px; 
line-height: 120%;
letter-spacing: 0%;
text-align: center;
  color: black;
  width: 100%;
  max-width: 250px;
  margin: auto; 
}
 
._travel_st_area .travel_img_wrap {
  position: relative;
  display: inline-block;
}

._travel_st_area .travel_img_wrap::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #4facfe, #00f2fe);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.2;
}

._travel_st_area .travel_img_wrap img {
  position: relative;
  z-index: 1;
  max-width: 300px;
}
 /* _security_area */

._security_area{
  padding: 100px 0;
  margin-top: 10%;
}
 
._security_area_inner1 h2{ 
font-weight: 600; 
font-size: 50px; 
line-height: 110%;
letter-spacing: 0%;
  color: black;
}
._security_area_inner1 p{
  font-size: 19px;
  padding: 20px 0;
  line-height: 110%;
  font-weight: 450;
  color: #010314;
}

._security_area_inner1 ul{
  padding-left: 0;
}
._security_area_inner1 ul li{
      text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    margin-bottom: 25px;
    letter-spacing: 0%;
}
._security_area_inner1 ul li i {
    color: #0A6800;
}


/* _loyalty_area */

._loyalty_area { 
}
 
._loyalty_area .loyalty_box {
  background: #0500FF;
  border-radius: 16px;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  color: #fff;
  z-index: 1;
}
 
._loyalty_area .loyalty_box::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 400px;
  right: 10%;
  bottom: 20%;
    background: url('../images/up_shap.svg');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    background-position: bottom;
} 
._loyalty_area .loyalty_left {
  position: relative;
}

._loyalty_area .main_logo {
  max-width: 100%;
}

._loyalty_area .brand_text {
  font-size: 60px;
  font-weight: 700;
  margin-top: 20px;
  background: linear-gradient(90deg, #00ffcc, #66ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
._loyalty_area .loyalty_content h2 { 
font-weight: 600; 
font-size: 60px; 
line-height: 100%;
letter-spacing: 0%;
color: white;

}

._loyalty_area .loyalty_content h2 span {
 
}

._loyalty_area .loyalty_content p {
  color: #dcdcdc; 
  margin-top: 20px;
  max-width: 420px; 
font-weight: 400; 
font-size: 16px; 
line-height: 27px;
letter-spacing: 0%;

}
 
._loyalty_area .btn {
  border-radius: 6px;
  padding: 6px 14px;
}
 
 
/* _new_footer */

._new_footer { 
  padding: 15px 0 30px;
}
 
._new_footer .footer_menu li {
  list-style: none;
}

._new_footer .footer_menu a {
  text-decoration: none;
  color: #8a8f98;
  font-size: 15px;
  transition: 0.3s; 
font-weight: 400; 
font-size: 14px; 
line-height: 22.4px;
letter-spacing: 0%; 

}

._new_footer .footer_menu a:hover {
  color: #000;
}
 
._new_footer .footer_divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #7c6cff, transparent);
}
 
._new_footer .small_text {
  font-size: 16px;
  font-weight: 450;
  color: #9aa0a6;
}
 
._new_footer .community_badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid #dcdcdc;
  border-radius: 20px;
  font-size: 12px;
  color: #555;
  background: #fff;
  font-weight: 450;
}

._new_footer .community_badge .dot {
  width: 6px;
  height: 6px;
  background: #00c853;
  border-radius: 50%;
}
 
._new_footer .footer_social img {
  width: 25px;
  height: 25px; 
  transition: 0.3s;
}

._new_footer .footer_social img:hover {
  opacity: 1;
}
 
@media (max-width: 768px) {
  ._new_footer .footer_menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  ._new_footer .d-flex {
    text-align: center;
    justify-content: center !important;
  }
}







.commen_card_area{
  padding: 120px 0  0 150px;
  background-color: #E6E5FF;
 
}

.commen_card_area_inner span{ 
font-weight: 600; 
font-size: 20px; 
line-height: 100%;
letter-spacing: 0%;
color: black;
}

.commen_card_area_inner h2{ 
font-weight: 600;  
font-size: 52px; 
line-height: 120%;
letter-spacing: 0%;
color: #000000
;
margin-top: 10px;
}

.commen_card_area_inner p{ 
font-weight: 600; 
font-size: 18px; 
line-height: 30px;
letter-spacing: 0%;
margin-top: 15px;

}

.commen_card_area_inner a.commenr_btn{
  display: flex;
  width: fit-content;
     border-radius: 10px;
     padding: 18px 53px;
     margin-top: 30px;
}

.commen_card_area.assets_bx{
  background-color: #FFFCE5;
padding: 90px 150px 90px 0;

}

.commen_card_area.assets_bx .commen_card_area_inner h2{
  color: #884900;
}

.commen_card_vactor{
position: relative;
    height: 720px;
display: flex;
align-items: center;
justify-content: center;
z-index: 1;
}

.commen_card_vactor .cards_img{
  position: absolute;
  right: 0;
  /* top: 0; */
  z-index: -1;
}

.smart_privet_k_area{
  padding: 100px 0;
}

.smart_privet_k_area_commen_bx{
  padding: 100px;
border: 1px solid #00000066;
border-left: 0;

}

.smart_privet_k_area_commen_bx p{ 
font-weight: 600; 
font-size: 23px; 
line-height: 33px;
letter-spacing: 0%;
color: #323232;

}

.smart_privet_k_area_commen_bx1{
    padding: 100px;
border: 1px solid #00000066;
border-left: 0;
border-right: 0;
height: 100%;
}

.smart_privet_k_area_commen_bx1 span{
  display: flex;
  align-items: center; 
font-weight: 600; 
font-size: 23px; 
line-height: 30px;
letter-spacing: 0%;
color: #323232;
}

.smart_privet_k_area_commen_bx1 h3{ 
font-weight: 600; 
font-size: 60px; 
line-height: 100%;
letter-spacing: 0%;
color: #0500FF;
margin-top: 10px;
}


.smart_privet_k_area_inn2{
    padding: 100px 0;
}

.smart_privet_k_area_inn2_privet{
  display: flex;
  align-items: center; 
}
.smart_privet_k_area_inn2_privet h3{ 
font-weight: 600; 
font-size: 58px; 
line-height: 120%;
letter-spacing: 0%;
  color: black;
  width: 50%;
}
.smart_privet_k_area_inn2_privet p{ 
font-weight: 600; 
font-size: 22px; 
line-height: 33px;
letter-spacing: 0%;
color: #323232;
width: 30%;
}

.smart_privet_k_area_inn2_bx span{
  display: flex;
   width: fit-content; 
font-weight: 600;
font-style: Semi Bold;
font-size: 70px; 
line-height: 100%;
letter-spacing: 0%;
color: #0500FF;
}
.smart_privet_k_area_inn2_bx p{ 
font-weight: 600; 
font-size: 18px; 
line-height: 30px;
letter-spacing: 0%;
color: #323232;
margin-top: 10px;
}

.smart_privet_k_area_inn2_privet{
  margin-bottom: 50px;
}
.smart_privet_k_area_inn2{
  overflow-x: hidden;
}

.bio_met_bx .smart_privet_k_area_commen_bx1{
  border-right:1px solid #00000066;
}

.crypto_safe_bx h4{ 
font-weight: 600; 
font-size: 20px; 
line-height: 30px;
letter-spacing: 0%;
color: #323232;
text-align: center;
}

.crypto_safe_bx .bx_inner{
  display: flex;
  align-items: center;
  margin-top: 30px;
  gap: 50px;
}
.crypto_safe_bx .bx_inner .bx span{
  display: flex;
  width: 100%; 
font-weight: 600; 
font-size: 16px; 
line-height: 30px;
letter-spacing: 0%;
color: #323232;
}

.crypto_safe_bx .bx_inner .bx img{ 
height: 38px; 
border-radius: 0;
object-fit: contain;
margin-bottom: 10px;
}

.bio_met_bx .smart_privet_k_area_commen_bx{
  border-right: 0;
}


 

.footer_web {
  padding: 0 0 50px; 
  margin-top: 0;
}

.footer_web_inner {
background: #E9E9E9;
  border-radius: 60px;
  padding: 50px;
}

.footer_title { 
font-weight: 600; 
font-size: 22px; 
line-height: 30px;
letter-spacing: 0%;
color: #323232;
margin-bottom: 20px;
text-align: left;
}

.footer_links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: flex;
  gap: 40px;

}
.footer_headding{ 
font-weight: 600; 
font-size: 60px; 
line-height: 140%;
letter-spacing: 0%;
color: #0500FF;
text-align: left;
width: 80%;
opacity: 0.4;
margin-bottom: 50px;
}
.footer_links li {
  margin-bottom: 10px;
}

.footer_links li a { 
font-weight: 600; 
font-size: 16px; 
line-height: 30px;
letter-spacing: 0%;
color: #323232;
  transition: 0.3s ease;
text-align: left;

}

.footer_links li a:hover {
  color: #000;
}

.footer_bottom {
  font-size: 13px;
  color: #777;
  margin-top: 1%;
}

.footer_logo_box {
  background: #ddd;
  border-radius: 30px;
  padding:100px 20px;
  height: 100%;
}

.footer_brand {
  font-weight: 600;
  color: #1a2cff;
}

.footer_logo_box img{
  width: 100%;
  max-width: 150px;
}

.footer_links_wrapper{
  height: 100%;
  padding: 60px 0 0 ;
}

.footer_bottom  p{ 
font-weight: 600; 
font-size: 16px; 
line-height: 30px;
letter-spacing: 0%;
color: #A9A9A9;
}


.navbar-nav a.commenr_btn{
  padding: 10px 35px;
}






.lang-dropdown {
  position: relative;
    padding: 0.2rem 0;
  display: inline-block;
}

.lang-toggle {
  background: transparent;
  border: none;
  color: black;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--Montserrat_font);
  font-size: 16px;
  text-align: center;
}

.lang-menu {
    position: absolute;
    top: 142%;
    right: 0;
    background: #e6f0fa;
    padding: 8px 20px;
    margin: 10px 0 0;
    border-radius: 28px;
    display: none;
    min-width: 120px;
    z-index: 999;
    overflow: hidden;
    height: 40vh;
    overflow-y: scroll;
}

.lang-menu::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
    border-radius: 50px;
    background-color: #F5F5F5;
}

.lang-menu::-webkit-scrollbar {
    width: 8px;
    background: #e7740000;
}

.lang-menu::-webkit-scrollbar-thumb {
    border-radius: 50px;
    -webkit-box-shadow: inset 0 0 6px #e7740000;
    background: #6347f5;

}





.lang-menu li {
  padding: 8px 16px;
  cursor: pointer;
  color: #000;
}

.lang-menu li:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lang-dropdown.active .lang-menu {
  display: block;
}
.secound_nv ul.fs_ul {
  display: flex;
  align-items: center;
  gap: 40px;
}








.navbar.fixed{
  background-color: white;
  position: fixed;
      top: 0;
    width: 100%;
    box-shadow: 0 0.125rem 1rem 3px rgba(0, 0, 0, 0.1);
     
    animation: simple-rotate 1s linear alternate;
    z-index: 2222;
} 
 
   @keyframes simple-rotate {
    0% {
    transform: translateY(-90px);
}
100% {
    transform: translateY(0px);
}
   }
     

   .form_bx1 p{  
font-weight: 400; 
font-size: 18px; 
line-height: 100%;
letter-spacing: 0%;
text-align: center;
color: #A4A4A4;
   }

      .form_bx1 a{  
font-weight: 700;  
color: #0500FF;
   }

   .main_reg_form{
    margin-top: 40px;
   }

   .navbar-nav li{
    display: flex;
    align-items: center;
   }
   .commenr_btn_border{
        background: transparent;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #0601FD !important;
    overflow: hidden;
    position: relative;
    width: fit-content;
    display: flex;
    border: 1px solid #0601FD;

   }

   .commenr_btn_border:hover{
    background-color: #0601FD;
    color: #fff !important;

   }
       .navbar .commenr_btn i{
      display: none;
    }
   .navbar .commenr_btn_border i{
      display: none;
    }

    .shadow_bx{
      box-shadow: 4px 4px 40px 0px #00000021;
    padding: 60px 40px;
    border-radius: 10px;
    }

    .forget_pass_a{
      color: #A4A4A4; 
font-weight: 500; 
font-size: 16px; 
line-height: 100%; 
text-align: end;
display: flex;
justify-content: end;

    }
._top_header{
  background-color: #0500FF;
  padding: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
}