@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");

@font-face {
  font-family: "violet_sansregular";
  src: url("fonts/violet-sans.regular.eot");
  src: url("fonts/violet-sans.regular.eot?#iefix") format("embedded-opentype"),
    url("fonts/violet-sans.regular.woff2") format("woff2"),
    url("fonts/violet-sans.regular.woff") format("woff"),
    url("fonts/violet-sans.regular.ttf") format("truetype"),
    url("fonts/violet-sans.regular.svg#violet_sansregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* font-family: 'Roboto', sans-serif; */
/* font-family: "Roboto Mono", monospace; */

/* body,
html {
    overflow-x: hidden;
} */
/* body,html{
    width: 100%;
} */

:root {
  --body-font: "violet_sansregular";
  --heading-font: "violet_sansregular";
  --secondary-font: "Roboto Mono", monospace;
  --theme-purple: #be4de4;
  --theme-green: #00dd9b;
  --theme-black: #030124;
  --body-text-color: #adabd2;
  --white-color: #ffffff;
  --black-color: #000000;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: normal;
  font-style: normal;
  color: var(--body-text-color);
  font-size: 18px;
  line-height: 1.45;
  background-color: #030124;
  overflow-x: hidden;
}

:root {
  scroll-behavior: inherit;
}

b,
strong {
  font-weight: 700;
}

p {
  margin: 0 0 22px 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 25px 0;
  padding: 0;
  color: var(--white-color);
  font-weight: 100;
  font-family: var(--heading-font);
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1,
.h1-title {
  font-size: 68px;
  line-height: 1.05;
}

h2,
.h2-title {
  font-size: 58px;
  line-height: 1;
}

h3,
.h3-title {
  font-size: 38px;
  line-height: 1.15;
}

h4,
.h4-title {
  font-size: 24px;
  line-height: 1.15;
}

h5,
.h5-title {
  font-size: 20px;
  line-height: 1.2;
}

a {
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: #ecb61e;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}

a:hover {
  color: var(--theme-green);
}

img {
  max-width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
  background-color: transparent;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  color: #000;
  border: 1px solid rgba(255, 255, 255, 0.7);
  height: 58px;
  padding: 0 16px;
  outline: none !important;
}

textarea {
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 12px 16px;
  width: 100%;
  color: #000;
  height: 158px;
  outline: none !important;
}

select {
  border: 1px solid rgba(255, 255, 255, 0.7);
  width: 100%;
  padding: 0 11px;
  background: url(images/sort-down.svg) no-repeat calc(100% - 16px) center
    transparent;
  background-size: 18px;
  padding-right: 40px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type="submit"] {
  background: #eab71e;
  color: #000000;
  height: 58px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  padding-left: 30px;
  padding-right: 30px;

  cursor: pointer;
  font-size: 24px;
  font-weight: 700;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover {
  background: #000;
  color: #eab71e;
}

::-webkit-input-placeholder {
  opacity: 0.7;
  color: #000;
}

:-ms-input-placeholder {
  opacity: 0.7;
  color: #000;
}

::-moz-placeholder {
  opacity: 0.7;
  color: #000;
}

:-moz-placeholder {
  opacity: 0.7;
  color: #000;
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
  clear: both;
}

/* custom checkbox */

.form_input_check label {
  position: relative;
  margin: 0;
  padding-left: 40px;
  display: inline-block;
}

.form_input_check label span {
  margin: 0;
  padding: 0;
}

.form_input_check label input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.form_input_check label input[type="checkbox"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  border: 1px solid #3e3e42;
  background: transparent;
}

.form_input_check label input[type="checkbox"] + span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/tick.svg) no-repeat center center;
  background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {
      
    } */

.form_input_check label input[type="checkbox"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* custom radio */

.form_input_radio label {
  position: relative;
  margin: 0;
  padding-left: 30px;
  display: inline-block;
}

.form_input_radio label span {
  margin: 0;
  padding: 0;
}

.form_input_radio label input[type="radio"] {
  visibility: hidden;
  display: none;
}

.form_input_radio label input[type="radio"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: #fff;
}

.form_input_radio label input[type="radio"] + span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {
      
    } */

.form_input_radio label input[type="radio"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* custom radio end */

/* back to top */

#scroll {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  width: 55px;
  height: 55px;
  background-color: #bdd653;
  display: none;
  border-radius: 100%;
  line-height: 68px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  z-index: 9;
}

#scroll:hover {
  background: #88a725;
}

#scroll i {
  color: #fff;
  font-size: 44px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

#scroll:hover i {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}

/* navbar*/

.navbar-brand {
  padding: 0;
  margin: 0;
  width: 206px;
  display: inline-block;
  margin-right: 42px;
}

.navbar {
  background: none;
  margin: 0;
  padding: 0;
  min-height: inherit;
  height: inherit;
  border: none;
  border-radius: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.navbar .navbar-nav {
  width: 100%;
}

.navbar-nav li {
  position: relative;
  list-style: none;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.navbar-nav > li {
  /* margin: 0 15px; */
  /* padding: 38px 0; */
  position: relative;
  opacity: 0;
}

.navbar-nav > li:last-child {
  margin-right: 0;
}

.navbar-nav > li:first-child {
  margin-left: 0;
}

.navbar-nav > li > a {
  color: var(--body-text-color);
  font-size: 18px;
  line-height: 1.5;
  position: relative;
  font-weight: normal;
  padding: 38px 15px;
  width: 100%;
  text-align: center;
}

.navbar-nav > li > a:before {
  content: "";
  display: block;
  width: 100%;
  height: 0%;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.6);
  border-left: 1px solid rgba(255, 255, 255, 0.6);
  -webkit-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.navbar-nav > li > a:after {
  content: "";
  display: block;
  width: 0;
  height: 6px;
  background: #3b61dc;
  background: -o-linear-gradient(
    6.54deg,
    #f68aff 12.22%,
    #eb00ff 55.09%,
    #ad00ff 94%
  );
  background: linear-gradient(
    83.46deg,
    #f68aff 12.22%,
    #eb00ff 55.09%,
    #ad00ff 94%
  );
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* .navbar-nav>li.current-menu-item>a,
.navbar-nav>li>a:hover,
.navbar-nav>li.menu-item-has-children:hover>a {
    border-color: rgba(255, 255, 255, 0.6);
} */

.navbar-nav > li.current-menu-item > a:after,
.navbar-nav > li > a:hover:after,
.navbar-nav > li.menu-item-has-children:hover > a:after {
  width: 100%;
}

.navbar-nav>li.current-menu-item>a::before,
/* .navbar-nav>li>a:hover::before, */
.navbar-nav>li.menu-item-has-children:hover>a::before {
  height: 100%;
}

/* navbar submenu*/

.sub-menu {
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  width: 140px;
  padding: 0;
}

.sub-menu > li > a {
  color: #000;
  display: block;
  width: 100%;
  padding: 6px 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.sub-menu > li {
  width: 100%;
  display: block;
}

.sub-menu > li > a:hover,
.sub-menu > li.menu-item-has-children:hover > a,
.sub-menu > li.current-menu-item > a {
  background: #eab71e;
  color: #fff;
}

.navbar-nav > li:last-child > .sub-menu {
  right: 0;
  left: inherit;
  padding: 0;
}

/* 2nd level submenu */
.navbar-nav > li > .sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
}

/* for push-menu */
.navbar-collapse .navbar-toggler {
  display: none;
}

#navoverlay {
  display: block;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  margin: 0;
  padding: 0;
  z-index: 99;
  -webkit-transition: background-color 0.5s linear;
  -o-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear;
}

/* for push-menu end*/

/* HEADER START */
.main-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.main-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 1, 36, 0.6);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.main-head.sticky::before {
  opacity: 1;
}

.main-head .nav-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-head .nav-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-head .nav-right {
  padding-left: 18px;
}

.cmn-btn {
  display: inline-block;
  text-align: center;
  font-weight: 700;
  color: var(--white-color);
  font-family: var(--secondary-font);
  text-transform: capitalize;
  padding: 18px 20px;
  border-radius: 60px;
  position: relative;
  z-index: 1;
  min-width: 163px;
  line-height: 1;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(var(--white-color)),
    to(rgba(255, 255, 255, 0))
  );
  background: -o-linear-gradient(
    top,
    var(--white-color),
    rgba(255, 255, 255, 0)
  );
  background: linear-gradient(
    to bottom,
    var(--white-color),
    rgba(255, 255, 255, 0)
  );
}

.cmn-btn:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  color: var(--white-color);
}

.cmn-btn::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  z-index: -2;
  background: -o-linear-gradient(
    6.54deg,
    #f68aff 12.22%,
    #eb00ff 55.09%,
    #ad00ff 94%
  );
  background: linear-gradient(
    83.46deg,
    #f68aff 12.22%,
    #eb00ff 55.09%,
    #ad00ff 94%
  );
  -webkit-filter: blur(22px);
  filter: blur(22px);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.cmn-btn:hover::before {
  -webkit-filter: blur(5px);
  filter: blur(5px);
}

.cmn-btn::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  background: -o-linear-gradient(
    6.54deg,
    #f68aff 12.22%,
    #eb00ff 55.09%,
    #ad00ff 94%
  );
  background: linear-gradient(
    83.46deg,
    #f68aff 12.22%,
    #eb00ff 55.09%,
    #ad00ff 94%
  );
  z-index: -1;
}

/* HEADER END */

/* BANNER START */
.page-texture {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-size: 100%;
  background-repeat: repeat-y;
  background-position: top center;
  z-index: 1;
}

.main-banner {
  padding-top: 100px;
}

.main-banner .banner-in {
  padding: 75px 0 50px;
}

.main-banner .banner-row {
  --bs-gutter-x: 32px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.banner-row .banner-lft-col {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 47%;
}

.banner-row .banner-rht-col {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 53%;
}

.banner-lft-cntnt h1 .banner-hdng-span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.banner-lft-cntnt h1 .banner-hdng-span::after {
  content: "";
  width: 40px;
  height: 40px;
  margin-left: 17px;
  background-image: url(images/star-grp.svg);
  background-size: 100%;
  background-position: right center;
  background-repeat: no-repeat;
}

.banner-lft-cntnt h1 .banner-hdng-span .banner-gradient-txt {
  background: -o-linear-gradient(
    6.63deg,
    #00dd9b 14.1%,
    #eb00ff 59.32%,
    #eb00ff 94.03%
  );
  background: linear-gradient(
    83.37deg,
    #00dd9b 14.1%,
    #eb00ff 59.32%,
    #eb00ff 94.03%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.banner-cntnt {
  min-height: 570px;
}

.main-banner .banner-rht-cntnt {
  padding: 0 35px 0 74px;
  position: relative;
  margin-top: -7%;
}

.main-banner .banner-rht-cntnt .banner-circle {
  position: absolute;
  bottom: 80px;
  left: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: -1;
}

.main-banner .banner-rht-cntnt .banner-chat-bot {
  position: absolute;
  top: 50%;
  right: 61px;
  -webkit-transform: translate(100%, -50%);
  -ms-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
  width: 45%;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.main-banner .banner-rht-cntnt .left-star {
  position: absolute;
  bottom: 35px;
  left: 0;
  width: 18px;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.main-banner .banner-rht-cntnt .right-star {
  position: absolute;
  top: 80px;
  right: -120px;
  width: 24px;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.main-banner .banner-dot-left {
  position: absolute;
  top: 0%;
  left: 0;
  width: 45%;
  /* z-index: 1; */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  opacity: 0.12;
}

.main-banner .banner-dot-right {
  position: absolute;
  top: 0%;
  right: 0;
  width: 45%;
  /* z-index: 1; */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  opacity: 0.1;
}

.main-banner .banner-overlay {
  position: absolute;
  top: 0%;
  right: 0;
  width: 100%;
  /* z-index: 1; */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.main-banner .banner-cntnt {
  position: relative;
}

.main-banner .banner-green-glow {
  position: absolute;
  top: 30%;
  left: 55%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 70%;
}

.main-banner .banner-rht-cntnt .banner-chat-wpr {
  background: rgba(255, 255, 255, 0.01);
  -webkit-box-shadow: inset 0px 39px 56px -36px rgba(255, 255, 255, 0.5),
    inset 0px 7px 11px -4px #ffffff,
    inset 0px -82px 68px -64px rgba(14, 78, 114, 0.3),
    inset 0px 98px 100px -48px rgba(0, 161, 253, 0.3),
    inset 0px 4px 18px rgba(8, 59, 88, 0.3),
    inset 0px 1px 40px rgba(13, 137, 207, 0.2);
  box-shadow: inset 0px 39px 56px -36px rgba(255, 255, 255, 0.5),
    inset 0px 7px 11px -4px #ffffff,
    inset 0px -82px 68px -64px rgba(14, 78, 114, 0.3),
    inset 0px 98px 100px -48px rgba(0, 161, 253, 0.3),
    inset 0px 4px 18px rgba(8, 59, 88, 0.3),
    inset 0px 1px 40px rgba(13, 137, 207, 0.2);
  -webkit-backdrop-filter: blur(12.5px);
  backdrop-filter: blur(12.5px);
  border-radius: 60px;
  padding: 50px 44px 34px 52px;
  height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.banner-chat-wpr .banner-each-chat {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px 20px 20px 0;
  padding: 18px 18px 18px 40px;
  position: relative;
  margin-bottom: 26px;
  color: var(--white-color);
  line-height: 1.3;
}

.banner-chat-wpr .banner-each-chat.rply {
  background-color: var(--white-color);
  color: var(--theme-black);
  border-radius: 20px 20px 0 20px;
  padding: 18px 40px 18px 18px;
}

.banner-chat-wpr .banner-each-chat .chat-icon-wpr {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  position: absolute;
  bottom: -8px;
  left: -26px;
  -webkit-filter: drop-shadow(20px 14px 44px #14004e);
  filter: drop-shadow(20px 14px 44px #14004e);
}

.banner-chat-wpr .banner-each-chat.rply .chat-icon-wpr {
  right: -26px;
  left: auto;
}

.banner-chat-wpr .banner-each-chat .chat-icon-wpr::before {
  content: "";
  position: absolute;
  top: 2px;
  right: -6px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--white-color);
  background-color: #61ff00;
  border-radius: 50%;
}

.banner-chat-wpr .banner-each-chat.rply .chat-icon-wpr::before {
  left: -6px;
  right: auto;
}

.banner-chat-wpr .banner-each-chat .chat-icon-wpr img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* BANNER END */

/* ABOUT SEC START */
.about-sec {
  padding: 150px 0 0;
  /* overflow: hidden; */
}

.about-sec-in {
  position: relative;
  padding-bottom: 400px;
}

.about-sec-in::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 30%;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(20%, #030124),
    to(transparent)
  );
  background: -o-linear-gradient(bottom, #030124 20%, transparent);
  background: linear-gradient(to top, #030124 20%, transparent);
}

.about-sec-in .canvas-wpr {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  /* mix-blend-mode: difference; */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: -2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.about-sec-in canvas.about-wave {
  width: 100%;
  height: 100%;
}

.cmn-para > *:not(:last-child) {
  margin-bottom: 30px;
}

.about-btn-wpr {
  margin-top: 30px;
}

.about-row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-img-wpr {
  position: relative;
  padding-left: 70px;
}

.about-img-wpr .left-star {
  position: absolute;
  width: 24px;
  left: -85px;
  top: 105px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.about-img-wpr img {
  width: 100%;
  max-width: 420px;
}

.about-img-wpr img.about-glow {
  width: 130%;
  max-width: inherit;
  position: absolute;
  top: 50%;
  left: 40%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.about-rht-cntnt {
  position: relative;
  padding-left: 30px;
}

.about-rht-cntnt .right-star {
  position: absolute;
  width: 18px;
  right: -65px;
  top: 50%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

/* ABOUT SEC END */

/* TOKENOMICS SEC START */
.tokenomics-sec {
  padding: 120px 0 40px;
}

.tokenomics-sec .tknmcs-row .tknmcs-lft-col {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 28%;
  position: relative;
  z-index: 1;
}

.tokenomics-sec .tknmcs-row .tknmcs-mdl-col {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 46%;
  padding: 0 20px;
}

.tokenomics-sec .tknmcs-row .tknmcs-rht-col {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 26%;
  position: relative;
  z-index: 1;
}

.tknmcs-img-wpr {
  position: relative;
  max-width: 390px;
  margin: 0 auto;
}

.tknmcs-img-wpr img {
  width: 100%;
}

.tknmcs-img-wpr .tknmcs-eye {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}

.tknmcs-img-wpr .tknmcs-eye img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.tknmcs-img-wpr .tknmcs-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  z-index: -1;
  display: block;
}

.tknmcs-img-wpr .tknmcs-glow img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* TOKENOMICS SEC END */

/* DM style start */

/* roadmap section */

.roadmap-section {
  padding: 120px 0 20px;
  position: relative;
}

.roadmap-section .cmn-head {
  margin-bottom: 54px;
}

.roadmap-cont .top-line-outer {
  display: block;
  background: rgba(155, 110, 190, 0.3);
  height: 10px;
  width: 100%;
  margin-bottom: 27px;
  position: relative;
}

.roadmap-cont .top-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(
    6.54deg,
    #f68aff 12.22%,
    #eb00ff 55.09%,
    #ad00ff 94%
  );
  background: linear-gradient(
    83.46deg,
    #f68aff 12.22%,
    #eb00ff 55.09%,
    #ad00ff 94%
  );
}

.roadmap-cont .roadmap-head {
  margin-bottom: 33px;
}

.roadmap-cont .roadmap-head span {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(168, 147, 184, 0.92);
  margin-bottom: 10px;
  display: inline-block;
  font-size: 18px;
}

.roadmap-cont .roadmap-head h3 {
  font-size: 32px;
}

.roadmap-cont ul {
  list-style: none;
  padding-left: 0;
  max-width: 300px;
  margin-bottom: 0;
}

.roadmap-cont ul li {
  position: relative;
  padding-left: 46px;
  color: var(--white-color);
  font-size: 18px;
  margin-bottom: 22px;
}

.roadmap-cont ul li:last-child {
  margin-bottom: 0;
}

.roadmap-cont ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  background: url(images/pink-check.svg) no-repeat center center;
  background-size: 100% 100%;
  width: 19px;
  height: 14px;
}

.roadmap-row .roadmap-col {
  max-width: 363px;
}

.roadmap-section .roadmap-row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* roadmap section */

/* research section */

.research-sec {
  position: relative;
  padding: 130px 0 166px;
}

.research-card {
  background: rgba(255, 255, 255, 0.01);
  -webkit-box-shadow: inset 0px 39px 56px -36px rgba(255, 255, 255, 0.5),
    inset 0px 7px 11px -4px #ffffff,
    inset 0px -82px 68px -64px rgba(14, 78, 114, 0.3),
    inset 0px 98px 100px -48px rgba(245, 136, 255, 0.24),
    inset 0px 4px 18px #ad00ff, inset 0px 1px 40px rgba(13, 137, 207, 0.2);
  box-shadow: inset 0px 39px 56px -36px rgba(255, 255, 255, 0.5),
    inset 0px 7px 11px -4px #ffffff,
    inset 0px -82px 68px -64px rgba(14, 78, 114, 0.3),
    inset 0px 98px 100px -48px rgba(245, 136, 255, 0.24),
    inset 0px 4px 18px #ad00ff, inset 0px 1px 40px rgba(13, 137, 207, 0.2);
  -webkit-backdrop-filter: blur(12.5px);
  backdrop-filter: blur(12.5px);
  border-radius: 60px;
  padding: 53px 70px 93px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.research-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.research-col-left {
  width: 47%;
  padding: 0 15px;
}

.research-col-right {
  width: 53%;
  padding: 0 15px;
}

.research-col-right .robot {
  max-width: 344px;
  margin: 0 auto 0px 19.5%;
  position: relative;
  z-index: 2;
}

.research-col-right .robot .robot-eye {
  position: absolute;
  top: 4%;
  left: 4%;
  width: 80%;
  height: 80%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.research-col-right .bg {
  margin: -60% -38px 0;
}

.research-col-right .bg img {
  width: 100%;
}

/* .research-row .research-col-left{
    max-width: 494px;
} */

.research-row .research-col-left .cmn-head {
  text-align: left;
  margin-bottom: 41px;
}

.research-row .research-col-left p {
  color: var(--white-color);
  margin-bottom: 30px;
}

.research-row .research-col-left a {
  display: inline-block;
  color: #eb00ff;
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.2;
}

.research-row .research-col-left a:hover {
  color: var(--theme-green);
}

.research-sec .card-wrapper {
  position: relative;
}

.star-top-left {
  position: absolute;
  top: -30px;
  left: -40px;
  width: 30px;
  height: 30px;
  z-index: 2;
}

.star-top-left img {
  width: 100%;
  height: 100%;
}

.top-right-shape {
  position: absolute;
  top: -26%;
  right: 0;
}

.top-right-shape img {
  width: 100%;
}

.star-bottom-left {
  position: absolute;
  bottom: -40px;
  left: -37px;
  width: 14px;
  height: 14px;
  line-height: 0;
}

.star-bottom-left img {
  width: 100%;
  height: 100%;
}

.star-bottom-right {
  position: absolute;
  bottom: -24px;
  right: -39px;
  width: 30px;
  height: 30px;
}

.star-bottom-right img {
  width: 100%;
  height: 100%;
}

.research-bg {
  position: absolute;
  top: -70%;
  left: 0;
  z-index: -1;
}

/* research section */

/* community section */

.community-sec {
  padding-bottom: 122px;
  position: relative;
}

.cmn-head {
  text-align: center;
  margin-bottom: 10px;
}

.cmn-head.left {
  text-align: left;
}

.community-sec .cmn-head {
  max-width: 981px;
  margin: 0 auto 40px auto;
}

.cmn-head > span {
  display: block;
  font-size: 15px;
  letter-spacing: 0.29em;
  text-transform: uppercase;
  background: -o-linear-gradient(6.63deg, #eb00ff 14.1%, #c500b1 81.54%);
  background: linear-gradient(83.37deg, #eb00ff 14.1%, #c500b1 81.54%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 8px;
}

.community-row {
  --bs-gutter-x: 34px;
}

.community-card {
  padding: 47px 47px 61px 47px;
  background: rgba(255, 255, 255, 0.01);
  -webkit-box-shadow: inset 0px 39px 56px -36px rgba(255, 255, 255, 0.5),
    inset 0px 7px 11px -4px #ffffff,
    inset 0px -82px 68px -64px rgba(14, 78, 114, 0.3),
    inset 0px 98px 100px -48px rgba(0, 161, 253, 0.3),
    inset 0px 4px 18px rgba(8, 59, 88, 0.3),
    inset 0px 1px 40px rgba(13, 137, 207, 0.2);
  box-shadow: inset 0px 39px 56px -36px rgba(255, 255, 255, 0.5),
    inset 0px 7px 11px -4px #ffffff,
    inset 0px -82px 68px -64px rgba(14, 78, 114, 0.3),
    inset 0px 98px 100px -48px rgba(0, 161, 253, 0.3),
    inset 0px 4px 18px rgba(8, 59, 88, 0.3),
    inset 0px 1px 40px rgba(13, 137, 207, 0.2);
  -webkit-backdrop-filter: blur(12.5px);
  backdrop-filter: blur(12.5px);
  border-radius: 60px;
  text-align: center;
}

.community-card figure {
  width: 66px;
  height: 66px;
  border-radius: 100%;
  background: rgba(217, 0, 255, 0.75);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 30px auto;
}

.community-card figure img {
  width: 38px;
  height: 38px;
}

.community-card h3 {
  font-size: 40px;
  margin-bottom: 30px;
}

.community-card .cmn-btn {
  font-size: 18px;
  text-align: center;
  min-width: 250px;
}

/* community section */

/* footer section */

.footer-sec {
  padding-bottom: 73px;
  position: relative;
}

.footer-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 770px;
  z-index: -1;
}

.footer-right-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 638px;
  z-index: -1;
}

.footer-sec .footer-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}

.footer-sec .logo-sec {
  max-width: 276px;
  width: 100%;
}

.footer-sec .logo-sec a {
  display: inline-block;
  max-width: 276px;
  width: 100%;
}

.footer-sec .footer-content {
  max-width: calc(100% - 276px);
  width: 100%;
  padding-left: 184px;
}

.footer-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.footer-links ul li {
  line-height: 0;
}

.footer-links ul li:not(:last-child) {
  margin-right: 29px;
}

.footer-links ul li a {
  display: inline-block;
  color: var(--body-text-color);
  font-size: 18px;
  line-height: 1.2;
}

.footer-links ul li a:hover {
  color: var(--theme-green);
}

.copy-right-sec ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  padding-left: 0;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 0;
}

.copy-right-sec ul li:not(:last-child) {
  margin-right: 27px;
}

.copy-right-sec ul li {
  color: var(--body-text-color);
  font-size: 18px;
}

.copy-right-sec ul li a {
  display: inline-block;
  color: var(--body-text-color);
}

.copy-right-sec ul li a:hover {
  color: var(--theme-green);
}

.footer-star {
  position: absolute;
  top: -64px;
  left: -52px;
  width: 18px;
  height: 18px;
  line-height: 0;
}

/* footer section */

/* DM style End */

/* SD START */

.product_sec {
  padding-top: 60px;
  padding-bottom: 75px;
  position: relative;
}

.prduct_head {
  margin-bottom: 90px;
}

.prduct_main {
  width: 100%;
  padding: 0 45px;
}

.product_rw {
  --bs-gutter-x: 63px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.product_rw:not(:last-child) {
  margin-bottom: 60px;
}

.product_rw:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.product_img_wrppr {
  background: rgba(255, 255, 255, 0.01);
  -webkit-box-shadow: inset 0px 39px 56px -36px rgba(255, 255, 255, 0.5),
    inset 0px 7px 11px -4px #ffffff,
    inset 0px -82px 68px -64px rgba(14, 78, 114, 0.3),
    inset 0px 98px 100px -48px rgba(245, 136, 255, 0.24),
    inset 0px 4px 18px #ad00ff, inset 0px 1px 40px rgba(13, 137, 207, 0.2);
  box-shadow: inset 0px 39px 56px -36px rgba(255, 255, 255, 0.5),
    inset 0px 7px 11px -4px #ffffff,
    inset 0px -82px 68px -64px rgba(14, 78, 114, 0.3),
    inset 0px 98px 100px -48px rgba(245, 136, 255, 0.24),
    inset 0px 4px 18px #ad00ff, inset 0px 1px 40px rgba(13, 137, 207, 0.2);
  -webkit-backdrop-filter: blur(12.5px);
  backdrop-filter: blur(12.5px);
  border-radius: 60px;
  width: 100%;
  position: relative;
  height: 407px;
}

.product_txt_content h3 {
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2;
  color: var(--white-color);
  margin-bottom: 20px;
}

.product_txt_content p {
  color: var(--body-text-color);
}

.product_img_innr {
  width: 100%;
}

.product_img_innr > img,
.product_img_innr > svg {
  width: 100%;
}

.rwOne_img_wrap {
  padding: 0 16px 16px;
}

.rwOne_img_wrap > img,
.rwOne_img_wrap > svg {
  margin-top: -58px;
  position: relative;
}

.rwOne_blur_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -130px;
  left: 0;
  z-index: -1;
  -o-object-fit: contain;
  object-fit: contain;
  pointer-events: none;
}

.product_img_col,
.product_txt_col {
  position: relative;
}

.rwTwo_blur_bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: -93px;
  z-index: -1;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom center;
  object-position: bottom center;
  pointer-events: none;
}

.rwTwo_img_innr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.rwTwo_img_wrap {
  width: 100%;
  height: 310px;
  padding: 0 23px 45px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.rwTwo_img_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom;
  object-position: bottom;
}

.rwTwo_img_wrap img {
  width: 100%;
}

.proStar_cmn {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  padding: 0;
  margin: 0;
  line-height: 0;
}

/* .proStar_cmn img {
    width: 100%;
} */
.proStar_one {
  width: 14px;
  top: -40px;
  left: 82px;
}

.proStar_two {
  width: 24px;
  top: 32%;
  right: 102px;
}

.proStar_three {
  width: 18px;
  top: 40%;
  right: -40px;
}

.proStar_four {
  width: 18px;
  top: 0;
  left: 0;
}

.proStar_five {
  width: 24px;
  position: absolute;
  top: 60px;
  right: 82px;
  pointer-events: none;
}

.proStar_six {
  width: 24px;
  top: 0;
  left: -30px;
}

.proStar_seven {
  width: 18px;
  bottom: 16px;
  right: 10px;
}

.proStar_eight {
  width: 18px;
  top: -45px;
  left: 25px;
}

.proStar_nine {
  width: 18px;
  top: -15px;
  left: 0;
}

.proStar_ten {
  width: 18px;
  top: 56px;
  right: 105px;
}

.proStar_eleven {
  width: 18px;
  top: 50%;
  right: 0;
}

.pink_ball {
  position: absolute;
  top: -51px;
  right: -13px;
  z-index: -1;
  pointer-events: none;
}

.rwThree_img_wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 80px;
  padding-right: 80px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.rwThree_img_outtr {
  width: 295px;
  /* height: 295px; */
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  /* background-color: #030124; */
  border-radius: 50%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.rwThree_img_outtr > img {
  width: 100%;
}

.rwThree_img_wrap .white-bx {
  width: 100%;
  height: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background-color: var(--white-color);
  border-radius: 50%;
  mix-blend-mode: overlay;
  position: relative;
}

.gol2_img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  top: 0;
  left: 0;
  mix-blend-mode: overlay;
}

.gol1_img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  top: 0;
  left: 0;
  mix-blend-mode: overlay;
  z-index: 1;
}

/* .gol_light {
    position: absolute;
    top: -30px;
    bottom: -30px;
    left: -30px;
    right: -30px;
    z-index: 2;
} */
.gol_light {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 120%;
}

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

.rwThree_blur_bg {
  width: 450px;
  height: 450px;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: -110px;
  right: -83px;
  mix-blend-mode: lighten;
  z-index: 1;
  pointer-events: none;
}

.rwThree_blur_bg2 {
  width: 548px;
  height: 548px;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 40px;
  left: -100px;
  z-index: 1;
  mix-blend-mode: screen;
}

.rwFour_img_wrap {
  width: 100%;
  height: 100%;
  padding: 0 0 0 40px;
}

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

.bell_img {
  position: absolute;
  top: 55px;
  left: 32px;
  z-index: 1;
}

.rwFive_img_wrap {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 30px;
}

.rwFive_img_wrap img,
.rwFive_img_wrap svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50px;
}

.rwFour_blur_bg {
  position: absolute;
  top: -130px;
  bottom: -130px;
  left: -50px;
  right: -50px;
  z-index: -1;
  pointer-events: none;
}

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

.pink_ball.secnd {
  width: 124px;
  top: -30px;
  right: 0;
}

.rwSix_img_wrap {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 60px 74px 50px 65px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.rwSix_img_wrap .social_icon {
  width: 151px;
  background-color: var(--white-color);
  border-radius: 50%;
  padding: 11px;
  position: relative;
}

.rwSix_img_wrap .social_icon img {
  width: 100%;
  -webkit-filter: drop-shadow(0px 64px 24px rgba(29, 0, 33, 0.75));
  filter: drop-shadow(0px 64px 24px rgba(29, 0, 33, 0.75));
}

.rwSix_img_wrap .social_icon:last-child img {
  -webkit-filter: drop-shadow(0px 64px 24px rgba(23, 0, 165, 0.71));
  filter: drop-shadow(0px 64px 24px rgba(23, 0, 165, 0.71));
}

.rwSix_img_wrap .social_icon:first-child {
  margin-right: auto;
}

.rwSix_img_wrap .social_icon:last-child {
  margin-left: auto;
}

.shdw1 {
  position: absolute;
  top: -11px;
  bottom: -11px;
  left: -11px;
  right: -11px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: -1;
}

.shdw2 {
  position: absolute;
  top: -23px;
  bottom: -23px;
  left: -23px;
  right: -23px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: -2;
}

.line_cmn {
  position: absolute;
  width: 77px;
}

.line_cmn svg {
  width: 100% !important;
  height: inherit !important;
}

.line_cmn.line1 {
  bottom: 21%;
  left: 31%;
}

.line_cmn.line2 {
  top: 25%;
  right: 34%;
}

.pink_blur_bg {
  position: absolute;
  top: 7%;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

.rounded_cmn {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.rounded_cmn.ring1 {
  width: 185px;
  bottom: 10%;
  left: 0;
}

.rounded_cmn.ring1 img {
  width: 100%;
}

.rounded_cmn.ring2 {
  width: 160px;
  bottom: 30%;
  right: 0;
}

.rounded_cmn.ring2 img {
  width: 100%;
}

.rwSix_img {
  position: absolute;
  top: -92px;
  left: -64px;
  bottom: -43px;
  right: -30px;
  pointer-events: none;
  z-index: -1;
}

.rwSix_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
}

/* SD END */

.banner-chat-wpr {
  opacity: 0;
}

.banner-lft-cntnt h1 .banner-span {
  display: block;
}

.float {
  -webkit-animation: float 4s ease-in infinite;
  animation: float 4s ease-in infinite;
}

@-webkit-keyframes float {
  0%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  25%,
  75% {
    -webkit-transform: translateY(2.5%);
    transform: translateY(2.5%);
  }

  50% {
    -webkit-transform: translateY(-2.5%);
    transform: translateY(-2.5%);
  }
}

@keyframes float {
  0%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  25%,
  75% {
    -webkit-transform: translateY(2.5%);
    transform: translateY(2.5%);
  }

  50% {
    -webkit-transform: translateY(-2.5%);
    transform: translateY(-2.5%);
  }
}

[data-title],
[data-btnwpr],
[data-slide],
[data-move] {
  opacity: 0;
}

span.title_wrapper {
  margin-top: -0.08em;
}

/* product sec animation */
.rwOne_img_wrap {
  height: 112%;
  -webkit-transform: translateY(-12%);
  -ms-transform: translateY(-12%);
  transform: translateY(-12%);
}

.product_img_innr > div {
  position: relative;
  height: 100%;
  z-index: 1;
}

.rwOne_img_wrap img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: 1s ease;
  -o-transition: 1s ease;
  transition: 1s ease;
  -webkit-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
  transform-origin: bottom center;
  opacity: 0;
}

.product_img_innr img:not(:first-child) {
  top: 0;
  left: 0;
  width: 100%;
  position: absolute;
}

.product_img_innr.rwFive_img_wrap img:not(:first-child) {
  -o-object-fit: contain;
  object-fit: contain;
}

.rwOne_img_wrap .ufo,
.rwOne_img_wrap .shadow {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.rwOne_img_wrap .light {
  opacity: 0;
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
  -webkit-transition: 1.5s linear;
  -o-transition: 1.5s linear;
  transition: 1.5s linear;
}

.rwOne_img_wrap .robot {
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}

.rwOne_img_wrap[data-reveal="active"] .ufo,
.rwOne_img_wrap[data-reveal="active"] .shadow {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.rwOne_img_wrap[data-reveal="active"] .robot {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  -webkit-animation: float 4s ease-in infinite;
  animation: float 4s ease-in infinite;
}

.rwOne_img_wrap[data-reveal="active"] .light {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.5;
  -webkit-animation: blink 4s ease-in-out infinite;
  animation: blink 4s ease-in-out infinite;
}

@-webkit-keyframes blink {
  0%,
  100% {
    opacity: 0.5;
  }

  25%,
  75% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.8;
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 0.5;
  }

  25%,
  75% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.8;
  }
}

.graph {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.svgworld {
  opacity: 0;
  width: 100%;
  height: 100%;
}

.bell_img {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation: ring 4s ease-in-out infinite;
  animation: ring 4s ease-in-out infinite;
}

@-webkit-keyframes ring {
  0%,
  80% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  20%,
  65% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  50% {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
}

@keyframes ring {
  0%,
  80% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  20%,
  65% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  50% {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
}

.scanimg {
  -webkit-transform-origin: "top center";
  -ms-transform-origin: "top center";
  transform-origin: "top center";
  -webkit-transform: scale(0.45) translateX(-3%) translateY(-25%);
  -ms-transform: scale(0.45) translateX(-3%) translateY(-25%);
  transform: scale(0.45) translateX(-3%) translateY(-25%);
  -webkit-animation: scan 4s linear infinite;
  animation: scan 4s linear infinite;
  opacity: 1;
}

@-webkit-keyframes scan {
  0%,
  50%,
  100% {
    -webkit-transform: scale(0.45) translateX(-3%) translateY(-25%);
    transform: scale(0.45) translateX(-3%) translateY(-25%);
    opacity: 1;
  }

  10% {
    opacity: 1;
  }

  25% {
    -webkit-transform: scale(0.2) translateX(-3%) translateY(45%);
    transform: scale(0.2) translateX(-3%) translateY(45%);
    opacity: 0;
  }

  75% {
    -webkit-transform: scale(0.2) translateX(-3%) translateY(-175%);
    transform: scale(0.2) translateX(-3%) translateY(-175%);
    opacity: 0;
  }

  90% {
    opacity: 1;
  }
}

@keyframes scan {
  0%,
  50%,
  100% {
    -webkit-transform: scale(0.45) translateX(-3%) translateY(-25%);
    transform: scale(0.45) translateX(-3%) translateY(-25%);
    opacity: 1;
  }

  10% {
    opacity: 1;
  }

  25% {
    -webkit-transform: scale(0.2) translateX(-3%) translateY(45%);
    transform: scale(0.2) translateX(-3%) translateY(45%);
    opacity: 0;
  }

  75% {
    -webkit-transform: scale(0.2) translateX(-3%) translateY(-175%);
    transform: scale(0.2) translateX(-3%) translateY(-175%);
    opacity: 0;
  }

  90% {
    opacity: 1;
  }
}

.drawlinessvg {
  opacity: 0;
}

.lin,
.graph {
  opacity: 0;
}

/* product sec animation */
.tknmcs-img-wpr video {
  width: 100%;
  height: auto;
}

.upper-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.lower-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
}

.social-media-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -11px;
  line-height: 1;
  list-style: none;
  padding: 0;
}

.social-media-list li {
  padding: 0 11px;
}

.social-media-list li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 29px;
  max-height: 29px;
}

.social-media-list li a:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  opacity: 0.6;
}

.social-media-list li a img{
  object-fit: contain;
}

/* ========== responsive css =========== */

@media (min-width: 1025px) {
  /* navbar*/
  .navbar-nav .clickD {
    display: none;
  }

  .navbar-nav li.menu-item-has-children:hover > .sub-menu {
    display: block;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
    padding: 0 15px;
  }
}

@media (max-width: 1599px) {
  .main-banner .banner-rht-cntnt {
    padding: 0 55px;
  }

  .main-banner .banner-rht-cntnt .banner-chat-bot {
    right: 90px;
    width: 35%;
  }

  .main-banner .banner-rht-cntnt .banner-circle {
    left: -4%;
  }

  h1,
  .h1-title {
    font-size: 64px;
  }
}

@media (max-width: 1399px) {
  .star-top-left {
    left: -20px;
  }

  .star-bottom-left {
    left: -20px;
  }

  .star-bottom-right {
    right: -20px;
  }

  .footer-star {
    left: -20px;
  }

  .tknmcs-img-wpr {
    max-width: 330px;
  }

  .product_sec {
    padding-bottom: 80px;
  }

  /* SD START */

  .prduct_main {
    padding: 0 20px;
  }

  .product_sec {
    padding: 100px 0;
  }

  .proStar_three {
    right: -10px;
  }

  /* SD END */
  .main-banner .banner-rht-cntnt {
    padding: 0 75px 0 25px;
  }

  .main-banner .banner-rht-cntnt .banner-chat-bot {
    right: 120px;
    width: 25%;
    top: 60%;
  }

  .main-banner .banner-rht-cntnt .right-star {
    right: 0;
  }

  .about-rht-cntnt .right-star {
    right: -20px;
  }
}

@media (max-width: 1199px) {
  /* header responsive start */

  .navbar-brand {
    width: 165px;
    margin-right: 20px;
  }

  .main-head .nav-right {
    padding-left: 10px;
  }

  .navbar-nav > li > a {
    font-size: 16px;
    padding: 38px 12px;
  }

  .cmn-btn {
    padding: 15px 20px;
    min-width: 135px;
    font-size: 16px;
  }

  /* header responsive end */

  h2,
  .h2-title {
    font-size: 50px;
  }

  .footer-sec .logo-sec {
    max-width: 200px;
  }

  .footer-sec .footer-content {
    max-width: calc(100% - 200px);
  }

  .footer-sec .footer-content {
    padding-left: 90px;
  }

  .footer-links ul li:not(:last-child),
  .copy-right-sec ul li:not(:last-child) {
    margin-right: 20px;
  }

  .footer-shape {
    max-width: 490px;
  }

  .about-img-wpr {
    text-align: center;
  }

  .about-img-wpr img.about-glow {
    left: 50%;
  }

  .about-img-wpr img {
    max-width: 310px;
  }

  .about-rht-cntnt {
    padding-left: 0;
  }

  .tokenomics-sec .tknmcs-row .tknmcs-mdl-col {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 30px;
    width: 100%;
  }

  .tokenomics-sec .tknmcs-row .tknmcs-lft-col {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
  }

  .tokenomics-sec .tknmcs-row .tknmcs-rht-col {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 100%;
  }

  h1,
  .h1-title {
    font-size: 50px;
  }

  .banner-row .banner-lft-col {
    width: 43%;
  }

  .banner-row .banner-rht-col {
    width: 57%;
  }

  .main-banner .banner-rht-cntnt {
    padding: 0 85px 0 0;
  }

  .main-banner .banner-rht-cntnt .left-star {
    bottom: -15px;
  }

  .banner-chat-wpr .banner-each-chat {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .main-banner .banner-in {
    padding: 75px 0 120px;
  }

  .main-banner .banner-rht-cntnt .banner-chat-bot {
    right: 113px;
    width: 26%;
  }

  .main-banner .banner-rht-cntnt .right-star {
    right: 0;
  }

  .about-rht-cntnt .right-star {
    right: -20px;
    top: 30%;
  }

  .about-sec-in {
    padding-bottom: 320px;
  }

  /* SD START */

  .product_sec {
    padding: 80px 0;
  }

  .product_rw {
    --bs-gutter-x: 40px;
  }

  .product_txt_content h3 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .prduct_head {
    margin-bottom: 50px;
  }

  .product_img_wrppr {
    height: 320px;
  }

  .rwOne_img_wrap {
    height: 100%;
  }

  .rwOne_img_wrap > img,
  .rwOne_img_wrap > svg {
    margin-top: -25px;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .rwOne_blur_bg {
    top: -80px;
  }

  .rwTwo_blur_bg {
    top: -122px;
    left: -7px;
    height: 138%;
    width: 100%;
  }

  .rwThree_img_outtr {
    width: 230px;
    height: 230px;
  }

  .rwFour_img_wrap {
    padding: 10px 0 10px 25px;
  }

  .pink_ball {
    width: 100px;
    top: -30px;
    right: -10px;
  }

  .rwThree_blur_bg {
    width: 350px;
    height: 350px;
    top: -80px;
    right: -53px;
  }

  .rwThree_blur_bg2 {
    width: 350px;
    height: 350px;
    top: 70px;
    left: -40px;
  }

  .bell_img {
    top: 35px;
  }

  .rwFour_blur_bg {
    top: -90px;
    bottom: -70px;
    left: -30px;
    right: -30px;
  }

  .rwFive_img_wrap {
    padding: 20px;
  }

  .rwSix_img_wrap .social_icon {
    width: 90px;
    padding: 7px;
  }

  .shdw1 {
    top: -7px;
    bottom: -7px;
    left: -7px;
    right: -7px;
  }

  .shdw2 {
    top: -14px;
    bottom: -14px;
    left: -14px;
    right: -14px;
  }

  .line_cmn {
    width: 90px;
  }

  .line_cmn.line2 {
    top: 23%;
    right: 36%;
  }

  .line_cmn.line1 {
    bottom: 21%;
    left: 34%;
  }

  .rwSix_img {
    top: -80px;
    left: -50px;
    bottom: -63px;
    right: 0;
  }

  .product_rw:not(:last-child) {
    margin-bottom: 40px;
  }

  .rounded_cmn.ring1 {
    width: 135px;
    bottom: 7%;
  }

  .rounded_cmn.ring2 {
    width: 120px;
    bottom: 25%;
  }

  /* SD END */
}

@media (max-width: 1024px) {
  /* navbar*/
  .navbar-nav .clickD {
    position: absolute;
    right: 0;
    top: 17px;
    width: 20px;
    height: 20px;
    background: url(images/sort-down.svg) center center no-repeat;
    display: block;
    background-size: 10px;
    cursor: pointer;
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu > li.menu-item-has-children .clickD {
    top: 8px;
    right: 5px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  .sub-menu > li.menu-item-has-children .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .navbar-nav > li.menu-item-has-children {
    padding-right: 20px;
  }

  .sub-menu > li.menu-item-has-children > a {
    padding-right: 20px;
  }

  .sub-menu.show {
    display: block;
  }

  /* .navbar-nav>li {
        padding-top: 15px;
        padding-bottom: 15px;
    } */

  .navbar-nav > li.current-menu-item > a:after,
  .navbar-nav > li > a:after,
  .navbar-nav > li.menu-item-has-children > a:after {
    width: 100%;
    opacity: 0;
  }

  .navbar-nav > li.current-menu-item > a:after,
  .navbar-nav > li > a:hover:after,
  .navbar-nav > li.menu-item-has-children:hover > a:after {
    width: 100%;
    opacity: 1;
  }

  /* navbar end*/
}

@media (max-width: 991px) {
  /* navbar*/
  .navbar-toggler {
    position: relative;
    width: 33px;
    margin-left: auto;
    height: 28px;
    padding: 0;
    outline: none !important;
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }

  .stick,
  .stick:after,
  .stick:before {
    width: 30px;
    height: 2px;
    background: var(--white-color);
    position: absolute;
    left: 0;
    top: auto;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    border-radius: 5px;
  }

  .stick:before {
    content: "";
    top: -10px;
    left: 0;
  }

  .stick:after {
    content: "";
    top: 10px;
    left: 0;
  }

  .stick.open {
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
    background: transparent;
  }

  .stick.open:before {
    -webkit-transform: rotate(45deg) translate(42px, -28px);
    -ms-transform: rotate(45deg) translate(42px, -28px);
    transform: rotate(45deg) translate(42px, -28px);
    left: 2px;
  }

  .stick.open:after {
    -webkit-transform: rotate(-45deg) translate(42px, 28px);
    -ms-transform: rotate(-45deg) translate(42px, 28px);
    transform: rotate(-45deg) translate(42px, 28px);
    left: 2px;
  }

  .navbar-nav .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu > li.menu-item-has-children .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  .sub-menu,
  .navbar-nav > li > .sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
    right: inherit;
  }

  .navbar-nav > li.menu-item-has-children {
    padding-right: 0;
  }

  .navbar-nav > li {
    margin: 0;
    padding: 0;
  }

  .navbar-nav > li > a {
    padding: 8px 20px;
    display: inline-block;
    width: 100%;
    text-align: left;
    font-size: 20px;
  }

  .navbar-nav li.menu-item-has-children > a {
    padding-right: 30px;
  }

  .sub-menu > li > a {
    padding-left: 40px;
  }

  .sub-menu .sub-menu > li > a {
    padding-left: 60px;
  }

  .sub-menu .sub-menu .sub-menu > li > a {
    padding-left: 80px;
  }

  .navbar-nav > li > a:after {
    bottom: 0;
  }

  /* navbar end*/

  /* push nav */

  .navbar-collapse {
    background: var(--theme-black);
    border-left: 1px solid rgba(255, 255, 255, 0.6);
    position: fixed;
    top: 0;
    height: 100% !important;
    width: 290px;
    overflow-y: auto;
    -webkit-transition: inherit !important;
    -o-transition: inherit !important;
    transition: inherit !important;
    right: 0;
    margin: 0;
    display: block !important;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform 0.2s ease-in-out !important;
    -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
    transition: -webkit-transform 0.2s ease-in-out !important;
    -o-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
    z-index: 100;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: block !important;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: transform 0.2s ease-in-out !important;
    -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
    transition: -webkit-transform 0.2s ease-in-out !important;
    -o-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
  }

  .navbar-collapse .navbar-nav {
    margin: 80px 0 0;
    padding: 0 0 40px 0;
  }

  .navbar-collapse .navbar-toggler {
    display: block;
    right: 20px;
    top: 20px;
    position: absolute;
  }

  #navoverlay.open {
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: all;
    -webkit-transition: background-color 0.5s linear;
    -o-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
  }

  body.open-nav,
  html.open-nav {
    height: 100%;
    overflow: hidden;
  }

  /* .navbar-nav>li{ 

    } */

  /* .navbar-nav>li>a{ 
        color: var(--white-color);
        text-align: center;
        position: relative;
        background: rgba(255, 255, 255, 0.01);
        box-shadow: inset 0px 39px 56px -36px rgba(255, 255, 255, 0.5), 
        inset 0px 7px 11px -4px #FFFFFF, 
        inset 0px -82px 30px -64px rgba(14, 78, 114, 0.3), 
        inset 0px 98px 60px -48px rgba(245, 136, 255, 0.24), 
        inset 0px 4px 10px #AD00FF, 
        inset 0px 1px 20px rgba(13, 137, 207, 0.2);
        backdrop-filter: blur(12.5px);
        border-radius: 60px;
    } */

  /* .navbar-nav>li>a::before{
        content: '';
        position: absolute;
        top: 4px;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 60px;
        z-index: -2;
        background: linear-gradient(83.46deg, #F68AFF 12.22%, #EB00FF 55.09%, #AD00FF 94%);
        filter: blur(22px);
        opacity: 0;
        visibility: hidden;
    } */

  /* .navbar-nav>li>a::after{ 
        content: '';
        position: absolute;
        top: 2px;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 60px;
        background: linear-gradient(83.46deg, #F68AFF 12.22%, #EB00FF 55.09%, #AD00FF 94%);
        z-index: -1;
        transform: inherit;
        opacity: 0;
        visibility: hidden;
    } */

  .navbar-nav > li > a::before,
  .navbar-nav > li > a::after {
    display: none;
  }

  .navbar-nav > li.current-menu-item > a {
    /* background: linear-gradient(to bottom, var(--white-color), rgba(255, 255, 255, 0)); */
    color: var(--theme-purple);
  }

  .navbar-nav > li.current-menu-item > a::before,
  .navbar-nav > li.current-menu-item > a::after {
    opacity: 1;
    visibility: visible;
    color: var(--theme-purple);
  }

  .navbar-nav > li {
    margin-bottom: 10px;
  }

  .navbar-nav > li:last-child {
    margin-bottom: 0;
  }

  /* push nav end */

  /* DM START */

  .main-head {
    padding: 10px 0;
  }

  .navbar-toggler {
    margin-left: 15px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .main-head .nav-right {
    margin-left: auto;
    padding-left: 0;
  }

  .main-head .cmn-btn {
    padding: 10px 14px;
    min-width: 106px;
    font-size: 14px;
  }

  /* DM START */
  .cmn-head > span {
    font-size: 14px;
    margin-bottom: 15px;
  }

  h2,
  .h2-title {
    font-size: 40px;
  }

  .roadmap-section .cmn-head {
    margin-bottom: 30px;
  }

  .roadmap-cont .roadmap-head span {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .roadmap-cont .roadmap-head h3 {
    font-size: 26px;
  }

  .roadmap-cont .roadmap-head {
    margin-bottom: 18px;
  }

  .roadmap-cont ul li::before {
    width: 14px;
    height: 9px;
  }

  .roadmap-cont ul li {
    padding-left: 25px;
  }

  .research-bg {
    top: -50%;
  }

  .roadmap-cont ul {
    max-width: 100%;
  }

  .roadmap-section {
    padding-bottom: 66px;
  }

  .top-right-shape {
    top: -16%;
  }

  .research-col-left,
  .research-col-right {
    width: 100%;
  }

  .research-card {
    padding: 35px 40px 50px;
    border-radius: 30px;
  }

  .research-row .research-col-left .cmn-head {
    margin-bottom: 20px;
  }

  .research-col-right .bg {
    margin: -51% -8px 0;
  }

  .research-col-right .robot {
    max-width: 304px;
    margin: 0 auto 0px 28.5%;
  }

  .research-row .research-col-left p {
    margin-bottom: 25px;
  }

  .research-col-left {
    margin-bottom: 30px;
  }

  .research-sec {
    position: relative;
    padding: 80px 0;
  }

  h3,
  .h3-title {
    font-size: 25px;
  }

  .community-sec .cmn-head {
    margin: 0 auto 30px auto;
  }

  .community-card h3 {
    font-size: 25px;
    margin-bottom: 17px;
  }

  .community-card {
    padding: 30px;
    border-radius: 25px;
  }

  .community-card figure img {
    width: 25px;
    height: 25px;
  }

  .community-card figure {
    width: 56px;
    height: 56px;
  }

  .community-card .cmn-btn {
    font-size: 16px;
    max-width: 229px;
    padding: 16px;
  }

  .community-sec {
    padding-bottom: 90px;
  }

  .footer-sec {
    padding-bottom: 30px;
  }

  .footer-sec .logo-sec,
  .footer-sec .footer-content {
    max-width: 100%;
  }

  .footer-sec .logo-sec {
    text-align: center;
    margin-bottom: 15px;
  }

  .footer-sec .footer-content {
    padding-left: 0;
    margin-top: 20px;
  }

  .footer-links ul,
  .copy-right-sec ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer-links ul {
    margin-bottom: 17px;
  }

  .footer-sec .logo-sec a {
    max-width: 200px;
  }

  .footer-shape {
    max-width: 440px;
  }

  /* DM END */

  .about-img-wpr {
    padding-left: 40px;
  }

  .about-sec-in {
    padding-bottom: 350px;
  }

  .tknmcs-img-wpr {
    max-width: 300px;
  }

  .about-sec {
    padding: 90px 0 0;
  }

  .tokenomics-sec {
    padding: 80px 0 20px;
  }

  .main-banner {
    padding: 104px 0 50px;
  }

  .banner-row .banner-lft-col {
    width: 100%;
    margin-bottom: 40px;
  }

  .banner-row .banner-rht-col {
    width: 100%;
  }

  h1,
  .h1-title {
    font-size: 50px;
  }

  .main-banner .banner-rht-cntnt {
    /* max-width: 70%; */
    margin: 0 auto;
  }

  .main-banner .banner-rht-cntnt {
    margin-top: 0;
  }

  .main-banner .banner-rht-cntnt .banner-chat-bot {
    right: 155px;
  }

  .main-banner .banner-rht-cntnt {
    padding: 0 105px 0 40px;
  }

  .main-banner .banner-rht-cntnt .banner-chat-wpr {
    height: 516px;
  }

  .about-img-wpr img.about-glow {
    width: 100%;
  }

  .main-banner .banner-in {
    padding: 55px 0 80px;
  }

  .about-rht-cntnt .right-star {
    right: 10px;
    top: 0%;
  }

  /* SD START */

  .product_img_wrppr {
    max-width: 450px;
    margin: 0 auto;
  }

  .product_rw {
    --bs-gutter-x: 0;
    --bs-gutter-y: 30px;
  }

  .product_txt_content {
    text-align: center;
  }

  .product_rw:not(:last-child) {
    margin-bottom: 60px;
  }

  .pink_ball {
    right: 70px;
  }

  .pink_ball.secnd {
    width: 100px;
    right: 60px;
  }

  .prduct_head {
    margin-bottom: 70px;
  }

  /* SD END */
  

  .upper-footer {
    justify-content: center;
}

.footer-sec .logo-sec a {
    max-width: 180px;
}

.footer-sec .logo-se {
    margin-bottom: 15px;
}

.lower-footer {
    justify-content: center;
    margin-top: 15px;
}

.copy-right-sec {
    margin-top: 10px;
}

}

@media (max-width: 767px) {
  /* images alignment for wordpress content pages */
  .alignright,
  .alignleft,
  .aligncenter {
    float: none;
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    clear: both;
    margin-bottom: 24px;
  }

  .roadmap-row .roadmap-col {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .roadmap-row .roadmap-col:last-child {
    margin-bottom: 0;
  }

  .research-bg {
    top: -40%;
  }

  h2,
  .h2-title {
    font-size: 35px;
  }

  .cmn-head > span {
    font-size: 12px;
  }

  .roadmap-cont .roadmap-head h3 {
    font-size: 24px;
  }

  .roadmap-cont ul li {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .roadmap-cont .top-line-outer {
    height: 7px;
    margin-bottom: 17px;
  }

  .research-row .research-col-left a {
    margin-bottom: 16px;
  }

  .research-col-right .bg {
    margin: -54% -8px 0;
  }

  .research-col-right .robot {
    max-width: 224px;
  }

  .community-sec .community-col {
    margin-bottom: 30px;
  }

  .community-sec .community-col:last-child {
    margin-bottom: 0;
  }

  .footer-links ul li a {
    font-size: 15px;
  }

  .copy-right-sec ul li {
    font-size: 15px;
  }

  .copy-right-sec ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .copy-right-sec ul li {
    width: 100%;
    text-align: center;
  }

  .copy-right-sec ul li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }

  body {
    font-size: 16px;
  }

  .cmn-btn {
    padding: 16px 20px;
    min-width: 160px;
  }

  .about-img-wpr img {
    max-width: 240px;
  }

  h1,
  .h1-title {
    font-size: 40px;
  }

  .main-banner .banner-rht-cntnt .banner-chat-wpr {
    padding: 38px 42px 34px 40px;
    border-radius: 30px;
  }

  .main-banner .banner-rht-cntnt {
    padding: 0;
  }

  .main-banner .banner-rht-cntnt .banner-chat-bot {
    right: 0;
    bottom: 0;
    top: auto;
    -webkit-transform: translateY(70%);
    -ms-transform: translateY(70%);
    transform: translateY(70%);
  }

  .about-sec-in {
    padding-bottom: 320px;
  }

  .roadmap-section .roadmap-row {
    --bs-gutter-y: 20px;
  }

  .community-row {
    --bs-gutter-x: 0;
  }

  .about-sec-in::before {
    height: 22%;
  }

  /* SD START */

  .product_txt_content h3 {
    font-size: 24px;
  }

  .prduct_head {
    margin-bottom: 60px;
  }

  .pink_ball {
    right: 0;
    width: 80px;
  }

  .pink_ball.secnd {
    width: 80px;
    right: 0;
  }

  .rwSix_img_wrap {
    padding: 50px 85px;
  }

  .product_img_wrppr {
    max-width: 320px;
    height: 250px;
  }

  .product_img_wrppr {
    border-radius: 30px;
  }

  .rwOne_img_wrap > img,
  .rwOne_img_wrap > svg {
    margin-top: -15px;
  }

  .rwOne_blur_bg {
    top: -50px;
  }

  .product_rw {
    --bs-gutter-y: 25px;
  }

  .product_rw:not(:last-child) {
    margin-bottom: 40px;
  }

  .pink_ball {
    right: 70px;
    width: 60px;
    top: -20px;
  }

  .rwTwo_blur_bg {
    top: -95px;
  }

  .rwThree_img_outtr {
    width: 200px;
    height: 200px;
  }

  /* .gol_light {
        top: -15px;
        bottom: -15px;
        left: -15px;
        right: -15px;
    } */
  .rwThree_img_wrap {
    padding: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .rwThree_blur_bg2 {
    width: 250px;
    height: 250px;
  }

  .rwThree_blur_bg {
    width: 250px;
    height: 250px;
    top: -50px;
  }

  .rwFour_blur_bg {
    top: -60px;
    bottom: -40px;
  }

  .rwSix_img_wrap {
    padding: 35px 45px;
  }

  .rwSix_img_wrap .social_icon {
    width: 65px;
  }

  .line_cmn {
    width: 75px;
  }

  .line_cmn.line1 {
    bottom: 20%;
    left: 27%;
  }

  .line_cmn.line2 {
    top: 18%;
    right: 30%;
  }

  .rwSix_img {
    top: -50px;
    left: -40px;
    bottom: -20px;
  }

  .rounded_cmn.ring1 {
    width: 90px;
  }

  .rounded_cmn.ring2 {
    width: 80px;
  }

  .pink_blur_bg {
    max-width: 260px;
    width: 100%;
  }

  .pink_ball.secnd {
    width: 70px;
    right: 70px;
  }

  .product_sec {
    padding: 60px 0;
  }

  .bell_img {
    top: 20px;
    width: 30px;
    left: 20px;
  }

  .rwFive_img_wrap img,
  .rwFive_img_wrap svg {
    border-radius: 20px;
  }

  /* SD END */

  .roadmap-section {
    padding: 80px 0 20px;
  }

  .copy-right-sec ul li:not(:last-child){
    margin: 0px !important;
  }

  .copy-right-sec ul li + li {
    margin-top: 5px;
}

.footer-links ul li {
    margin: 3px 8px !important;
}

.lower-footer {
    margin-top: 25px;
}

}

@media (max-width: 575px) {
  .cmn-head > span {
    margin-bottom: 5px;
  }

  h2,
  .h2-title {
    font-size: 30px;
  }

  .roadmap-section .cmn-head {
    margin-bottom: 20px;
  }

  .roadmap-cont .roadmap-head span {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .roadmap-cont .roadmap-head h3 {
    font-size: 22px;
  }

  .roadmap-cont ul li {
    font-size: 15px;
  }

  .roadmap-cont .top-line-outer {
    height: 6px;
    margin-bottom: 15px;
  }

  .roadmap-section {
    padding-bottom: 50px;
  }

  .star-top-left {
    left: 0;
    width: 20px;
    height: 20px;
    top: -35px;
  }

  .research-card {
    padding: 35px 32px 35px;
  }

  .research-sec {
    padding-bottom: 55px;
  }

  .star-bottom-right {
    right: 0;
    bottom: -40px;
    width: 23px;
    height: 23px;
  }

  .star-bottom-left {
    left: 0;
  }

  h3,
  .h3-title {
    font-size: 22px;
  }

  .community-card {
    padding: 22px;
    border-radius: 16px;
  }

  .community-card figure img {
    width: 20px;
    height: 20px;
  }

  .community-card figure {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px auto;
  }

  .community-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .community-sec {
    padding-bottom: 55px;
  }

  .footer-star {
    left: 0;
    top: -40px;
    width: 15px;
    height: 15px;
  }

  .footer-sec .logo-sec a {
    max-width: 170px;
  }

  .footer-links ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer-links ul {
    margin-bottom: 0;
  }

  .footer-links ul li {
    margin-bottom: 15px;
  }

  .footer-sec {
    padding-bottom: 20px;
  }

  .top-right-shape {
    top: -20%;
  }

  .research-bg {
    top: -48%;
  }

  .research-col-right .robot {
    margin: 0 auto 0px 24.5%;
  }

  .about-img-wpr {
    padding-left: 0;
  }

  .about-img-wpr img {
    max-width: 220px;
  }

  .banner-lft-cntnt h1 .banner-hdng-span::after {
    width: 30px;
    height: 30px;
    margin-left: 7px;
  }

  h1,
  .h1-title {
    font-size: 35px;
  }

  .banner-chat-wpr .banner-each-chat {
    font-size: 16px;
  }

  .banner-chat-wpr .banner-each-chat.rply {
    padding: 12px 30px 12px 12px;
  }

  .banner-chat-wpr .banner-each-chat {
    padding: 12px 12px 12px 30px;
  }

  .container {
    padding: 0 15px;
  }

  .tknmcs-img-wpr {
    max-width: 100%;
    width: 100%;
    padding: 70px;
  }

  .tknmcs-img-wpr .tknmcs-glow {
    width: 100%;
    height: 100%;
  }

  .tokenomics-sec {
    padding: 30px 0 0;
  }

  .about-sec-in {
    margin-bottom: -20px;
  }

  /* SD START */

  .prduct_main {
    padding: 0;
  }

  .pink_ball {
    right: 20px;
  }

  .proStar_three {
    right: 0;
    top: 0;
  }

  .pink_ball {
    right: 40px;
  }

  .proStar_six {
    width: 18px;
    left: 0;
  }

  .pink_ball.secnd {
    width: 60px;
    right: 45px;
    top: -20px;
  }

  /* SD END */

  .roadmap-section {
    padding: 80px 0 20px;
  }

  .tokenomics-sec .tknmcs-row .tknmcs-mdl-col {
    margin-bottom: 10px;
  }
}

@media (max-width: 479px) {
  .research-bg {
    top: -36%;
  }

  h2,
  .h2-title {
    font-size: 23px;
  }

  .research-row .research-col-left a {
    font-size: 16px;
  }

  .research-col-right .robot {
    margin: 0 auto 0px 25.5%;
  }

  .research-col-right .robot {
    max-width: 164px;
  }

  h3,
  .h3-title {
    font-size: 20px;
  }

  .research-card {
    padding: 30px 20px 30px;
  }

  body {
    font-size: 15px;
  }

  .main-banner .banner-rht-cntnt {
    max-width: 100%;
    width: 100%;
  }

  h1,
  .h1-title {
    font-size: 28px;
  }

  .banner-chat-wpr .banner-each-chat {
    font-size: 14px;
  }

  .main-banner .banner-rht-cntnt .banner-chat-wpr {
    padding: 22px 34px;
    border-radius: 25px;
  }

  .main-banner .banner-rht-cntnt .banner-chat-bot {
    -webkit-transform: translateY(80%);
    -ms-transform: translateY(80%);
    transform: translateY(80%);
    width: 110px;
  }

  .tknmcs-img-wpr {
    padding: 40px;
  }

  .navbar-brand {
    width: 135px;
    margin-right: 10px;
  }

  .main-head {
    padding: 15px 0;
  }

  .main-banner .banner-rht-cntnt .banner-chat-wpr {
    height: 475px;
  }

  /* SD START */

  .product_txt_content h3 {
    font-size: 20px;
  }

  .product_img_wrppr {
    max-width: 280px;
    height: 200px;
  }

  .product_sec {
    padding: 40px 0;
  }

  .proStar_one {
    top: -20px;
    left: 30px;
  }

  .proStar_two {
    width: 18px;
    top: 12%;
    right: 25px;
  }

  .proStar_three {
    top: -25px;
    width: 14px;
  }

  .proStar_four {
    width: 14px;
    top: -30px;
    left: 0;
  }

  .proStar_six {
    top: -30px;
  }

  .proStar_seven {
    bottom: 20px;
    right: 30px;
  }

  .proStar_eight {
    width: 14px;
    top: -20px;
    left: 5px;
  }

  .proStar_ten {
    top: 15px;
    right: 45px;
  }

  .rwTwo_img_wrap {
    height: 100%;
    padding: 0 15px 5px 15px;
  }

  .rwTwo_blur_bg {
    top: -60px;
    height: 130%;
  }

  .pink_ball {
    right: -5px;
  }

  .rwThree_img_outtr {
    width: 150px;
    height: 150px;
  }

  .rwThree_blur_bg {
    width: 200px;
    height: 200px;
    top: -40px;
    right: -30px;
  }

  .rwThree_blur_bg2 {
    width: 200px;
    height: 200px;
    top: 50px;
    left: 0px;
  }

  .bell_img {
    width: 25px;
  }

  .line_cmn {
    width: 55px;
  }

  .line_cmn.line2 {
    top: 15%;
    right: 36%;
  }

  .line_cmn.line1 {
    bottom: 15%;
    left: 35%;
  }

  .pink_ball.secnd {
    right: -5px;
  }

  .rounded_cmn.ring1 {
    width: 70px;
    bottom: 5%;
  }

  .rounded_cmn.ring2 {
    width: 70px;
    bottom: 22%;
  }

  .pink_blur_bg {
    max-width: 200px;
  }

  /* SD END */
}

@media (max-width: 374px) {
  .footer-links ul li:not(:last-child),
  .copy-right-sec ul li:not(:last-child) {
    margin-right: 15px;
  }
}

@media (max-width: 320px) {
  .navbar-brand {
    width: 125px;
    margin-right: 10px;
  }

  .main-banner .banner-in {
    padding: 40px 0 70px;
  }
}
