/* container */
.container {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}
/* ================== Media requests for different screen resolutions ================== */
/* 1920px... */
@media (min-width: 1920px) {
  .container {
      max-width: 1430px;
  }
}
/* 1440px - 1919px */
@media (min-width: 1440px) and (max-width: 1919px) {
  .container {
      max-width: 1170px;
  }
}
/* 1200px - 1439px 2xl */
@media (min-width: 1200px) and (max-width: 1439px) {
  .container {
      max-width: 1070px;
  }
}
/* 992px - 1199px xl */
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
      max-width: 960px;
  }
}
/* 768px - 991px lg */
@media (min-width: 768px) and (max-width: 991px) {
  .container {
      max-width: 720px;
  }
}
/* 576px - 767px md */
@media (min-width: 576px) and (max-width: 767px) {
  .container {
      max-width: 540px;
  }
}
/* 320px - 575px sm */
@media (min-width: 320px) and (max-width: 575px) {
  .container {
      max-width: 300px;
  }
}
/* Medium (500) */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url("Montserrat-Medium.woff2") format("woff2"),
    url("Montserrat-Medium.woff") format("woff");
}

/* SemiBold (600) */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url("Montserrat-SemiBold.woff2") format("woff2"),
    url("Montserrat-SemiBold.woff") format("woff");
}

/* Regular (400) */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("Montserrat-Regular.woff2") format("woff2"),
    url("Montserrat-Regular.woff") format("woff");
}

/* ExtraBold (800) */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  src: url("Montserrat-Bold.woff2") format("woff2"),
    url("Montserrat-Bold.woff") format("woff");
}

/* Bold (700) */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("Montserrat-ExtraBold.woff2") format("woff2"),
    url("Montserrat-ExtraBold.woff") format("woff");
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
  font-family: "Montserrat";
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
a:hover {
  cursor: pointer;
}
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}
input,
button,
textarea,
select {
  font: inherit;
}

