/*
[Table of contents]

1. Fonts
2. root variable
3. Common styles
4. header area styles 
5. Responcive 

*/
/*==============================
	Fonts
==============================*/
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
@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: #2586f1;
  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(--white-color);
}
.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(--TT_font);
  font-optical-sizing: auto;
  background-color: var(--theam_color);
  width: 100%;
  height: 100%;
  color: var(--white-color) !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  color: var(--white-color);
}



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(--white);
}

ul {
  list-style: none;
}

ul li {
  margin-bottom: 0;
}

nav ul li a {
  color: white !important;
}

/* navbar css start   */

.navbar {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 999;
}
.navbar-brand img {
  width: 173.55px;
  height: 36px;
}

.commenr_btn {
  padding: 10px 15px;
  font-family: var(--space_font);
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  background-color: var(--button_bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content; 
  transition: all 0.3s ease-in-out; 
   overflow: hidden; 
  cursor: pointer;
  position: relative;
}

.commenr_btn:hover::before {
  animation: shine 1.0s 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: space-between;
  width: 100%;
  align-items: center;
  padding-left: 24%;
}

.navbar-expand-lg .navbar-nav .nav-link {
  font-family: var(--space_font);
  font-weight: 500;
  font-size: 16px;
  padding: 15px 20px;
}
.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-toggle {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--space_font);
  font-size: 16px;
  text-align: center;
}

.lang-menu {
  position: absolute;
  top: 142%;
  right: 0;
  background: #ffffff;
  padding: 8px 20px;
  margin: 10px 0 0;
  border-radius: 0 0 0 0;
  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;
}

/* home page css start   */

.hero_area {
  padding: 130px 0 0;
  position: relative;
  z-index: 1;
}
.hero_area::before {
  position: absolute;
  content: "";
  height: 700px;
  width: 700px;
  right: 5%;
  top: 30px;
  background: url("../images/after_shap_hero.svg");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
      animation: opeanimation 1.8s infinite ease-in-out alternate;
}

.hero_area_inner h1 {
  font-family: var(--TT_font);
  font-weight: 500;
  font-size: 38px;
  line-height: 70px;
  letter-spacing: -1%;
  color: var(--white-color);
}

.hero_area_inner h1 .first_spn {
    background-color: #d1874b;
    padding: 0px 15px;
    border-radius: 12px;
    height: 61px;
    line-height: 59px;
}
.hero_area_inner h1 .secound_spn {
  background-color: #2da0f6;
  padding: 8px 15px;
  border-radius: 12px;
}

.hero_area_inner h1 .third_spn {
  background-color: #c77fe6;
  padding: 8px 15px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.hero_area_inner h1 .first_spn{
overflow: hidden;
    position: relative;
    display: inline-flex;
    width: fit-content;
}
.hero_area_inner h1 .first_spn::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.4;
    animation: shine 1.0s ease-out infinite;
}
 



.hero_area_inner_bx .bx {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white-color);
}

.hero_area_inner_bx {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
}

.hero_area_inner_bx1 {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
}
.hero_area_inner_bx1 p {
  font-family: var(--TT_font);
  font-size: 20px;
  font-weight: 500;
}

.hero_area_inner_bx1 span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green_grad);
  width: 40px;
  height: 40px;
  border-radius: 100px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.hero_area_inner_bx1 span::before {
  position: absolute;
  left: -10px;
  bottom: -10px;
  content: "";
  border: 2px solid #5cca61;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  z-index: -1;
  transition: all ease 0.5s;
  
}
.hero_area_inner_bx1 span:hover::before{
    left:-3px;
  bottom:-3px;
  width: 45px;
  height: 45px;
}
.hero_area_inner_bx1 span img{
  animation: jello-horizontal 2s both infinite;
}

@keyframes jello-horizontal {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
}

40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
}
50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
}
65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
}
75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
}
100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
}
.hero_area_inner_bx1 p {
  width: 90%;
}
.build_trust_area {
  position: relative;
  background: url("../images/trust_area_shp.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  padding: 200px 0 100px;
  overflow-x: clip;
  margin-top: -100px;
}
body {
  overflow-x: hidden;
}

.build_trust_area::before {
  position: absolute;
  left: -30%;
  top: 0;
  content: "";
  width: 757px;
  height: 800px;
  opacity: 0.5;
  background-color: #124b60;
  border-radius: 100%;
  filter: blur(130px);
  animation: round_animation 5s linear infinite;
  z-index: -1;
}

.build_trust_area_inner h2 {
  background: var(--green_grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--TT_font);
  font-weight: 500;
  font-style: Medium;
  font-size: 45px;
  line-height: 62px;
  letter-spacing: 2px;
  width: 100%;
  max-width: 510px;
}
.shap_build {
  position: absolute;
  right: -40%;
      animation: up_down 4s linear infinite;
  top: -40%;
}

.build_trust_area_inner p {
  font-family: var(--TT_font);
  font-weight: 400;
  font-style: Regular;
  font-size: 17px;
  line-height: 37px;
  letter-spacing: 0%;
  margin-top: 40px;
  margin-bottom: 50px;
}

.bx_build h3 {
  font-family: var(--TT_font);
  font-weight: 400;
  color: #d1874b;
  font-size: 16px;
}
.bx_build span {
  font-family: var(--TT_font);
  font-weight: 700;
  font-size: 110px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  margin: 15px 0;
  display: block;
  background: var(--green_grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bx_build p {
  margin-bottom: 0;
  margin-top: 0;
  font-size: 16px;
}

.build_trust_area_inner1 {
  padding: 100px 0 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bx_build {
  position: relative;
}
.bx_build .low_eng {
  position: absolute;
  left: 40%;
  font-size: 24px;
  width: 120px;
  top: 20px;
}

.responcibal_gover_area {
  padding: 60px 0;
}
.responcibal_gover_area_inner h2 {
  font-family: var(--TT_fon);
  font-weight: 500;
  font-style: Medium;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--white-color);
}

.responcibal_gover_bx {
  background-color: #6161611a;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  height: 100%;
}
.responcibal_gover_bx img {
  position: absolute;
  top: 0;
  left: 0;
  height: 220px;
  object-fit: cover;
}

.responcibal_gover_bx .content {
  padding: 223px 24px 36px;
  
  transition: all ease 0.5s;
}
.responcibal_gover_bx .content h3 {
  font-family: var(--TT_font);
  font-weight: 500;
  font-style: Medium;
  font-size: 25px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #f9f9f9;
}
.responcibal_gover_bx .content h3 i {
  margin-left: 5px;
}
.responcibal_gover_bx .content p {
  font-size: 16px;
  font-family: var(--TT_font);
  font-weight: 400;
  font-style: Regular;
  line-height: 26px;
  letter-spacing: 0%;
  margin-top: 12px;
}
.responcibal_gover_bx img{
  transition: all ease 0.5s;
}
.responcibal_gover_bx:hover{ 
}
.responcibal_gover_bx:hover img{
   transform: scale(1.1);
}
.foundnational_area {
  padding: 100px 0 00px;
  position: relative;
  z-index: 1;
}

.foundnational_area::before {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 600px;
  content: "";
  background: linear-gradient(
    360deg,
    #0a2833 56.74%,
    rgba(10, 40, 51, 0) 121.35%
  );
  z-index: 2;
}
.foundnational_area::after {
  position: absolute;
  bottom: 100px;
  width: 492px;
  height: 492px;
  content: "";
  background: url("../images/round-coin.png");
  background-repeat: no-repeat;
  background-position: center;
  left: 32%;
  transform: translate(-50% 0);
  z-index: 1;
      animation: fa_snak 70s infinite ease-in-out alternate;
}
@keyframes fa_snak {
  0% {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
}
4% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
}
8%, 24% {
    -webkit-transform: rotate(-18deg);
    transform: rotate(-18deg);
}
12%, 28% {
    -webkit-transform: rotate(18deg);
    transform: rotate(18deg);
}
16% {
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
}
20% {
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
}
32% {
    -webkit-transform: rotate(-14deg);
    transform: rotate(-14deg);
}
36% {
    -webkit-transform: rotate(12deg);
    transform: rotate(12deg);
}
40%, 100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
}
.foundnational_area_inner .span1 {
  font-size: 18px;
  font-weight: 400;
}
.foundnational_area_inner h2 {
  font-size: 46px;
  font-weight: 900;
}

.foundnational_area_inner_inner p {
  font-size: 25px;
}

.foundnational_area_inner1 ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}
.foundnational_area_inner1 ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.foundnational_area_inner1 ul li img{
transition: all ease 0.5s;
}
.foundnational_area_inner1 ul li:hover img{
   transform: translateY(-5px);
}
.foundnational_area_inner1 ul li img {
  width: 30px;
}

.foundnational_area_inner1 ul li span {
  background: linear-gradient(
    139.28deg,
    #f40323 14.33%,
    #f40323 14.33%,
    #ff03b1 93.49%
  );
  font-weight: 600;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.foundnational_area_inner1 ul li:nth-child(2) span {
  background: linear-gradient(
    272.81deg,
    #f06051 1.06%,
    #f06051 32.58%,
    #facf7c 74.5%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.foundnational_area_inner1 ul li:nth-child(3) span {
  background: linear-gradient(135.07deg, #3ccb9a 4.18%, #6cca44 95.45%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.foundnational_area_inner1 ul li:nth-child(4) span {
  background: linear-gradient(180deg, #f1b30b 0%, #ef600a 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.foundnational_area_inner1 ul li:nth-child(5) span {
  background: linear-gradient(151.81deg, #ec7601 12.63%, #d20462 90.82%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.powerd_coin_area_inner h2 {
  text-align: center;
  margin: auto;
  background: linear-gradient(
    272.81deg,
    #f06051 1.06%,
    #f06051 32.58%,
    #facf7c 74.5%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-family: var(--TT_font);
  font-weight: 600;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 12px;
}
.powerd_coin_area_inner h2 span {
  font-size: 35px;
}

.powerd_coin_area {
  margin-top: -250px;
  position: relative;
  z-index: 22;
}
.powerd_coin_area::before {
  position: absolute;
  left: 30%;
  content: "";
  top: 57%;
  background: var(--yellow_grad);
  width: 60px;
  height: 60px;
  border-radius: 100%;
  filter: blur(30px);
}
.powerd_coin_area::after {
  position: absolute;
  right: 20%;
  content: "";
  top: 10%;
  background: var(--yellow_grad);
  width: 60px;
  height: 60px;
  border-radius: 100%;
  filter: blur(30px);
}
.powerd_coin_area_inner p {
  text-align: center;
  font-size: 20px;
  width: 100%;
  max-width: 800px;
  margin: auto;
}
.powerd_coin_area_inner {
  z-index: 1;
  position: relative;
}

.powerd_coin_area_inner::before {
  position: absolute;
  left: 200px;
  content: "";
  width: 150px;
  height: 150px;
  background: url("../images/coins-1.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: -20px;
  z-index: -1;
      animation: anim1 5.6s linear infinite;
}

@keyframes anim1 {
  0% {
    transform: rotate(0deg);
}
50% {
    transform: rotate(10deg);
}
100% {
    transform: rotate(0deg);
}
}
.powerd_coin_area_inner::after {
  position: absolute;
  right: 200px;
  content: "";
  width: 200px;
  height: 200px;
  background: url("../images/coins-2.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 170px;
  z-index: -1;
        animation: anim1 5.6s linear infinite;
}

.powerd_coin_area_inner .p2 {
  text-align: center;
  font-size: 16px;
  width: 100%;
  max-width: 700px;
  margin: auto;
  margin-top: 180px;
}

footer {
      padding: 120px 0 270px;
  text-align: center;
  overflow: hidden;
  position: relative;
}
footer::before {
  position: absolute;
  right: -20%;
  top: 42%;
  content: "";
  width: 400px;
  height: 400px;
  opacity: 0.5;
  background-color: #124b60;
  border-radius: 100%;
  filter: blur(50px);
  animation: up_down  6s linear infinite;
  z-index: -1;
}
footer::after {
  position: absolute;
  left: 0%;
  bottom: -21%;
  content: "";
  width: 170px;
  height: 450px;
  background: linear-gradient(
    140.41deg,
    rgba(13, 15, 19, 0) -23.39%,
    #dab607 75.33%
  );
  border-radius: 0;
  filter: blur(50px);
  z-index: -1;
  transform: rotate(20deg);
  animation: up_down  6s linear infinite;
}
footer .container::before{
    position: absolute;
  left: 20%;
  top: 30%;
  content: "";
  width: 10px;
  height: 10px;
  background: #F70342;
  border-radius: 10px;
  filter: blur(0);
  z-index: 1;
  transform: rotate(20deg); 
        animation: opeanimation 1.2s infinite ease-in-out alternate;
}
footer .container::after{
    position: absolute;
  left: 10%;
  top:20%;
  content: "";
  width: 10px;
  height: 10px;
  background: #23A783;
  border-radius: 10px;
  filter: blur(0);
  z-index: 1;
  transform: rotate(20deg); 
        animation: opeanimation 0.9s infinite ease-in-out alternate;
}
footer .row::after{
    position: absolute;
  left: 50%;
  top:5%;
  content: "";
  width: 10px;
  height: 10px;
  background: #F09F0C;
  border-radius: 10px;
  filter: blur(0);
  z-index: 1;
  transform: rotate(20deg); 
        animation: opeanimation 0.8s infinite ease-in-out alternate;
}
footer .row::before{
    position: absolute;
  right: 20%;
  top:5%;
  content: "";
  width: 10px;
  height: 10px;
  background: #4C2DC6;
  border-radius: 10px;
  filter: blur(0);
  z-index: 1;
  transform: rotate(20deg); 
        animation: opeanimation 0.8s infinite ease-in-out alternate;
}
footer .col-xl-12::before{
    position: absolute;
  right: 15%;
  top:35%;
  content: "";
  width: 10px;
  height: 10px;
  background: #F09F0C;
  border-radius: 10px;
  filter: blur(0);
  z-index: 1;
  transform: rotate(20deg); 
      animation: opeanimation 0.8s infinite ease-in-out alternate;
}

@keyframes opeanimation {
  0%{
    opacity: 0.5;
  }
    100%{
    opacity: 1;
  }
}
.footer_area_inner span {
  font-family: Poppins;
  font-weight: 400;
  font-size: 20px;
  line-height: 174%;
  letter-spacing: 0%;
}

.footer_area_inner h2 {
  font-family: var(--TT_font);
  font-weight: 600;
  font-size: 50px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--white-color);
}
.footer_area_inner h2 span {
  font-weight: 600;
  font-size: 50px;
  font-family: var(--TT_font);
  background: linear-gradient(135.07deg, #f06051 4.18%, #facf7c 95.45%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bx_social {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all ease 0.5s;
}
.bx_social:hover{
  transform: scale(1.1);
  color: white;
}
.bx_social img {
  width: 25px;
  object-fit: contain;
  height: 25px;
}
.bx_social span {
  font-size: 17px;
  letter-spacing: 1px;
  margin-top: 5px;
}
.footer_area_inner .social {
  margin-top: 80px;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
}
.footer_area_inner ul {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: center;
  margin-top: 45px;
}

.footer_area_inner ul li a {
  font-size: 17px;
}

.footer_area_inner ul li a:hover {
  color: #f16754;
}
.footer_area_inner p {
  font-weight: 400;
  font-size: 18px;
  line-height: 46px;
  letter-spacing: 0%;
  text-align: center;
  margin-top: 10px;
  color: #3ea3c8;
}
.loader {
  border: 4px solid #d1874b;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border-right-color: transparent;
  animation: rot 1s linear infinite;
  box-shadow: 0px 0px 20px #d1874b inset;
}

@keyframes rot {
  100% {
    transform: rotate(360deg);
  }
}
/* Product Page css  */

.product_hero_area {
  padding: 130px 0 0;
  position: relative;
  z-index: 1;
}

.product_hero_area_inner {
  padding-top: 80px;
}

.product_hero_area_inner h1 {
  color: #ff6f00;
  font-family: var(--TT_font);
  font-weight: 600;
  font-style: DemiBold;
  font-size: 55px;
  line-height: 110%;
  letter-spacing: 0%;
}
.product_hero_area_inner p {
  font-family: var(--TT_font);
  font-weight: 400;
  font-style: Regular;
  font-size: 23px;
  leading-trim: NONE;
  line-height: 35px;
  letter-spacing: 0%;
  margin: 20px 0;
}
.product_hero_area_inner .commenr_btn {
  font-family: var(--TT_font);
  padding: 13px 45px;
  font-size: 20px;
  background: #0052cc;
}
.product_hero_area_inner .commenr_btn:hover {
  color: white;
}

.crypto_app_area {
  position: relative;
  background: url(../images/trust_area_shp1.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  padding: 200px 0 100px;
  overflow-x: clip;
}

.crypto_app_area::before {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1;
  content: "";
  top: 0;
  background: linear-gradient(165deg, #0a2833 4.18%, #0a28334f 95.45%);
}

.crypto_app_area::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 1;
  content: "";
  bottom: 0;
  background: linear-gradient(180deg, #0a2833 31.18%, #0a283387 -27.55%);
  transform: rotate(180deg);
}

.crypto_app_area_innern span {
  font-family: var(--TT_font);
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 2px;
}
.crypto_app_area_innern h2 {
  font-family: var(--TT_font);
  font-weight: 600;
  font-style: DemiBold;
  font-size: 46px;
  leading-trim: NONE;
  line-height: 130%;
  letter-spacing: 2px;
  width: 70%;
}

.crypto_app_area_inner1 {
  background: #083241;
  padding: 40px;
  border-radius: 20px;
}

.crypto_app_area_inner1 p {
  font-family: var(--TT_font);
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 38px;
  letter-spacing: 0%;
  color: #ffffff;
}

.crypto_app_area_inner2 {
  text-align: center;
}
.crypto_app_area_inner2:hover{
  transform: translateY(-10px);

}
.private_net_area_inner1 img{
  animation: up_down 16s linear infinite;
}
.crypto_app_area_inner2 img {
  width: 50px;
}
.crypto_app_area_inner2 .content {
  padding: 20px 0 0;
}
.crypto_app_area_inner2 .content h3 {
  font-family: var(--TT_font);
  font-weight: 500;
  font-style: Medium;
  font-size: 25px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

.crypto_app_area_inner2 .content p {
  font-family: var(--TT_font);
  font-weight: 300;
  font-style: Light;
  font-size: 17px;
  line-height: 25px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  width: 80%;
  margin: auto;
  margin-top: 10px;
}
.crypto_app_area_inner:hover img{
  animation: up_down 16s linear infinite;
}
.crypto_app_area_inner{
    border: 1px solid rgba(255, 255, 255, 0);
}
.crypto_app_area_inner:hover{
  border: 1px solid rgba(255, 255, 255, 0.154);
}
.z-11 {
  position: relative;
  z-index: 22;
}

.crypto_app_area .container::before {
  position: absolute;
  left: -30%;
  top: 50px;
  content: "";
  width: 550px;
  height: 550px;
  opacity: 0.7;
  background-color: #124b60;
  border-radius: 100%;
  filter: blur(130px);
  animation: round_animation 5s linear infinite;
  z-index: -1;
}

.private_net_area {
  padding: 80px 0;
}

.private_net_area_inner > span {
  font-family: var(--TT_font);
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
  background: linear-gradient(135.07deg, #3ccb9a 4.18%, #6cca44 95.45%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.private_net_area_inner h2 {
  font-family: var(--TT_font);
  font-weight: 400;
  font-style: Regular;
  font-size: 50px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ffffff;
  margin-top: 20px;
}
.private_net_area_inner h2 span {
  background: linear-gradient(
    272.81deg,
    #f06051 1.06%,
    #f06051 32.58%,
    #facf7c 74.5%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--TT_font);
  font-weight: 600;
  font-style: DemiBold;
  font-size: 60px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}

.private_net_area_inner p {
  font-family: var(--TT_font);
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 42px;
  letter-spacing: 0%;
  margin-top: 10px;
}

.private_net_area_inner .commenr_btn {
  padding: 10px 25px;
  margin-top: 50px;
}
.private_net_area_inner .commenr_btn:hover {
  color: white;
}

.dao_coin_area {
  padding: 80px 0;
  position: relative;
  overflow-x: clip;
}
.dao_coin_area::before {
  position: absolute;
  left: 90px;
  top: 0;
  content: "";
  background: linear-gradient(322.8deg, #021e7b 17.9%, #00ddfe 83.07%);
  filter: blur(21px);
  width: 60px;
  height: 60px;
  z-index: -1;
  animation: anim1 2.6s linear infinite;
}
.dao_coin_area::after {
  position: absolute;
  left: 610px;
  top: 57%;
  content: "";
  background: linear-gradient(322.8deg, #021e7b 17.9%, #00ddfe 83.07%);
  filter: blur(33px);
  width: 80px;
  height: 80px;
  z-index: -1;
  animation: anim1 2.6s linear infinite;
}

.dao_coin_area .container::before {
  position: absolute;
  left: 50%;
  top: 10%;
  content: "";
  background: linear-gradient(322.8deg, #021e7b 17.9%, #00ddfe 83.07%);
  filter: blur(41px);
  width: 40px;
  height: 40px;
  z-index: -1;
  animation: anim1 2.6s linear infinite;
}
.dao_coin_area .container::after {
  position: absolute;
  right: 10%;
  top: 15%;
  content: "";
  background: linear-gradient(322.8deg, #021e7b 17.9%, #00ddfe 83.07%);
  filter: blur(31px);
  width: 40px;
  height: 40px;
  z-index: -1;
  animation: anim1 2.6s linear infinite;
}
.dao_coin_area_inner img {
  width: 100%;
  max-width: 500px;
  margin: auto;
  animation: fa_snak 50s infinite ease-in-out alternate;
}

.dao_coin_area_inner1 h2 {
  background: linear-gradient(135.07deg, #3ccb9a 4.18%, #6cca44 95.45%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--TT_font);
  font-weight: 700;
  font-style: DemiBold;
  font-size: 50px;
  line-height: 100%;
  letter-spacing: 0%;
}

.dao_coin_area_inner1 span {
  font-family: var(--TT_font);
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 40px;
  letter-spacing: 0%;
  margin-top: 13px;
  display: flex;
}
.dao_coin_area_inner1 p {
  font-family: var(--TT_font);
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #ffffff;
  margin: 32px 0 40px;
}

.dao_coin_area_inner1 .commenr_btn {
  background: #0052cc;
  padding: 9px 25px;
}

.dao_coin_area_inner1 .commenr_btn:hover {
  color: white;
}

.bx_build span.orng_grad {
  background: linear-gradient(
    272.81deg,
    #f06051 1.06%,
    #f06051 32.58%,
    #f06051 74.5%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* gram-chain css  */
.garm_chain_hero_area {
  padding: 280px 0 150px;
  position: relative;
  z-index: 1;
}

.garm_chain_hero_area_inner h1 {
  font-family: var(--TT_font);
  font-weight: 700;
  font-style: Medium;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 0%;

  background: linear-gradient(135.07deg, #3ccb9a 4.18%, #6cca44 95.45%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.garm_chain_hero_area_inner p {
  font-family: var(--TT_font);
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0%;
  color: white;
}
.garm_chain_hero_area {
  position: relative;
}
.garm_chain_hero_area_inner1 img {
  position: absolute;
  right: 0;
  top: 30%;
  width: 40%;
  z-index: 2;
}
.crypto_app_area_inner {
  background-color: #083241;
  padding: 40px;
  border-radius: 20px;
  display: flex;
}
.crypto_app_area_inner .content {
  width: 80%;
}
.crypto_app_area_inner img {
  width: 200px;
  object-fit: contain;
}
.crypto_app_area_inner h3 {
  font-family: var(--TT_font);
  font-weight: 500;
  font-style: Medium;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 20px;
}

.crypto_app_area_inner p {
  margin-top: 10px;
  font-family: var(--TT_font);
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 30px;
  letter-spacing: 0%;
}

.gram_chain_area {
  padding: 80px 0 80px;
}

.ecosysteam_area {
  padding: 180px 0 30px;
  text-align: center;
}

.ecosysteam_area_inner h1 {
  background: linear-gradient(
    272.81deg,
    #f06051 1.06%,
    #f06051 32.58%,
    #facf7c 74.5%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--TT_font);
  font-weight: 600;
  font-style: Medium;
  font-size: 50px;
  line-height: 100%;
  letter-spacing: 0%;
}

.ecosysteam_area_inner p {
  font-family: var(--TT_font);
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  line-height: 48px;
  letter-spacing: 0%;
  text-align: center;
}

.ecosysteam_area_inner ul {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 42px;
}

.ecosysteam_area_inner ul li {
  padding: 14px 20px;
  background: #194e65;
  border-radius: 10px;
  font-family: var(--TT_font);
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  transition: all ease 0.5s;
  cursor: pointer;
}
.ecosysteam_area_inner ul li:hover{
  background: linear-gradient(272.81deg, #f06051 1.06%, #f06051 32.58%, #facf7c 74.5%);
  transition: all ease 0.5s;

}

.gram_chain_area_inner {
  column-count: 3;

  column-gap: 15px;

  margin: 0 auto;
  padding: 30px;
}

.gram_chain_area_bx {
  break-inside: avoid;
  background: #083241;
  padding: 37px;
  border-radius: 14px;
  margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.024);
}
.gram_chain_area_bx:hover{
  border: 1px solid rgba(255, 255, 255, 0.151);
}

.gram_chain_area_bx_in {
  display: inline-grid;
  grid-template-columns: repeat(4, 2fr);
  gap: 20px;
  margin-top: 15px;
}

.gram_chain_area_bx_mn {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

.gram_chain_area_bx_mn img {
  width: 51px;
  border-radius: 100px;
}
.gram_chain_area_bx_mn span {
  font-size: 15px;
  font-family: var(--TT_font);
  margin-top: 10px;
  text-align: center;
}
.gram_chain_area_inner {
  gap: 30px;
}

.gram_chain_area_bx h3 {
  font-size: 20px;
}

.dapps_hero_area {
  padding: 100px 0 100px;
}

.dapps_hero_area_inner .image {
  position: relative;
}
.dapps_hero_area_inner .image img{
  animation: up_down 16s linear infinite;
}
.dapps_hero_area_inner .image::before {
  position: absolute;
  left: 0;
  bottom: -14px;
  content: "";
  background: linear-gradient(360deg, #0a2833 15.06%, rgba(10, 40, 51, 0) 100%);
  height: 300px;
  width: 100%;
  z-index: 2;
}

.dapps_hero_area_inner h1 {
  font-family: var(--TT_font);
  font-weight: 700;
  font-style: Bold;
  font-size: 100px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 180px;
  text-align: center;
}

.dapps_hero_area_inner h1 span:first-child {
  background: linear-gradient(135.07deg, #3ccb9a 4.18%, #6cca44 95.45%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.dapps_hero_area_inner h1 span:first-child::before {
  position: absolute;
  content: "Build dApps";
  left: -70px;
  top: -70px;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 2px #494949;
  opacity: 0.5;
}

.dapps_hero_area_inner h1 span:last-child {
  padding-left: 20%;
  position: relative;
  background: linear-gradient(
    272.81deg,
    #f06051 1.06%,
    #f06051 32.58%,
    #facf7c 74.5%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dapps_hero_area_inner h1 span:last-child::before {
  position: absolute;
  content: "GramBuild";
  right: 20%;
  top: -70px;
  z-index: -1;
  background: linear-gradient(
    272.81deg,
    #f06051 1.06%,
    #f06051 32.58%,
    #facf7c 74.5%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.1;
}

.deploy_cont_area_inner1 h2 {
  background: linear-gradient(135.07deg, #3ccb9a 4.18%, #6cca44 95.45%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--TT_font);
  font-weight: 500;
  font-style: Medium;
  font-size: 45px;
  line-height: 120%;
  letter-spacing: 0%;
  margin-bottom: 50px;
}
.deploy_cont_area_inner1 p {
  font-family: var(--TT_font);
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 42px;
  letter-spacing: 0%;
  color: var(--white-color);
}
.deploy_cont_area_inner {
  position: relative;
}

.deploy_cont_area_inner .content {
  position: absolute;
  top: -250px;
  width: 325px;
  text-align: center;
  font-family: var(--TT_font);
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 37px;
  letter-spacing: 0%;
  text-align: center;
  padding: 2px 2px;
  cursor: pointer;
  left: 0;
}

.deploy_cont_area_inner .content::before {
  position: absolute;
  left: -1px;
  top: -1px;
  width: 40%;
  height: 102%;
  background: linear-gradient(135.07deg, #3ccb9a 4.18%, #6cca44 95.45%);
  content: "";
  z-index: -1;
  transition: all ease 0.5s;
}
.deploy_cont_area_inner .content::after {
  position: absolute;
  right: -1px;
  top: -1px;
  width: 40%;
  height: 102%;
  background: linear-gradient(135.07deg, #3ccb9a 4.18%, #6cca44 95.45%);
  content: "";
  z-index: -1;
  transition: all ease 0.5s;
}

.deploy_cont_area_inner .content p {
  background-color: #0a2833;
  padding: 40px 0;
  transition: all ease 0.5s;
}

.deploy_cont_area_inner .content:hover::after {
  width: 100%;
}
.deploy_cont_area_inner .content:hover::before {
  width: 100%;
}
.deploy_cont_area_inner .content:hover p {
  background-color: transparent;
}
.deploy_cont_area_inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.deploy_cont_area_inner::before {
  position: absolute;

  top: 0;
  width: 100%;
  height: 100%;
  max-width: 400px;
  max-height: 400px;
  background: #ec5f5266;

  content: "";
  filter: blur(130px);
  z-index: -1;
}

.node_launch_area {
  padding: 70px 0;
}

.node_launch_area_inner {
  text-align: center;
}

.node_launch_area_inner h2 {
  font-family: var(--TT_font);
  font-weight: 500;
  font-style: Medium;
  font-size: 35px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  background: linear-gradient(
    272.81deg,
    #f06051 1.06%,
    #f06051 32.58%,
    #facf7c 74.5%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.node_launch_area_inner p {
  font-family: var(--TT_font);
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0%;
  text-align: center;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  margin-top: 30px;
}

.node_launch_area_inner1 {
  margin-top: 50px;
}
.node_launch_area_inner1 .bx1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.node_launch_area_inner1 .bx1 span {
  font-weight: 400;
  font-size: 16px;
  line-height: 42px;
  letter-spacing: 0%;
}

.node_launch_area_strip {
  width: 100%;
  height: 56px;
  overflow: hidden;
  background: #062a30;
  position: relative;
}

/* Moving Layer */
.node_launch_area_strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  width: 200%;
  height: 100%;

  /* YOUR GRADIENT */
  background: linear-gradient(
    272.81deg,
    #f06051 1.06%,
    #f06051 32.58%,
    #facf7c 74.5%
  );

  -webkit-mask: repeating-linear-gradient(
    to right,
    #000 0px,
    #000 6px,
    transparent 6px,
    transparent 22px
  );
  mask: repeating-linear-gradient(
    to right,
    #000 0px,
    #000 6px,
    transparent 6px,
    transparent 22px
  );

  animation: stripeMoveRight 2s linear infinite;
}

/* Animation */
@keyframes stripeMoveRight {
  from {
    transform: translateX(-22px);
  }
  to {
    transform: translateX(0);
  }
}

.node_launch_area_inner1 .bx2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.node_launch_area_inner1 .bx2 span {
  font-weight: 400;
  font-size: 16px;
  line-height: 42px;
  letter-spacing: 0%;
  color: #2881a2;
  width: 280px;
  display: flex;
  justify-content: center;
}
.node_launch_area_inner1 .bx2 span.line {
  display: flex;
  width: 100%;
  max-width: 500px;
  height: 1px;
  background-color: #ffffff;
}
.node_launch_area_inner1 ul {
  margin-top: 60px;
}

.node_launch_area_inner1 ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
  font-weight: 400;
  font-style: Regular;
  font-size: 17px;
  leading-trim: NONE;
  line-height: 42px;
  letter-spacing: 0%;
  color: #ffffff;
}





/*=============================
        00. Preloader
    ===============================*/
#preloader {
    background-color: var(--theam_color);
    height: 100%;
    width: 100%;
    position: fixed;
    margin-top: 0px;
    top: 0px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in-out;
}

#preloader .loader {
    /* width: 60px;
    display: flex;
    align-items: flex-start;
    aspect-ratio: 1; */
}

/* #preloader .loader::before,
#preloader .loader::after {
content: "";
    flex: 1;
    aspect-ratio: 1;
    --g: conic-gradient(from -90deg at 10px 10px, #ffb395 90deg, #0000 0);
    background: var(--g), var(--g), var(--g);
    filter: drop-shadow(30px 30px 0 #ffffff);
    animation: l20 1s infinite;
    color: #483da6;
} */

#preloader .loader::after {
    transform: scaleX(-1);
}

@keyframes l20 {
    0% {
        background-position: 0 0, 10px 10px, 20px 20px;
    }

    33% {
        background-position: 10px 10px;
    }

    66% {
        background-position: 0 20px, 10px 10px, 20px 0;
    }

    100% {
        background-position: 0 0, 10px 10px, 20px 20px;
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(15);
        opacity: 1;
    }

    100% {
        transform: scale(22);
        opacity: 0;
    }
}

#preloader.zoom-out {
    animation: zoomOut 2.5s forwards;
}


.hero_area_inner1 img{
      animation: up_down 16s linear infinite;
}


@keyframes up_down {
  0% {
    transform: translateY(0);
}
25% {
    transform: translateY(30px);
}
50% {
    transform: translateY(0px);
}
75% {
    transform: translateY(-30px);
}
100% {
    transform: translateY(0px);
}
}

.product_hero_area_inner1 img{
  animation: up_down 16s linear infinite;
}

.round_footer_img{
  bottom: -300px;
  position: absolute;
  left:  50%;
transform: translate(-50%, 9%);
animation: fa_snak1 5s linear  infinite;
}


@keyframes fa_snak1 {
  from {
    transform: translate(-50%, 9%) rotate(360deg);
  }
  to {
    transform: translate(-50%, 9%) rotate(0deg);
  }
}



.ml12 {
   
}

 a.nav-link{
  transition: all ease 0.5s;
 }

a.nav-link.active{
  background: linear-gradient(272.81deg, #F06051 1.06%, #F06051 32.58%, #FACF7C 74.5%);
-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
a.nav-link:hover{
  background: linear-gradient(272.81deg, #F06051 1.06%, #F06051 32.58%, #FACF7C 74.5%);
-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar.fixed {
    position: fixed;
    top: 0;
    width: 100%;
background-color: rgb(10 42 54);
    box-shadow: 0 0.125rem 1rem 3px rgba(0, 0, 0, 0.1);
    animation: simple-rotate 1s linear alternate;
    z-index: 2222;
    padding: 18px 0 18px 0 !important;
}


@keyframes simple-rotate {
  0% {
    transform: translateY(-90px);
}
100% {
    transform: translateY(0px);
}

}

 

.goog-te-gadget-simple {
  background: #d4b679 !important;
  border: none !important;
  padding: 6px 10px !important;
  border-radius: 6px !important;
}

.goog-te-gadget-simple span {
  color: #000 !important;
}


/* Google default text hide karo */
.goog-te-gadget-simple span:first-child {
  display: none !important;
}

/* "Select Language" text hide */
.goog-te-gadget-simple .goog-te-menu-value span:first-child {
  display: none !important;
}

/* Full name hide karo */
.goog-te-menu-value span:not(:last-child) {
  display: none !important;
}

/* Background remove */
.goog-te-gadget-simple {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  font-size: 14px !important;
}

/* Arrow clean karo */
.goog-te-gadget-simple .goog-te-menu-value:after {
  content: "▼";
  font-size: 10px;
  margin-left: 5px;
}

/* Text style EN jaisa */
.goog-te-gadget-simple .goog-te-menu-value span:last-child {
  color: #fff !important;
  font-weight: 500;
}

/* Google icon remove karna ho to */
.goog-te-gadget-icon {
  display: none !important;
}

.skiptranslate   body{
  background-image: none !important;
      background: #0a2833 !important;
      box-shadow: none !important;
}

.skiptranslate iframe{
  box-shadow: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.081) !important;
}

.skiptranslate body table button{
  background: red !important;
}


body {
  top: 0px !important;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

.skiptranslate iframe {
  display: none !important;
}