p {
  color: #ffffff;
  font-family: "Montserrat";
}
b {
  font-weight: bold;
}
ul,
ol,
li {
  list-style: none;
  padding: 0;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3 {
  color: #fff;
  font-family: "Montserrat";
}
h4 {
  color: #ffffff;
  line-height: 28px;
}
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}
body {
  line-height: 34px;
  background-color: #09090c;
  background-size: cover;
  background-image: url("back.png");
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: top center;
  overflow-x: hidden;
  font-family: "Montserrat";
  text-rendering: optimizeSpeed;
  min-height: 100vh;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
input,
button,
textarea,
select {
  font: inherit;
}
main {
  flex: 1 0 auto;
}
/* ========================== Header ========================== */
.header {
  position: fixed;
  width: 100%;
  z-index: 2;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.header-logo {
  max-width: 155px;
  max-height: 50px;
  margin-right: 30px;
}
.header-list {
  gap: 30px;

}
.header a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 10px;
  text-align: center;
  color: #ffffff;
}
header .lang {
  padding: 15px;
  position: relative;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #ffffff;
}
header .lang .lang-menu {
  position: absolute;
  right: 5px;
  top: -200px;
  background: transparent;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
header .lang:after {
  content: "";
  display: block;
  color: #ffffff;
  width: 10px;
  height: 10px;
  right: 0px;
  top: calc(50% - 3px);
  position: absolute;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: 8px auto;
  background-position: center;
}
header .lang:hover .lang-menu {
  top: 40px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
header.sticky {
  background: #19121e;
  box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.4);
  z-index: 9 !important;
  padding: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
header .mob-menu {
  display: none;
}
header .mob-menu-toggle {
  display: none;
}
.menu:hover {
  color: #a18ad4;
  cursor: pointer;
}
header .social-btn-mobile {
  display: none;
}
.language-list {
  right: -80px;
  }
/* 1440px - 1919px */
@media (min-width: 1440px) and (max-width: 1919px) {
  .header a {
    font-size: 12px;
  }
  .header-logo {
    margin-right: 30px;
    max-width: 130px;
    max-height: 43px;
  }
  .header-list {
    gap: 25px;
  }
  .header-list {
    gap: 20px;
}
}
@media (min-width: 1200px) and (max-width: 1325px) {
  .language-list {
  right: -20px;
  width: 105px!important;
  }
}

/* 1200px - 1439px 2xl */
@media (min-width: 1200px) and (max-width: 1439px) {
  .container-header {
    max-width: 1160px !important;
  }
  .header a {
    font-size: 12px;
  }
  .header-logo {
    margin-right: 30px;
    max-width: 130px;
    max-height: 43px;
  }
  .header-list {
    gap: 20px;
  }

}
/* 992px - 1199px xl */
@media screen and (max-width: 1199px) {
  .language-list {
    right: none;
  }
  header .main-menu {
    display: none;
  }
  header .mob-menu {
    display: block;
    height: 25px;
    width: 30px;
    background-image: url("menu.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    margin-left: 25px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  header .mob-main-menu a {
    font-size: 12px;
  }
  header .mob-menu.active {
    width: 40px;
    height: 25px;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  header .mob-menu-toggle {
    display: none;
    position: absolute;
    top: 85px;
    right: 30px;
    background: #201726f5;
    width: 280px;
    height: auto;
    border-radius: 30px;
    padding: 5px 25px;
  }
  header .mob-menu-toggle ul li {
    padding: 6px;
  }
  header .mob-menu-toggle ul li.active a {
    color: #ae86dd;
  }
  header .mob-menu-toggle ul li.active:before {
    content: none;
  }
  header .mob-main-menu li {
    display: block;
  }
}

nav li.selected {
  position: relative;
}

nav li.selected::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border: 0px 1.5px 1.5px 0px;
  background: linear-gradient(90.0deg, #6c1bc8 0%, #ffffff 100%);
}

@media screen and (max-width: 767px) {
  .btn-header-mobile .btn-gradient {
    display: none;
  }
  .header-logo {
    max-width: 124px;
    max-height: 40px;
    margin-right: 40px;
  }
  header .mob-menu {
    height: 20px;
    width: 35px;
  }
  header .mob-main-menu a {
    font-size: 12px;
  }
  header .mob-menu.active {
    width: 35px;
    height: 25px;
  }
  header .mob-menu-toggle {
    top: 100px;
    right: 10px;
    width: 245px;
    border-radius: 30px;
    padding: 5px 25px;
}
header {
  padding-top: 36px;
  min-height: 55px;
}
.btn-header-mobile  .btn-gradient-header-mob {
  position: fixed;
  top: 0px;
  left: -5px;
  border-radius: 0;
  padding: 10px 0px;

  width: calc(54% + 10px);
  max-height: 35px;
  color: #000000 !important;
  background-color: #a18ad4;
  background-image: linear-gradient(90.0deg, #6c1bc8 0%, #ffffff 100%);  -webkit-box-flex: 0;
}
.btn-header-mobile  .btn-gradient-header-mob span {
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #000000;
}
.btn-header-mobile .btn-gradient-header-mob::before,
.btn-header-mobile .btn-gradient-header-mob::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3px;
  content: "";
  border-radius: 0px;
  background: transparent;
}
.btn-header-mobile .btn-gradient-header-mob::before {
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  /* mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); */
}
.btn-header-mobile .btn-gradient-header-mob::after {
  opacity: 0;
}
.btn-header-mobile .btn-gradient-header-mob:hover {
  box-shadow: 0 0 0px 0 #966ac9 inset, 0 0 0px 1px #a27bcf;
  border-radius: 0px;
}
}

.hidden {
  display: none;
}

@media screen and (max-width: 575px) {
  .container-header {
    max-width: 550px !important;
  }
  .header-logo {
    margin-right: 10px;
  }
    header .mob-menu {
      height: 20px;
      width: 25px;
    }
    header .mob-menu.active {
      width: 20px;
      height: 25px;
    }
    header .mob-menu-toggle ul li {
      padding: 2px;
  }
  header .mob-menu-toggle {
    top: 87px;
  }
  .language-list {
    right: 20px;
  }
  .img-language {
    width: 17px !important;
    height: 17px !important;
    margin-right: 5px;
  }
  .language-div {
    font-size: 12px;
  }
}
/* ========================== start button ========================== */
@media (min-width: 768px)  {
  .btn-gradient-header-mob {
    display: none;
  }
}
.btn-gradient {
  position: sticky;
  cursor: pointer;
  text-align: center;
  width: auto;
  height: 50px;
  justify-content: center;
  line-height: 12px;
  align-items: center; 
  padding: 19px 20px;
  z-index: 3;
    display: inline-flex;
}
.btn-gradient span {
  padding: 18px 5px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffffff;
}
.btn-gradient::before,
.btn-gradient::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3px;
  content: "";
  border-radius: 25px;
  background: linear-gradient(90deg, #6c1bc8 0%, #ffffff 100%);
}
.btn-gradient::before {
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.btn-gradient::after {
  opacity: 0;
}
.btn-gradient:hover {
  box-shadow: 0 0 10px 0 #966ac9 inset, 0 0 20px 2px #a27bcf;
  border-radius: 25px;
}

.btn-gradient-header-mob {
  position: sticky;
  cursor: pointer;
  text-align: center;
  width: 170px;
  height: 50px;
  justify-content: center;
  align-items: center; 
  z-index: 3;
}
.btn-gradient-header-mob span {
  padding: 18px 24px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffffff;
}
.btn-gradient-header-mob::before,
.btn-gradient-header-mob::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3px;
  content: "";
  border-radius: 25px;
  background: linear-gradient(90deg, #6c1bc8 0%, #ffffff 100%);
}
.btn-gradient-header-mob::before {
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.btn-gradient-header-mob::after {
  opacity: 0;
}
.btn-gradient-header-mob:hover {
  box-shadow: 0 0 10px 0 #966ac9 inset, 0 0 20px 2px #a27bcf;
  border-radius: 25px;
}
/* .btn-width {
  width: 220px !important;
} */
.btn-purple {
  position: relative;
  display: inline-flex;
  cursor: pointer;
  width: auto;
  height: 50px;
  background-color: #3b0065;
  border-radius: 25px;
  justify-content: center; 
  align-items: center; 
}
.btn-purple span {
  padding: 18px 30px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffffff;
}
.btn-purple::before,
.btn-purple::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3px;
  content: "";
  border-radius: 25px;
  background: linear-gradient(90deg, #6c1bc8 0%, #ffffff 100%);
}
.btn-purple::before {
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
}
.btn-purple::after {
  opacity: 0;
}
.btn-purple:hover {
  box-shadow: 0 0 10px 0 #966ac9 inset, 0 0 20px 2px #a27bcf;
  border-radius: 25px;
}
/* 992px - 1199px xl */
@media screen and (max-width: 1439px) {
  .btn-gradient span {
    font-size: 11px;
  }
  .btn-gradient {
    height: 40px;
  }
  .btn-purple {
    height: 40px;
  }
}
@media screen and (max-width: 320px) {
  .btn-header-mobile .btn-gradient-header-mob {
    width: calc(51% + 10px) !important;
    max-height: 35px;
  }
}
/* ========================== Finish  button ========================== */
/* ========================== Language  ========================== */
.language-list {
  display: none;
  position: absolute;
  z-index: 1;
  padding: 10px 7px;
  background: #201726f5;
  width: 130px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.dropdown-language {
  position: relative;
}
.language-div {
  align-items: center;
  display: flex;
  flex-direction: row;
  -webkit-user-select: none; 
  -webkit-touch-callout: none; 
  -moz-user-select: none; 
  -ms-user-select: none; 
  user-select: none;   
  cursor: pointer;
}
.dropdown-language {
  margin-left: 15px;
  font-family: "Montserrat";
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #ffffff;
}
.dropdown-language:hover .language-list {
  display: block;
}
.img-language {
  width: 22px;
  height: 22px;
  margin-right: 5px;
}
/* ========================== Finish Language  ========================== */

/* ========================== Start Social Sidebar   ========================== */
#social-sidebar {
  right: 0;
  position: fixed;
  top: 50%;
}
#social-sidebar li:first-child i { border-top-right-radius: 5px; }
#social-sidebar li:last-child i { border-bottom-right-radius: 5px; }

#social-sidebar li { 
  margin-right: 30px; 
  padding-top: 10px;
}

#social-sidebar a {
  text-decoration: none;
  display: block;
  font-size: 30px;
  position: relative;
  text-align: center;
  cursor: pointer;
}
.social-sidebar-icon {
  margin: 5px 0px;
  color: #ffffffa0;
}
.ri-telegram-line:hover {
  color: #03A9F4;
}
.ri-youtube-line:hover {
  color: #c4302b;
}
.ri-twitter-x-line:hover {
  color: #ffffff;
}
@media screen and (max-width: 1120px) {
  #social-sidebar li { 
    margin-right: 10px; 
  }
 }
@media screen and (max-width: 991px) {
  #social-sidebar li { margin-right: 10px; }
  #social-sidebar i { 
    font-size: 25px;
  }
}
@media screen and (max-width: 767px) {
  #social-sidebar {
    display: none;
  }
  header .social-btn-mobile {
    top: 0px;
    position: absolute;
    right: 10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45.0%;
    -webkit-flex: 0 0 45.0%;
            flex: 0 0 45.0%;
    max-width: 45.0%;  
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  header .social-btn-mobile li { 
    display: inline-block;
    padding-left: 10px;
  }

  header .social-btn-mobile a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    text-align: center;
    cursor: pointer;
  }
  header .social-btn-mobile.hidden {
    top: -100%;
  }
}
@media screen and (max-width: 500px) {
  header .social-btn-mobile i {
    font-size: 20 px;
  }
}
/* ========================== Finish Social Sidebar   ========================== */

/* ========================== Start main section  ========================== */
.main-image img {
  max-width: 100%;
}
.text-with-custom-line {
  position: relative;
  display: inline-block;
}
.text-with-custom-line::after {
  content: "";
  position: absolute;
  bottom: -15px; 
  left: 0;
  width: 60px; 
  height: 5px; 
  background-color: #140e18; 
  background-image: linear-gradient(
    90deg,
    #6c1bc8 0%,
    #ffffff 100%
  ); 
  border-radius: 0px 2.5px 2.5px 0px; 
}
.text-main1 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.text-title {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 30px;
}
.text-description {
  font-size: 18px;
  line-height: 34px;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 40px;
}
.text-secondary {
  font-size: 16px;
  line-height: 34px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.img-line-mobile {
  display: none;
}
/* 1440px - 1919px */
@media screen and (max-width: 1919px) {
  .text-main1 {
    font-size: 32px;
  }
  .text-title {
    font-size: 28px;
  }
  .text-description {
    font-size: 16px;
  }
  .text-secondary {
    font-size: 15px;
  }
}
@media screen and (max-width: 1439px) {
  .text-main1 {
    font-size: 30px;
  }
  .text-description {
    font-size: 16px;
    line-height: 28px;
  }
}
/* 992px - 1199px xl */
@media screen and (max-width: 1199px) {
  .text-title {
    font-size: 26px;
}
}
@media screen and (max-width: 991px) {
  .main-section {
    flex-direction: column;
  }
  .main-section-text {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .main-section-text p {
    text-align: center;
  }
  .main-section-text .text-with-custom-line {
    display: none;
  }
  .main-section-text .text-description {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .main-image  {
    width: 80%;
    margin-top: 50px;
  }
  .section-margin {
    margin-top: 120px !important;
  }
  .img-line-mobile {
    display: flex;
    padding-top: 15px;
  }
}
/* 576px - 767px md */
@media screen and (max-width: 767px) {
  .main-section {
    margin-top: 150px;
  }
  .text-main1 {
    font-size: 28px;
  }
  .section-margin {
    margin-top: 100px !important;
  }
  .main-image {
    margin-top: 25px;
}
.text-title {
  font-size: 20px;
}
.text-description {
  font-size: 15px;
  line-height: 26px;
}
}
/* 320px - 575px sm */
@media screen and (max-width: 575px) {
  .text-main1 {
    font-size: 26px;
  }
  .main-section-text {
    width: 100%;
  }
  .main-image {
    width: 100%;
  }
}
/* 320px - 575px sm */
@media screen and (max-width: 575px) {
  .text-title {
    font-size: 18px;
  }
  .text-description {
    font-size: 14px;
  }
}
/* ========================== Finish main section  ========================== */

/* ========================== Start section advantages  ========================== */
.advantage_section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.advantage_block {
  display: flex;
  align-items: center;
  padding: 10px 25px;
  border-radius: 20px;
  background-color: #19121e;
  border: 1px solid #574d5d;
  position: relative;
  width: 440px;
  height: 90px;
}
.img-advantage {
  width: auto;
  height: auto;
  margin-right: 20px;
}
.advantage_block p {
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.section-margin {
  margin-top: 200px;
}
.advantages-btn {
  margin-top: 50px;
}
/* 1440px - 1919px */
@media screen and (max-width: 1919px) {
  .advantage_block {
    width: 370px;
    height: 90px;
  }
  .advantage_block p {
    font-size: 15px;
  }
  .advantage_section {
    gap: 15px;
  }
  .section-margin {
    margin-top: 145px;
  }
}
/* 1200px - 1439px 2xl */
@media screen and (max-width: 1439px) {
  .advantage_block {
    width: 500px;
    height: 90px;
  }
}
/* 992px - 1199px xl */
@media screen and (max-width: 1199px) {
  .advantage_block {
    width: 425px;
}
  .section-margin {
    margin-top: 120px;
  }
}
/* 768px - 991px lg */
@media screen and (max-width: 991px) {
  .advantage_block {
    width: 330px;
}
}
/* 576px - 767px md */
@media screen and (max-width: 767px) {
  .advantage_block {
    width: 520px;
  }
  .advantages-btn {
    margin-top: 40px;
}
}
/* 320px - 575px sm */
@media screen and (max-width: 575px) {
  .advantages-btn {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .advantage_block {
    height: 80px;
  }
  .advantage_block p {
    font-size: 13px;
  }
  .section-margin {
    margin-top: 70px !important;
}
}
/* ========================== Finish section advantages  ========================== */

/* ========================== Start section chart  ========================== */
.chart-blocks {
  gap: 40px;
}
.chart_block {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;
  position: relative;
  width: 320px;
  height: 70px;
  background-image: linear-gradient(
    90deg,
    rgba(59, 0, 101, 0.3) 0%,
    rgba(13, 83, 226, 0.25) 100%
  );
}
.chart_block::before,
.liquidity-block::before,
.chart_block::after,
.liquidity-block::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2px;
  content: "";
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    rgba(59, 0, 101, 0.8) 0%,
    rgba(13, 83, 226, 0.8) 100%
  );
}
.chart_block::before,
.liquidity-block::before {
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.chart_block::after,
.liquidity-block::after {
  opacity: 0;
}
.chart-p {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #ffffffe6;
}
.chart-price {
  font-size: 16px;
  font-weight: 600;
  color: #a18ad4d8;
  line-height: 1.2;
}
.chart-percent {
  /* min-width: 100px; */
  width: auto;
  height: 40px;
  padding: 0px 20px;
  background-color: #3b0065;
  color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  font-size: 16px;
  line-height: 34px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.priceСhartBlock {
    background-color: #19121e;
    border: 2px solid #574d5d;
    border-radius: 20px;
}
.priceСhart {
  padding: 10px;
}
/* 1440px - 1919px */
@media screen and (max-width: 1919px) {
  .chart-blocks {
    gap: 20px;
  }
  .chart_block {
    width: 270px;
    height: 70px;
  }
}
/* 1200px - 1439px 2xl */
@media screen and (max-width: 1439px) {
  .priceСhart {
    width: 100%;
    height: 100%;
  }
  .chart_block {
    width: 247px;
  }
}
/* 992px - 1199px xl */
@media screen and (max-width: 1199px) {
  .chart_block {
    width: 200px;
    height: 60px;
  }
}
/* 768px - 991px lg */
@media screen and (max-width: 991px) {
  .price-chart .text-secondary {
    font-size: 14px !important;
  }
  .chart-p {
    font-size: 12px;
  }
  .chart-price {
    font-size: 15px;
  }
  .chart_block {
    width: 330px;
    height: 60px;
  }
  .chart-text {
    font-size: 14px;
    line-height: 1.2;
  }
  .chart-percent {
    font-size: 14px;
  }
}
/* 576px - 767px md */
@media screen and (max-width: 767px) {
  .chart_block {
    width: 250px;
}
}
/* 320px - 575px sm */
@media screen and (max-width: 575px) {
  .chart-price {
    font-size: 14px !important;
  }
  .chart-text {
    font-size: 13px;
  }
  .chart-blocks {
    display: flex;
    justify-content: center;
  }
}
/* ========================== Finish section chart  ========================== */

/* ========================== Start liquidity   ========================== */
.liquidity-block {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;
  position: relative;
  width: 440px;
  height: 90px;
  background-image: linear-gradient(
    90deg,
    rgba(59, 0, 101, 0.3) 0%,
    rgba(13, 83, 226, 0.3) 100%
  );
}
.liquidity-blocks {
  gap: 45px;
}
.liquidity-p {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #ffffffe6;
  text-align: center;
}
.liquidity-price {
  font-size: 18px;
  line-height: 34px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #a18ad4d8;
}
.liquidity-list-block {
  gap: 20px;
}
.liquidity-block-img {
  width: 50%;
}
.liquidity-block-text {
  width: 50%;
}
.liquidity-mobile-img {
  display: none;
}
.liquidity-btn {
  gap: 20px;
  margin-top: 40px;
}
/* 1440px - 1919px */
@media (min-width: 1440px) and (max-width: 1919px) {
  .liquidity-block {
    width: 370px;
    height: 90px;
  }
  .liquidity-blocks {
    gap: 18px;
  }
  .liquidity-p {
    font-size: 14px;
    line-height: 20px;
  }
  .liquidity-price {
    font-size: 16px;
  }
}
/* 1200px - 1439px 2xl */
@media screen and (max-width: 1439px) {
  .liquidity-blocks {
    gap: 20px;
  }
  .liquidity-block {
    width: 335px;
  }
}
/* 992px - 1199px xl */
@media screen and (max-width: 1199px) {
  .img-advantage {
    width: 31px;
    height: 30px;
    margin-right: 10px;
  }
  .liquidity-block {
  padding: 12px;
  width: 275px;
  }
  .liquidity-list {
    font-size: 15px;
  }
  .liquidity-p {
    font-size: 12px;
  }
  .liquidity-price {
    font-size: 16px;
  }

}
/* 768px - 991px lg */
@media screen and (max-width: 991px) {
  .liquidity-block {
    width: 690px;
    height: 70px;
  }
  /* .btn-width {
    width: 180px !important;
  } */
  .btn-gradient span {
    padding: 18px 10px;
  }
  .btn-purple {
    width: auto;
    height: 40px;
  }
  .liquidity-block-img {
    display: none;
  }
  .liquidity-block-text {
    width: 100%;
  }
  .liquidity-mobile {
    display: flex;
    flex-direction: row;
  }
  .liquidity-mobile   .liquidity-list-block {
    gap: 10px;
    width: 70%;
  }
  .liquidity-mobile-img {
    display: block;
    width: 40%;
  }

}
/* 576px - 767px md */
@media screen and (max-width: 767px) {
  .liquidity {
    flex-direction: column;
    align-items: center;
  }
  .liquidity-block-text {
    width: 100%;
  }
  .liquidity-mobile {
    flex-direction: column;
    align-items: center;
  }
  .liquidity-mobile .liquidity-list-block {
    width: 100%;
    gap: 18px;
  }
  .liquidity-mobile-img {
    width: 80%;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .liquidity-list {
    font-size: 15px;
    line-height: 1.2;
}
}
/* 320px - 575px sm */
@media screen and (max-width: 575px) {
  .liquidity-btn {
    flex-direction: column;
    align-items: center;
  }
  .liquidity-p {
    font-size: 12px;
    line-height: 1.2;
  }
  .liquidity-price {
    font-size: 15px;
    line-height: 1.2;
}
}
/* ========================== Finish liquidity   ========================== */

/* ========================== Start section our community   ========================== */
.chart-community-block {
  gap: 20px;
}
.chart-community {
  background-color: #19121e;
  border: 2px solid #574d5d;
  border-radius: 20px;
  width: 48%;
}
/* 1200px - 1439px 2xl */
@media screen and (max-width: 1439px) {
  
}
/* 992px - 1199px xl */
@media screen and (max-width: 1199px) {

}
/* 768px - 991px lg */
@media screen and (max-width: 991px) {
  .chart-community-block {
    flex-direction: column;
    align-items: center;
  }
  .chart-community {
    width: 70%;
  }
}
/* 576px - 767px md */
@media screen and (max-width: 767px) {
  .chart-community {
    width: 100%;
  }
  .text-description {
    margin-bottom: 30px;
}
}
/* ========================== Finish section our community   ========================== */

/* ========================== Start section Consultants ========================== */
.card__container {
  padding-block: 5rem;
}
.card__content {
  margin-inline: 4rem; 
  overflow: hidden;
}
.card__article {
  width: 390px !important; 
  position: relative;
  height: 500px !important;
  border: 1px solid #574d5d98;
  border-radius: 20px;
  margin-right: 20px;
  display: inline-block;
}
.card__image {
  position: relative;
  padding-top: 1.5rem;
  margin-bottom: -.75rem;
}
.card__data {
  border-radius: 1rem;
  text-align: center;
  position: relative;
  z-index: 10;
}
.card__img {
  margin: 0 auto;
  position: relative;
  width: 390px !important;
  height: 380px !important;
  background-color: #ffffff;
  border-radius: 20px 20px 0px 0px;
}
.card-text {
  position: absolute;
  width: 100%;
  background-color: #19121e;
  display: flex;
  justify-content: space-around;
  padding: 25px 0px;
  border-radius: 0px 0px 20px 20px;
}
.card-text span {
  color: #a18ad4;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
}
.swiper-button-prev,
.swiper-button-next {
  width: initial;
  height: initial;
  font-size: 3rem;
  display: none;
}
:root {
  --swiper-theme-color: #a18ad4 !important;
}
.swiper {
overflow: visible !important;
}
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -40px !important;
}
.swiper-pagination-bullet {
  background-color: #978aa3 !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background-color: #895cbc !important;
}
.nft-owning-block {
  margin-top: 80px;
}
/* For medium devices */
@media screen and (min-width: 575px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: block;
  }
}
/* 1440px - 1919px */
@media screen and (max-width: 1919px) {
  .card__article {
    width: 300px !important; 
    height: 390px !important;
  }
  .card__img {
    width: 300px !important;
    height: 300px !important;
  }
  .card-text {
    padding: 10px 0px;
  }
  .card__content {
    margin-inline: 75px !important; 
  }
  .card-text {
    font-size: 15px;
  }
}
/* 1200px - 1439px 2xl */
@media screen and (max-width: 1439px) {
    .card__article {
      width: 270px !important;
      height: 340px !important;
      margin-right: 65px !important;
    }
    .card__img {
      width: 270px !important;
      height: 250px !important;
    }
    .card__content {
      margin-inline: 50px !important;
    }
    .card-text {
      font-size: 14px;
    }
}
/* 992px - 1199px xl */
@media screen and (max-width: 1199px) {
  .card__article {
    width: 340px !important;
    height: 430px !important;
    margin-right: 68px !important;
    }
    .card__img {
      width: 340px !important;
      height: 340px !important;
    }
    .card__content {
      margin-inline: 90px !important;
    }
    .card-text {
      font-size: 15px;
    }
}
/* 768px - 991px lg */
@media screen and (max-width: 991px) {
  .card__article {
    width: 280px !important;
    height: 390px !important;
    margin-right: 56px !important;
  }
  .card__img {
    width: 280px !important;
    height: 280px !important;
  }
  .card__content {
    margin-inline: 40px !important;
  }
  .card-text {
    font-size: 14px !important;
  }
}
/* 576px - 767px md */
@media screen and (max-width: 767px) {
  .card__article {
    width: 340px !important;
    height: 430px !important;
    margin-right: 85px !important;
  }
  .card__img {
    width: 340px !important;
    height: 340px !important;
  }
  .card__content {
    margin-inline: 75px !important;
  }
}
/* 320px - 575px sm */
@media screen and (max-width: 575px) {
  .swiper-button-next, .swiper-button-prev {
    display: none !important;
  }
  .card__content {
    margin-inline: 0px !important;
  }
  .card__article {
    width: 270px !important;
    height: 360px !important;
    margin-right: 62px !important;
  }
  .card__img {
    width: 270px !important;
    height: 270px !important;
  }
  .text-description {
    line-height: 22px;
}
}
/* ... - 380px sm */
@media screen and (max-width: 380px) {
  .card-text {
    display: flex;
    align-items: center;
  }
  .card__article {
    height: 381px !important;
  }
  .card-text p {
    line-height: 1.6;
  }.text-main1 {
    font-size: 24px;
}
}
/* ========================== Finish section Consultants ========================== */

/* ========================== Start section Advantage of nft owning ========================== */
.advantage-blocks {
  gap: 45px;
}
.advantage-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid #574d5d;
  border-radius: 20px;
  position: relative;
  width: 440px;
  height: 90px;
  background-color: #19121e;
}
.text-advantage {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #ffffff;
}
/* 1440px - 1919px */
@media (min-width: 1440px) and (max-width: 1919px) {
  .advantage-block {
    width: 370px;
    height: 90px;
  }
  .advantage-blocks {
    gap: 20px;
  }
  .text-advantage {
    font-size: 22px;
  }
}
/* 1200px - 1439px 2xl */
@media screen and (max-width: 1439px) {
  .advantage-block {
    width: 335px !important;
  }
  .advantage-blocks {
    gap: 20px !important;
  }
  .text-advantage {
    font-size: 22px !important;
}
}
/* 992px - 1199px xl */
@media screen and (max-width: 1199px) {
  .advantage-block {
    width: 300px !important;
    height: 80px !important;
  }
  .advantage-blocks {
    gap: 10px !important;
    line-height: 1.2 !important;
  }
}
/* 768px - 991px lg */
@media screen and (max-width: 991px) {
  
}
/* 576px - 767px md */
@media screen and (max-width: 767px) {
  .advantage-block {
    width: 518px !important;
  }
  .text-advantage {
    font-size: 18px !important;
  }
}
/* ========================== Finish section Advantage of nft owning ========================== */

/* ========================== Start Smart Contract and FAQ   ========================== */
.accordion {
  border: 1px solid #574d5d;
  border-radius: 20px;
  background-color: #19121e;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
  position: relative;
  height: 100%;
}
.accordion-header {
  cursor: pointer;
  padding: 10px 10px 0px 25px;
  border-radius: 5px;
  position: relative;
  font-size: 16px;
  line-height: 34px;
  font-weight: 600;
  letter-spacing: 0.01em;
  width: 100%;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-content {
  font-size: 14px;
  color: #ffffff;
  overflow: hidden;
  line-height: 34px;
  padding: 0px 10px 10px 25px;
}
.accordion-content p {
  padding: 0px 0px 15px 8px;
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.fas {
  transition: transform 0.6s ease;
}
.active .fas {
  transform: rotate(180deg);
}
.smart-contract-text {
  width: 50%;
}
.smart-contract-img {
  width: 50%;
}
.smart-contract-list {
  gap: 20px;
}
.smart-contract-img-mobile {
  display: none;
}
/* 1440px - 1919px */
@media (min-width: 1440px) and (max-width: 1919px) {
.accordion-header {
  font-size: 15px;
}
}
/* 1200px - 1439px 2xl */
@media screen and (max-width: 1439px) {
  
}
/* 992px - 1199px xl */
@media screen and (max-width: 1199px) {
  .smart-contract-block {
    align-items: flex-end;
  }
  .smart-contract-text {
    width: 70%;
  }
  .smart-contract-img {
    width: 60%;
    height: 60%;
  }
  .smart-contract-img img {
    width: 70% !important;
    height: 70% !important;
  }
  .accordion-header {
    font-size: 15px;
  }
  .accordion-content {
    font-size: 14px;
  }
}
/* 768px - 991px lg */
@media screen and (max-width: 991px) {
  .smart-contract-text {
    width: 80%;
  }
  .smart-contract-list {
    gap: 10px;
  }
  .smart-contract-img {
    display: none;
  }
  .smart-contract-text {
    width: 100%;
  }
  .smart-contract-img-mobile {
    display: block;
    width: 30%;
  }
  .block-img-mobile {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .block-img-mobile .smart-contract-list {
    width: 50%;
  }
}
/* 576px - 767px md */
@media screen and (max-width: 767px) {
  .smart-contract-block {
    flex-direction: column;
    align-items: center;
  }
  .accordion-header {
    font-size: 14px;
  }
  .accordion-content p {
    font-size: 13px;
  }
  .block-img-mobile .smart-contract-list {
    width: 70%;
}
}
/* 320px - 575px sm */
@media screen and (max-width: 575px) {
  .block-img-mobile {
    flex-direction: column;
    align-items: center;
  }
  .block-img-mobile .smart-contract-list {
    width: 100%;
  }
  .smart-contract-img-mobile {
    width: 80%;
    margin-top: 20px;
  }
}
/* ========================== Finish FAQ   ========================== */

/* ========================== Start Footer  ========================== */
.zokyo-icon {
  background: url("zokyo.svg") no-repeat left center;
  background-size: 60px;
  display: inline-block;
  vertical-align: bottom;
  padding-left: 65px;
  padding-right: 20px;
  padding-bottom: 3px;
}
.footer-text {
  color: #c0b7c6 !important ;
  cursor: pointer;
  letter-spacing: 2 !important;
  font-size: 14px;
}
footer .footer-list:hover {
  color: rgba(255, 255, 255, 0.462);
  cursor: pointer;
}
footer .footer-list2 {
  color: rgb(255, 255, 255);
  cursor: pointer;
}
footer .footer-list2:hover {
  color: rgba(255, 255, 255, 0.462);
  cursor: pointer;
}
.footer-border-color {
  border-color: #c0b7c6;
}
/* 1440px - 1919px */
@media screen and (max-width: 1919px) {
  .footer-list {
    font-size: 12px;
  }
  }
/* 1200px - 1439px 2xl */
@media screen and (max-width: 1439px) {
  
}
/* 992px - 1199px xl */
@media screen and (max-width: 1199px) {

}
/* 768px - 991px lg */
@media screen and (max-width: 991px) {
  
}
/* 576px - 767px md */
@media screen and (max-width: 767px) {
  
}
/* ========================== Finish Footer  ========================== */

/* ========================== Preloader  ========================== */

#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #09090c;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

#loader {
  border: 3px solid #c0b7c6;
  border-top: 3px solid #6700af;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#main-content {
  display: none; 
}

