/*# sourceMappingURL=main.css.map */
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');


:root {
  --font-body: 'IBM Plex Mono', sans-serif;
  --font-heading: 'IBM Plex Mono', sans-serif;
  --color-primary: #3C12D4;
  --gradient-color-from: #45ACAB;
  --gradient-color-to: #4788AC;
  --color-white: #fff;
  --color-black: #000;
  --color-default: #5A5A5A;
  --color-dark: #0F1928;
  --color-gray: #eeedef;
}

/* reset css start */
html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  font-weight: 400;
  position: relative;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  color: var(--color-default);
  background-color: #0B0B29;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  margin: 0px;
  padding: 0px;
}

button {
  cursor: pointer;
}

*:focus {
  outline: none;
}

button {
  border: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

button:focus {
  outline: none;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  color: inherit;
}

select {
  height: 55px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: calc(100% - 10px) 50%;
  background-repeat: no-repeat;
  padding-right: 20px;
  background-color: transparent;
  border: 0;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
form select,
textarea {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background-color: #1D1D3E;
  color: var(--color-white);
  padding: 20px;
  border: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-weight: 400;
}

input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
form select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #B3B3C0;
  opacity: 1;
}

input[type="text"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
form select::-moz-placeholder,
textarea::-moz-placeholder {
  color: #B3B3C0;
  opacity: 1;
}

input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
form select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #B3B3C0;
  opacity: 1;
}

input[type="text"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
form select:-moz-placeholder,
textarea:-moz-placeholder {
  color: #B3B3C0;
  opacity: 1;
}

textarea {
  height: 100px;
}

button {
  border: 0;
}

table {
  width: 100%;
}

p,
li,
span {
  margin-bottom: 0;
}

/* reset css end */
/* global css start */
.nice-select {
  background-color: transparent;
  height: 40px !important;
  line-height: 40px !important;
  min-height: 40px !important;
  padding: 0 30px;
}

.nice-select span {
  color: var(--color-black);
}

.nice-select .list {
  box-shadow: 0.975px 7.94px 21px 0px rgba(239, 239, 239, 0.5);
}

.nice-select .list li {
  margin-right: 0 !important;
}

.nice-select .list .option {
  color: var(--color-black);
}

.nice-select .list .option.selected,
.nice-select .list .option:hover {
  border: none !important;
}

/* global css end */
.body_wrap {
  overflow: hidden;
  position: relative;
}

.bg_img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.footer-bg {
  background-color: #04060A;
}

.black-bg {
  background: var(--color-black);
}

.gray-bg {
  background-color: var(--color-gray);
}
.gray-text {
  color: #D4D4D4;
}
.dark-bg {
  background-color: var(--color-dark-2);
}

.bg-deef {
  background-color: var(--color-deep);
}

.white {
  color: var(--color-white);
}

.pos-rel {
  position: relative;
}

.pos-absolute {
  position: absolute;
}

.f-right {
  float: right;
}

.border-effect a,
.border-effect-2 a {
  display: inline !important;
  width: 100%;
  background-repeat: no-repeat;
  background-position-y: -2px;
  background-image: linear-gradient(transparent calc(100% - 2px), currentColor 1px);
  -webkit-transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-size: 0 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.border-effect a:hover,
.border-effect-2 a:hover {
  background-size: 100% 100%;
  color: inherit;
}

.border-effect-2 a {
  background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
}

.btn-video {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  position: relative;
}

.btn-video:hover {
  color: var(--color-white);
}

.btn-video::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  /* background-color: rgba(15,103,246,.63); */
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  z-index: -2;
}

.border_effect a {
  display: inline !important;
  width: 100%;
  background-repeat: no-repeat;
  background-position-y: -2px;
  background-image: linear-gradient(transparent calc(100% - 2px), currentColor 1px);
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-size: 0 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.border_effect a:hover {
  background-size: 100% 100%;
  color: inherit;
}

@media (max-width: 991px) {
  .tx-col-md-6 {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .tx-col-md-6 {
    width: 100%;
  }
}

.tx-close {
  background: rgba(0, 0, 0, 0.04);
  border: 9px solid transparent;
  color: #777;
  width: 36px;
  height: 36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.tx-close::before,
.tx-close::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  background-color: #1b1b1b;
}

.tx-close::before {
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.tx-close::after {
  -webkit-transform: rotate(-45deg);
  -khtml-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.tx-close:hover::before,
.tx-close:hover::after {
  -webkit-transform: rotate(0);
  -khtml-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}

/* order & unorder list reset - start */
.ul_li,
.ul_li_right,
.ul_li_center,
.ul_li_between {
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.ul_li>li,
.ul_li_right>li,
.ul_li_center>li,
.ul_li_between>li {
  float: left;
  list-style: none;
  display: inline-block;
}

.ul_li {
  justify-content: flex-start;
}

.ul_li_center {
  justify-content: center;
}

.ul_li_right {
  justify-content: flex-end;
}

.ul_li_between {
  justify-content: space-between;
}

.ul_li_block {
  margin: 0px;
  padding: 0px;
  display: block;
}

.ul_li_block>li {
  display: block;
  list-style: none;
}

.flex-1 {
  flex: 1;
}

.color-black {
  color: var(--color-black);
}

.pagination_wrap {
  z-index: 2;
  position: relative;
}

.pagination_wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -5px;
  list-style: none;
}

.pagination_wrap ul li {
  padding: 5px;
}

.pagination_wrap ul li a {
  height: 55px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-white);
  border: 1px solid #282842;
  -webkit-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 1;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
}

.pagination_wrap ul li a.current_page,
.pagination_wrap ul li a:hover {
  color: var(--color-white);
  background-color: #1D1D3E;
  border-color: #1D1D3E;
}

.mr-none-60 {
  margin-right: -60px;
}

.ml-none-60 {
  margin-left: -60px;
}

.pb-8 {
  padding-bottom: 8px;
}

@keyframes tc_animation1 {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes tc_animation2 {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(2.7);
  }
}

.line_wrap {
  top: 0px;
  left: 50%;
  bottom: 0px;
  width: 100%;
  z-index: -1;
  display: block;
  position: absolute;
  transform: translateX(-50%);
  max-width: 1312px;
  margin: auto;
}

@media (max-width: 992px) {
  .line_wrap {
    max-width: 960px;
  }
}

@media (max-width: 991px) {
  .line_wrap {
    display: none;
  }
}

.line_wrap .col {
  float: left;
  height: 100%;
  position: relative;
}

.line_wrap .line_item {
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  height: 100%;
  position: relative;
}

/*--
    - Margin & Padding
-----------------------------------------*/
/*-- Margin Top --*/
.mt-none-5 {
  margin-top: -5px;
}

.mt-none-10 {
  margin-top: -10px;
}

.mt-none-15 {
  margin-top: -15px;
}

.mt-none-20 {
  margin-top: -20px;
}

.mt-none-25 {
  margin-top: -25px;
}

.mt-none-30 {
  margin-top: -30px;
}

.mt-none-35 {
  margin-top: -35px;
}

.mt-none-40 {
  margin-top: -40px;
}

.mt-none-45 {
  margin-top: -45px;
}

.mt-none-50 {
  margin-top: -50px;
}

.mt-none-55 {
  margin-top: -55px;
}

.mt-none-60 {
  margin-top: -60px;
}

.mt-none-65 {
  margin-top: -65px;
}

.mt-none-70 {
  margin-top: -70px;
}

.mt-none-75 {
  margin-top: -75px;
}

.mt-none-80 {
  margin-top: -80px;
}

.mt-none-85 {
  margin-top: -85px;
}

.mt-none-90 {
  margin-top: -90px;
}

.mt-none-95 {
  margin-top: -95px;
}

.mt-none-100 {
  margin-top: -100px;
}

/*-- Margin Top --*/
.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

/*-- Margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

/*-- Margin Left --*/
.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.ml-105 {
  margin-left: 105px;
}

.ml-110 {
  margin-left: 110px;
}

.ml-115 {
  margin-left: 115px;
}

.ml-120 {
  margin-left: 120px;
}

.ml-125 {
  margin-left: 125px;
}

.ml-130 {
  margin-left: 130px;
}

.ml-135 {
  margin-left: 135px;
}

.ml-140 {
  margin-left: 140px;
}

.ml-145 {
  margin-left: 145px;
}

.ml-150 {
  margin-left: 150px;
}

.ml-155 {
  margin-left: 155px;
}

.ml-160 {
  margin-left: 160px;
}

.ml-165 {
  margin-left: 165px;
}

.ml-170 {
  margin-left: 170px;
}

.ml-175 {
  margin-left: 175px;
}

.ml-180 {
  margin-left: 180px;
}

.ml-185 {
  margin-left: 185px;
}

.ml-190 {
  margin-left: 190px;
}

.ml-195 {
  margin-left: 195px;
}

.ml-200 {
  margin-left: 200px;
}

/*-- Margin Right --*/
.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.mr-105 {
  margin-right: 105px;
}

.mr-110 {
  margin-right: 110px;
}

.mr-115 {
  margin-right: 115px;
}

.mr-120 {
  margin-right: 120px;
}

.mr-125 {
  margin-right: 125px;
}

.mr-130 {
  margin-right: 130px;
}

.mr-135 {
  margin-right: 135px;
}

.mr-140 {
  margin-right: 140px;
}

.mr-145 {
  margin-right: 145px;
}

.mr-150 {
  margin-right: 150px;
}

.mr-155 {
  margin-right: 155px;
}

.mr-160 {
  margin-right: 160px;
}

.mr-165 {
  margin-right: 165px;
}

.mr-170 {
  margin-right: 170px;
}

.mr-175 {
  margin-right: 175px;
}

.mr-180 {
  margin-right: 180px;
}

.mr-185 {
  margin-right: 185px;
}

.mr-190 {
  margin-right: 190px;
}

.mr-195 {
  margin-right: 195px;
}

.mr-200 {
  margin-right: 200px;
}

/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

/*-- Padding Left --*/
.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-135 {
  padding-left: 135px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-145 {
  padding-left: 145px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-160 {
  padding-left: 160px;
}

.pl-165 {
  padding-left: 165px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-175 {
  padding-left: 175px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-185 {
  padding-left: 185px;
}

.pl-190 {
  padding-left: 190px;
}

.pl-195 {
  padding-left: 195px;
}

.pl-200 {
  padding-left: 200px;
}

/*-- Padding Right --*/
.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-105 {
  padding-right: 105px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-115 {
  padding-right: 115px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-135 {
  padding-right: 135px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-145 {
  padding-right: 145px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-160 {
  padding-right: 160px;
}

.pr-165 {
  padding-right: 165px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-175 {
  padding-right: 175px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-185 {
  padding-right: 185px;
}

.pr-190 {
  padding-right: 190px;
}

.pr-195 {
  padding-right: 195px;
}

.pr-200 {
  padding-right: 200px;
}

.py-110 {
  padding-top: 110px;
  padding-bottom: 110px;
}
/* typography css start */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.3;
  color: var(--color-white);
  font-weight: 700;
  font-family: var(--font-heading);
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

/* typography css end */
@-webkit-keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40% {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40% {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

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

  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

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

  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@-webkit-keyframes rotatedHalfTwo {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@keyframes rotatedHalfTwo {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@-webkit-keyframes scale-upOne {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
}

@keyframes scale-upOne {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
}

@-webkit-keyframes scale-right {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  50% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes scale-right {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  50% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0.7;
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 0.7;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0.7;
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 0.7;
  }
}

@keyframes hvr-ripple-out {
  0% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  100% {
    top: -6px;
    right: -6px;
    bottom: -6px;
    left: -6px;
  }
}

@keyframes hvr-ripple-out-two {
  0% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  100% {
    top: -18px;
    right: -18px;
    bottom: -18px;
    left: -18px;
    opacity: 0;
  }
}

@-webkit-keyframes scale-up-one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scale-up-one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes scale-up-two {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}

@keyframes scale-up-two {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}

@-webkit-keyframes scale-up-three {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }

  40% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

  100% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}

@keyframes scale-up-three {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }

  40% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

  100% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}

@keyframes animationFramesOne {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    -moz-transform: translate(0px, 0px) rotate(0deg);
    -ms-transform: translate(0px, 0px) rotate(0deg);
    -o-transform: translate(0px, 0px) rotate(0deg);
  }

  20% {
    transform: translate(73px, -1px) rotate(36deg);
    -webkit-transform: translate(73px, -1px) rotate(36deg);
    -moz-transform: translate(73px, -1px) rotate(36deg);
    -ms-transform: translate(73px, -1px) rotate(36deg);
    -o-transform: translate(73px, -1px) rotate(36deg);
  }

  40% {
    transform: translate(141px, -20px) rotate(72deg);
    -webkit-transform: translate(141px, -20px) rotate(72deg);
    -moz-transform: translate(141px, -20px) rotate(72deg);
    -ms-transform: translate(141px, -20px) rotate(72deg);
    -o-transform: translate(141px, -20px) rotate(72deg);
  }

  60% {
    transform: translate(83px, -60px) rotate(108deg);
    -webkit-transform: translate(83px, -60px) rotate(108deg);
    -moz-transform: translate(83px, -60px) rotate(108deg);
    -ms-transform: translate(83px, -60px) rotate(108deg);
    -o-transform: translate(83px, -60px) rotate(108deg);
  }

  80% {
    transform: translate(-40px, 72px) rotate(144deg);
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
    -moz-transform: translate(-40px, 72px) rotate(144deg);
    -ms-transform: translate(-40px, 72px) rotate(144deg);
    -o-transform: translate(-40px, 72px) rotate(144deg);
  }

  100% {
    transform: translate(0px, 0px) rotate(0deg);
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    -moz-transform: translate(0px, 0px) rotate(0deg);
    -ms-transform: translate(0px, 0px) rotate(0deg);
    -o-transform: translate(0px, 0px) rotate(0deg);
  }
}

@-webkit-keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }

  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
  }

  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
  }

  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
  }

  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
  }

  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes animationFramesTwo {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }

  20% {
    transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }

  40% {
    transform: translate(141px, 72px) rotate(72deg) scale(1);
  }

  60% {
    transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }

  80% {
    transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }

  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}

@-webkit-keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
  }

  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }

  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
  }

  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }

  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }

  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}

@keyframes animationFramesThree {
  0% {
    transform: translate(165px, -30px);
    -webkit-transform: translate(165px, -30px);
    -moz-transform: translate(165px, -30px);
    -ms-transform: translate(165px, -30px);
    -o-transform: translate(165px, -30px);
  }

  100% {
    transform: translate(-60px, 80px);
    -webkit-transform: translate(-60px, 80px);
    -moz-transform: translate(-60px, 80px);
    -ms-transform: translate(-60px, 80px);
    -o-transform: translate(-60px, 80px);
  }
}

@-webkit-keyframes animationFramesThree {
  0% {
    transform: translate(165px, -30px);
    -webkit-transform: translate(165px, -30px);
    -moz-transform: translate(165px, -30px);
    -ms-transform: translate(165px, -30px);
    -o-transform: translate(165px, -30px);
  }

  100% {
    transform: translate(-60px, 80px);
    -webkit-transform: translate(-60px, 80px);
    -moz-transform: translate(-60px, 80px);
    -ms-transform: translate(-60px, 80px);
    -o-transform: translate(-60px, 80px);
  }
}

@keyframes animationFramesFour {
  0% {
    transform: translate(0px, 60px) rotate(0deg);
    -webkit-transform: translate(0px, 60px) rotate(0deg);
    -moz-transform: translate(0px, 60px) rotate(0deg);
    -ms-transform: translate(0px, 60px) rotate(0deg);
    -o-transform: translate(0px, 60px) rotate(0deg);
  }

  100% {
    transform: translate(-100px, -100px) rotate(180deg);
    -webkit-transform: translate(-100px, -100px) rotate(180deg);
    -moz-transform: translate(-100px, -100px) rotate(180deg);
    -ms-transform: translate(-100px, -100px) rotate(180deg);
    -o-transform: translate(-100px, -100px) rotate(180deg);
  }
}

@-webkit-keyframes animationFramesFour {
  0% {
    transform: translate(0px, 60px) rotate(0deg);
    -webkit-transform: translate(0px, 60px) rotate(0deg);
    -moz-transform: translate(0px, 60px) rotate(0deg);
    -ms-transform: translate(0px, 60px) rotate(0deg);
    -o-transform: translate(0px, 60px) rotate(0deg);
  }

  100% {
    transform: translate(-100px, -100px) rotate(180deg);
    -webkit-transform: translate(-100px, -100px) rotate(180deg);
    -moz-transform: translate(-100px, -100px) rotate(180deg);
    -ms-transform: translate(-100px, -100px) rotate(180deg);
    -o-transform: translate(-100px, -100px) rotate(180deg);
  }
}

@keyframes animationFramesFive {
  0% {
    transform: translate(0, 0) rotate(0deg);
    -webkit-transform: translate(0, 0) rotate(0deg);
    -moz-transform: translate(0, 0) rotate(0deg);
    -ms-transform: translate(0, 0) rotate(0deg);
    -o-transform: translate(0, 0) rotate(0deg);
  }

  21% {
    transform: translate(4px, -20px) rotate(38deg);
    -webkit-transform: translate(4px, -20px) rotate(38deg);
    -moz-transform: translate(4px, -20px) rotate(38deg);
    -ms-transform: translate(4px, -20px) rotate(38deg);
    -o-transform: translate(4px, -20px) rotate(38deg);
  }

  41% {
    transform: translate(-50px, -60px) rotate(74deg);
    -webkit-transform: translate(-50px, -60px) rotate(74deg);
    -moz-transform: translate(-50px, -60px) rotate(74deg);
    -ms-transform: translate(-50px, -60px) rotate(74deg);
    -o-transform: translate(-50px, -60px) rotate(74deg);
  }

  60% {
    transform: translate(-20px, -30px) rotate(108deg);
    -webkit-transform: translate(-20px, -30px) rotate(108deg);
    -moz-transform: translate(-20px, -30px) rotate(108deg);
    -ms-transform: translate(-20px, -30px) rotate(108deg);
    -o-transform: translate(-20px, -30px) rotate(108deg);
  }

  80% {
    transform: translate(-195px, -49px) rotate(144deg);
    -webkit-transform: translate(-195px, -49px) rotate(144deg);
    -moz-transform: translate(-195px, -49px) rotate(144deg);
    -ms-transform: translate(-195px, -49px) rotate(144deg);
    -o-transform: translate(-195px, -49px) rotate(144deg);
  }

  100% {
    transform: translate(-1px, 0px) rotate(180deg);
    -webkit-transform: translate(-1px, 0px) rotate(180deg);
    -moz-transform: translate(-1px, 0px) rotate(180deg);
    -ms-transform: translate(-1px, 0px) rotate(180deg);
    -o-transform: translate(-1px, 0px) rotate(180deg);
  }
}

@-webkit-keyframes animationFramesFive {
  0% {
    transform: translate(0, 0) rotate(0deg);
    -webkit-transform: translate(0, 0) rotate(0deg);
    -moz-transform: translate(0, 0) rotate(0deg);
    -ms-transform: translate(0, 0) rotate(0deg);
    -o-transform: translate(0, 0) rotate(0deg);
  }

  21% {
    transform: translate(4px, -20px) rotate(38deg);
    -webkit-transform: translate(4px, -20px) rotate(38deg);
    -moz-transform: translate(4px, -20px) rotate(38deg);
    -ms-transform: translate(4px, -20px) rotate(38deg);
    -o-transform: translate(4px, -20px) rotate(38deg);
  }

  41% {
    transform: translate(-50px, -60px) rotate(74deg);
    -webkit-transform: translate(-50px, -60px) rotate(74deg);
    -moz-transform: translate(-50px, -60px) rotate(74deg);
    -ms-transform: translate(-50px, -60px) rotate(74deg);
    -o-transform: translate(-50px, -60px) rotate(74deg);
  }

  60% {
    transform: translate(-20px, -30px) rotate(108deg);
    -webkit-transform: translate(-20px, -30px) rotate(108deg);
    -moz-transform: translate(-20px, -30px) rotate(108deg);
    -ms-transform: translate(-20px, -30px) rotate(108deg);
    -o-transform: translate(-20px, -30px) rotate(108deg);
  }

  80% {
    transform: translate(-195px, -49px) rotate(144deg);
    -webkit-transform: translate(-195px, -49px) rotate(144deg);
    -moz-transform: translate(-195px, -49px) rotate(144deg);
    -ms-transform: translate(-195px, -49px) rotate(144deg);
    -o-transform: translate(-195px, -49px) rotate(144deg);
  }

  100% {
    transform: translate(-1px, 0px) rotate(180deg);
    -webkit-transform: translate(-1px, 0px) rotate(180deg);
    -moz-transform: translate(-1px, 0px) rotate(180deg);
    -ms-transform: translate(-1px, 0px) rotate(180deg);
    -o-transform: translate(-1px, 0px) rotate(180deg);
  }
}

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

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes zoominup {
  0% {
    transform: scale(1.1);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

@-webkit-keyframes updown {
  0% {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
  }

  50% {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
  }

  100% {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
  }
}

@-webkit-keyframes updown-2 {
  0% {
    transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
  }

  50% {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
  }

  100% {
    transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
  }
}

@keyframes ltr {
  0% {
    width: 0;
  }

  15% {
    width: 95%;
  }

  85% {
    opacity: 1;
  }

  90% {
    width: 95%;
    opacity: 0;
  }

  to {
    width: 0;
    opacity: 0;
  }
}

/*circleAnimation*/
@-webkit-keyframes circleAnimation {

  0%,
  100% {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    -webkit-transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }

  34% {
    border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
    -webkit-transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
    transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
  }

  50% {
    -webkit-transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }

  67% {
    border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    -webkit-transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
    transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
  }
}

@-webkit-keyframes icon-bounce {

  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@keyframes icon-bounce {

  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@keyframes lr-animation {
  0% {
    -webkit-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes tb-animation {
  0% {
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes tx_up_down {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-20px);
  }
}

.slide-up-down {
  animation: tx_up_down 1s ease infinite alternate;
}

@keyframes tx_ltr {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateX(-20px);
  }
}

.slide-ltr {
  animation: tx_ltr 1s ease infinite alternate;
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

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

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  100% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@keyframes zoom {
  0% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  50% {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: rotate(7deg);
    -ms-transform: rotate(7deg);
    transform: rotate(7deg);
  }

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

  100% {
    -webkit-transform: rotate(7deg);
    -ms-transform: rotate(7deg);
    transform: rotate(7deg);
  }
}

@keyframes shake {
  0% {
    -webkit-transform: rotate(7deg);
    -ms-transform: rotate(7deg);
    transform: rotate(7deg);
  }

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

  100% {
    -webkit-transform: rotate(7deg);
    -ms-transform: rotate(7deg);
    transform: rotate(7deg);
  }
}

@-webkit-keyframes down {
  0% {
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
  }

  50% {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }

  100% {
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
  }
}

@keyframes down {
  0% {
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
  }

  50% {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }

  100% {
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
  }
}

@keyframes outer-ripple {
  0% {
    transform: scale(1);
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-filter: alpha(opacity=50);
  }

  80% {
    transform: scale(1.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
  }

  100% {
    transform: scale(2.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(2.5);
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
  }
}

@-webkit-keyframes outer-ripple {
  0% {
    transform: scale(1);
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }

  80% {
    transform: scale(2.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(2.5);
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
  }

  100% {
    transform: scale(3.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(3.5);
    -moz-transform: scale(3.5);
    -ms-transform: scale(3.5);
    -o-transform: scale(3.5);
  }
}

@-moz-keyframes outer-ripple {
  0% {
    transform: scale(1);
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }

  80% {
    transform: scale(2.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(2.5);
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
  }

  100% {
    transform: scale(3.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(3.5);
    -moz-transform: scale(3.5);
    -ms-transform: scale(3.5);
    -o-transform: scale(3.5);
  }
}

@keyframes blink {

  from,
  to {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@-moz-keyframes blink {

  from,
  to {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@-webkit-keyframes blink {

  from,
  to {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@-ms-keyframes blink {

  from,
  to {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@-o-keyframes blink {

  from,
  to {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@keyframes pulse-border {
  0% {
    transform: scale(1);
    opacity: 0.67;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@-webkit-keyframes pulse-border {
  0% {
    transform: scale(1);
    opacity: 0.67;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@-webkit-keyframes lngslideUpIn {
  0% {
    -webkit-transform: translateY(10px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }

  0% {
    -webkit-transform: translateY(10px);
    opacity: 0;
  }
}

@keyframes lngslideUpIn {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }

  0% {
    transform: translateY(10px);
    opacity: 0;
  }
}

.bell-waving,
.hand-waving {
  animation-name: wave-animation;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  transform-origin: 70% 70%;
}

.bell-waving {
  transform-origin: top;
}

@keyframes wave-animation {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(14deg);
  }

  20% {
    transform: rotate(-8deg);
  }

  30% {
    transform: rotate(14deg);
  }

  40% {
    transform: rotate(-4deg);
  }

  50% {
    transform: rotate(10deg);
  }

  60% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/*--
    - Overlay
------------------------------------------*/
[data-overlay] {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

[data-overlay]::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
}

/*-- Overlay Color --*/
[data-overlay="light"]::before {
  background-color: var(--color-white);
}

[data-overlay="dark"]::before {
  background-color: var(--color-black);
}

/*-- Overlay Opacity --*/
[data-opacity="1"]::before {
  opacity: 0.1;
}

[data-opacity="2"]::before {
  opacity: 0.2;
}

[data-opacity="3"]::before {
  opacity: 0.3;
}

[data-opacity="4"]::before {
  opacity: 0.4;
}

[data-opacity="5"]::before {
  opacity: 0.5;
}

[data-opacity="6"]::before {
  opacity: 0.6;
}

[data-opacity="7"]::before {
  opacity: 0.7;
}

[data-opacity="8"]::before {
  opacity: 0.8;
}

[data-opacity="9"]::before {
  opacity: 0.9;
}

/*----------------------------------------*/
/*  02. header
/*----------------------------------------*/
.main-header-list {

}
.header__account a {
  font-size: 14px;
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: 700;
  background-color: var(--color-primary);
  padding: 12px 20px;
  height: 50px;
  display: inline-block;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.header__account a i {
  background: var(--gardient, linear-gradient(270deg, #5E2FF4 0%, #8CA7FF 17.47%, #E4DAFF 39.54%, #C570FB 60.49%, #C3B1FE 84.44%, #5E2FF4 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 10px;
}

.header__language {
  margin-right: 20px;
}

.header__language button {
  min-width: 163px;
  height: 50px;
  background-color: transparent;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__language button img {
  margin-right: 10px;
}

.header__language button i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-left: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 10px;
  border: 1px solid #242443;
  background: #141437;
}

.header__language button:after {
  display: none;
}

.header__language .dropdown-menu {
  background: #151534;
  top: 100% !important;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: lngslideUpIn;
  animation-name: lngslideUpIn;
}

.header__language .dropdown-menu .dropdown-item {
  color: var(--color-white);
  padding: 5px 20px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 14px;
}

.header__language .dropdown-menu .dropdown-item:focus,
.header__language .dropdown-menu .dropdown-item:hover {
  background-color: var(--color-primary);
}

.header__language .dropdown-menu .dropdown-item img {
  width: 20px;
  margin-right: 7px;
}

.header--transparent {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 11;
}

.header__action .login {
  background-color: #182335;
  text-transform: uppercase;
  font-size: 14px;
  color: #DAEDF8;
  height: 50px;
  padding: 10px 25px;
  font-weight: 600;
  display: block;
  align-items: center;
}

@media (max-width: 991px) {
  .header__action .login {
    display: none;
  }
}

.header__action .login img {
  margin-right: 16px;
}
.ourtechteam-title-wrapper {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}
.ourtechteam-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding-bottom: 1rem;
  margin-top: 1rem;
}
.header__bar {
  width: 50px;
  height: 50px;
  background-color: #182335;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
}

.header__bar:hover span:nth-child(2),
.header__bar:hover span:nth-child(4) {
  width: 100%;
}

.header__bar:hover span:nth-child(1),
.header__bar:hover span:nth-child(3) {
  width: 50%;
}

.header__bar span {
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #DAEDF8;
  border-radius: 48px;
  -webkit-border-radius: 48px;
  -moz-border-radius: 48px;
  -ms-border-radius: 48px;
  -o-border-radius: 48px;
  display: inline-block;
  position: absolute;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.header__bar span:nth-child(1) {
  top: 0;
}

.header__bar span:nth-child(2) {
  top: 5px;
  width: 50%;
}

.header__bar span:nth-child(3) {
  bottom: 5px;
}

.header__bar span:nth-child(4) {
  bottom: 0;
  width: 50%;
}

.header__bar-icon {
  width: 19px;
  height: 17px;
  position: relative;
}

@media (max-width: 991px) {

  .header__account,
  .header__language {
    display: none;
  }
}

.ico-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ico-header .header__bar {
  background-color: #0f1928;
}

@media (max-width: 767px) {
  .ico-header .header__bar {
    border-radius: 5px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    background-color: transparent;
    margin-right: -13px;
  }
}

@media (max-width: 1199px) {
  .ico-header .header__main-wrap {
    padding: 15px 0px;
  }
}

@media (max-width: 991px) {
  .ico-header .header__main-wrap {
    padding: 12px 0px;
  }
}

@media (max-width: 1199px) {
  .ico-header .header__language {
    margin-left: 20px;
  }
}

.blockchain-header {
  background-color: #0B0E13;
  box-shadow: 0px 8px 77px 0px rgba(0, 0, 0, 0.71);
}

.blockchain-header .stricked-menu {
  background-color: #0B0E13;
}

.blockchain-header .header__main-wrap {
  padding: 0 90px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .blockchain-header .header__main-wrap {
    padding: 0 10px;
  }
}

@media (max-width: 1199px) {
  .blockchain-header .header__main-wrap {
    padding: 0;
  }
}

@media (max-width: 991px) {
  .blockchain-header .header__main-wrap {
    padding: 12px 0;
  }
}

.blockchain-header .header__bar {
  background-color: #1f252e;
}

.blockchain-header .main-menu ul li a::before {
  display: none;
}

.main-menu ul li a.active {
  color: #15B785;
}
.blockchain-header .main-menu ul li a {
  font-weight: 600;
}
.main-menu ul li a:hover {
  border-bottom: 2px solid #fff;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .blockchain-header .main-menu ul li a {
    padding: 40px 10px;
  }
}

@media (max-width: 1199px) {
  .blockchain-header .stricked-menu .main-menu ul li a {
    padding: 30px 10px;
  }
}

.blockchain-header .main-menu ul li .submenu {
  background: #11151a;
}

.blockchain-header__account {
  position: relative;
}

@media (max-width: 991px) {
  .blockchain-header__account {
    display: none;
  }
}

.blockchain-header__account a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: var(--color-white);
  padding: 13px 27px;
}
/* FOR REGISTER */
.blockchain-header__account .blc-btn--gradient-register::before {
  background-image: url(../img/bg/buttons/btn-bg-gradient.svg);
}

.blockchain-header__account .blc-btn--gradient-register::after {
  background-image: url(../img/bg/buttons/btn-bg-gradient-hover.svg);
}
/* FOR LOGIN */
.blockchain-header__account .blc-btn--dark-login::before {
  background-image: url(../img/bg/buttons/btn-bg-dark-login.svg);
}

.blockchain-header__account .blc-btn--dark-login::after {
  background-image: url(../img/bg/buttons/btn-bg-dark-login.svg);
}
.blockchain-header__account .blc-btn--dark-login {
  padding: 7px 27px;
}
.blockchain-header__account a i {
  margin-right: 10px;
}

.blockchain-header__language {
  margin-right: 40px;
}

@media (max-width: 1199px) {
  .blockchain-header__language {
    margin-right: 20px;
  }
}

.blockchain-header__language .dropdown-menu {
  min-width: 7rem;
  background: #0B0E13;
}

.blockchain-header__language .dropdown-menu .dropdown-item {
  position: relative;
}

.blockchain-header__language .dropdown-menu .dropdown-item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  content: "";
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}

.blockchain-header__language .dropdown-menu .dropdown-item:focus,
.blockchain-header__language .dropdown-menu .dropdown-item:hover {
  background: none;
}

.blockchain-header__language .dropdown-menu .dropdown-item:focus::before,
.blockchain-header__language .dropdown-menu .dropdown-item:hover::before {
  opacity: 1;
}

.blockchain-header__language button {
  min-width: auto;
  height: 42px;
  border: none;
  font-weight: 600;
}

.blockchain-header__language .globe {
  position: relative;
  margin-right: 11px;
  background-image: url(../img/bg/lang_bg.svg);
  width: 42px;
  height: 42px;
  background-repeat: no-repeat;
  background-position: center center;
}

.blockchain-header__language .globe i {
  position: absolute;
  top: 48%;
  left: 52%;
  margin: 0;
  right: 0;
  text-align: center;
  width: 100%;
  border: none;
  background: none;
  font-size: 15px;
  transform: translate(-50%, -50%);
}

.blockchain-header__language .down-arrow {
  width: auto;
  height: auto;
  background: none;
  border: none;
  margin-left: 11px;
}

.blockchain-header .main-menu ul li .mega-menu {
  background-color: #11151a;
}

.btc-header {
  top: 15px;
}

@media (max-width: 767px) {
  .btc-header {
    top: 0;
  }
}

.btc-header .header-area {
  padding: 15px 0;
}

.btc-header .stricked-menu {
  background-color: #111828;
}

.stricked-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  -webkit-transform: translateY(-100%);
  -khtml-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  -khtml-transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  -moz-transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  -ms-transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  -o-transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  visibility: hidden;
  background-color: #151534;
}

.stricked-menu .main-menu ul li a {
  padding: 35px 18px;
}

.stricked-menu.stricky-fixed {
  -webkit-transform: translateY(0%);
  -khtml-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  visibility: visible;
  -webkit-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -khtml-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -moz-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -ms-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -o-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
}

.side-mobile-menu .header__logo {
  display: inline-block;
}

.header-mobile-search input {
  border: 2px solid rgba(150, 144, 162, 0.09);
  padding: 15px;
}

/* Navigation css */
.main-menu {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.main-menu__wrap {
  position: static;
}

.main-menu ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-menu ul li {
  position: relative;
}

.main-menu ul li:not(:last-child) {
  margin-right: 7px;
}

.main-menu ul li .submenu li {
  margin-right: 0;
}

.main-menu ul li a {
  display: inline-block;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-white);
  padding: 40px 18px;
  position: relative;
  line-height: 22px;
  text-transform: capitalize;
  position: relative;
}

.main-menu ul li a::before {
  position: absolute;
  content: '';
  bottom: 0;
  height: calc(100% + 42px);
  height: -webkit-calc(100% + 42px);
  width: 100%;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: scaleY(0);
  transform-origin: bottom center;
  background: rgba(255, 255, 255, 0.03);
}

.main-menu ul li:hover>a:before,
.main-menu ul li.active>a::before {
  transform: scaleY(1);
  opacity: 1;
}

.main-menu ul li.menu-item-has-children>a::after {
  content: "\f078";
  transform: translateY(-1px);
  display: inline-block;
  padding-left: 4px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 12px;
}

.main-menu ul li.menu-item-has-children:hover>.submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  pointer-events: all;
}

.main-menu ul li .submenu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  min-width: 240px;
  top: calc(100% + 10px);
  opacity: 0;
  visibility: hidden;
  background: #151534;
  left: 0;
  padding: 20px 0;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  z-index: 3;
  text-align: left;
  pointer-events: none;
  box-shadow: 0 0.5rem 1.875rem rgba(0, 0, 0, 0.1);
}

.main-menu ul li .submenu li a {
  color: var(--color-white);
  padding: 8px 30px;
  display: block;
  margin: 0;
}

.main-menu ul li .submenu li a::before {
  display: none;
}

.main-menu ul li .submenu li:hover>a {
  letter-spacing: 1px;
}

.main-menu ul li .submenu ul {
  left: 100%;
  top: 0px;
}

.main-menu ul li .submenu .active>a {
  letter-spacing: 1px;
}

.main-menu ul li.has-mega-menu {
  position: static;
}

.main-menu ul li.has-mega-menu li {
  width: 100%;
}

.main-menu ul li .mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  position: absolute;
  box-shadow: none;
  background-color: transparent;
  padding: 0;
  max-width: 1287px;
  margin: 0 auto;
  padding: 40px 35px;
  padding-bottom: 0;
  background-color: #151534;
}

.main-menu ul li .mega-menu .mega-menu-content a {
  padding: 0;
}

.main-menu ul li .mega-menu .mega-menu-content .col {
  margin-bottom: 30px;
}

.main-menu ul li .mega-menu .mega-menu-content .demo-pic {
  margin-bottom: 10px;
  position: relative;
  height: 350px;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.main-menu ul li .mega-menu .mega-menu-content .demo-pic:hover {
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
}

@media (max-width: 1199px) {
  .main-menu ul li .mega-menu .mega-menu-content .demo-pic {
    height: 230px;
  }
}

.main-menu ul li .mega-menu .mega-menu-content .demo-pic.coming-soon:hover {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.main-menu ul li .mega-menu h3 {
  font-size: 15px;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 500;
}

.main-menu ul li.menu-last ul.submenu {
  right: 0;
  left: auto;
}

.main-menu ul li.menu-last ul.submenu ul {
  right: auto;
  left: -100%;
}

.main-menu ul li ul.submenu .menu-item-has-children>a::after {
  position: absolute;
  top: 9px;
  right: 15px;
  content: "\f105";
  font-size: 13px;
}

.thm-btn {
  font-size: 14px;
  font-weight: 700;
  text-transform: None;
  color: var(--color-white);
  border-style: none;
  padding: 18px 38px;
  align-self: center;
  position: relative;
  display: inline-block;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  text-transform: uppercase;
  line-height: 1.1;
  -webkit-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  background-color: var(--color-primary);
}

.thm-btn:hover {
  color: var(--color-white);
}

.thm-btn--dark {
  background-color: var(--color-dark);
}

.thm-btn--dark:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.blc-btn {
  font-size: 12px;
  font-weight: 700;
  font-family: "IBM Plex Mono";
  color: var(--color-white);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: unset;
  padding: 15px 60px;
  letter-spacing: 1.4px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.blc-btn::before,
.blc-btn::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../img/icon/btn-border.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.blc-btn::after {
  background-image: url(../img/icon/btn-border-hover.svg);
  opacity: 0;
}

.blc-btn:hover {
  transform: translateY(-2px);
  color: var(--color-white);
}

.blc-btn:hover::after {
  opacity: 1;
}

/* WHITE */
.blc-btn--white::before {
  background-image: url(../img/icon/btn-border-white.svg);
}

.blc-btn--white::after {
  background-image: url(../img/icon/btn-border.svg);
}

/* GRADIENT */
.blc-btn--gradient::before {
  background-image: url(../img/icon/btn-border-gradient.svg);
}

.blc-btn--gradient::after {
  background-image: url(../img/icon/btn-border.svg);
}
.btc-btn {
  background-color: #DAEDF8;
  display: inline-block;
  padding: 12px 35px;
  padding-right: 100px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0B1121;
  letter-spacing: 1.5px;
  position: relative;
}

@media (max-width: 1199px) {
  .btc-btn {
    padding-right: 80px;
  }
}

.btc-btn:hover {
  color: #0B1121;
}

.btc-btn:hover i {
  right: 30px;
}

.btc-btn i {
  position: absolute;
  top: 50%;
  right: 35px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.btc-btn--gradient {
  color: var(--color-white);
}

.btc-btn--gradient:hover {
  color: var(--color-white);
}

.btns {
  margin: -12px;
}

.btns a {
  margin: 12px;
}

/*----------------------------------------*/
/*  03. globel
/*----------------------------------------*/
@media (min-width: 1024px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1312px;
  }
}

.container.mxw_1640 {
  max-width: 1640px;
}

.home-blockchain {
  background-color: #03050E;
}

.home-blockchain h1,
.home-blockchain h2,
.home-blockchain h3,
.home-blockchain h4,
.home-blockchain h5,
.home-blockchain h6 {
  font-family: 'Chakra Petch', sans-serif;
  line-height: 1.1;
  font-weight: 400;
}

.home-bitcoin {
  background-color: #0B1121;
}

.home-bitcoin h1,
.home-bitcoin h2,
.home-bitcoin h3,
.home-bitcoin h4,
.home-bitcoin h5,
.home-bitcoin h6 {
  line-height: 1.1;
  color: #DAEDF8;
}

.home-bitcoin p {
  color: #A4BDCC;
}

.sec-title__subtitle,
.token__tab .nav-item .nav-link::before,
.footer__copyright,
blockquote .icon {
  background: linear-gradient(270deg, #5E2FF4 0%, #8CA7FF 17.47%, #E4DAFF 39.54%, #C570FB 60.49%, #C3B1FE 84.44%, #5E2FF4 100%);
}

.blockchain-header__account i,
.blockchain-header__language .dropdown-menu .dropdown-item::before,
.team__social.style2 .h-icon::after,
.team__single::after,
.roadmap__list-inner::after,
.footer__widget-community,
.token-chat__animation {
  background: linear-gradient(98deg, #2167e8 0%, hwb(161 7% 28%) 100%);
}

.gradient-bg-2,
.btc-btn--gradient,
.pricing__single.active,
.service__single::before,
.footer__btc-links li a::before,
.faq__btc .accordion_box .block .arrow::before,
.faq__nav li .nav-link.active {
  background: linear-gradient(90deg, #45ACAB 0%, #4788AC 100%);
}

.sec-title__subtitle,
.blockchain-header__account i,
.faq__nav li .nav-link.active {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.-tracking-2\/4 {
  letter-spacing: -2.4px;
}

.text-80 {
  font-size: 80px;
}

.absolute {
  position: absolute;
}

.tagcloud {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  margin: -10px;
}

.tagcloud a {
  display: block;
  color: #92939E;
  min-height: 32px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  text-transform: capitalize;
  text-decoration: none;
  font-weight: 500;
  padding: 0px 17px;
  margin: 7px;
  position: relative;
  background-color: #0B0B29;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.tagcloud a:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.post-tags li {
  font-size: 15px;
  text-transform: capitalize;
  position: relative;
}

.post-tags li:not(:first-child, :last-child) {
  margin-right: 11px;
  padding-right: 15px;
}

.post-tags li:not(:first-child, :last-child)::before {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--color-primary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  content: "";
}

.post-tags li span {
  display: inline-block;
  background-color: var(--color-primary);
  padding: 0px 10px;
  line-height: 25px;
  color: var(--color-white);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  margin-right: 12px;
}

.post-tags li a {
  color: var(--color-black);
}

.post-tags li a:hover {
  color: var(--color-black);
}

.mfp-zoom-in .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.mfp-zoom-in.mfp-ready .mfp-content {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

body .mfp-wrap .mfp-container .mfp-content .mfp-close {
  padding: 0;
  right: 0;
  text-align: center;
  top: -36px;
  width: 36px;
  height: 36px;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  background: var(--color-white);
  cursor: pointer;
  opacity: 1;
  font-size: 0;
  border: 9px solid transparent;
  position: absolute;
}

body .mfp-wrap .mfp-container .mfp-content .mfp-figure .mfp-close {
  top: 4px;
}

body .mfp-wrap .mfp-container .mfp-content .mfp-close::before,
body .mfp-wrap .mfp-container .mfp-content .mfp-close::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  background-color: #222;
}

body .mfp-wrap .mfp-container .mfp-content .mfp-close::before {
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

body .mfp-wrap .mfp-container .mfp-content .mfp-close::after {
  -webkit-transform: rotate(-45deg);
  -khtml-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

body .mfp-wrap .mfp-container .mfp-content .mfp-close:hover::before,
body .mfp-wrap .mfp-container .mfp-content .mfp-close:hover::after {
  -webkit-transform: rotate(0);
  -khtml-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}

body .mfp-wrap .mfp-container .mfp-content .mfp-close:hover::before,
body .mfp-wrap .mfp-container .mfp-content .mfp-close:hover::after {
  -webkit-transform: rotate(0);
  -khtml-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}

.mfp-iframe-holder .mfp-content {
  max-width: 1170px;
}

.border-left {
  padding-left: 40px;
  position: relative;
}

@media (max-width: 767px) {
  .border-left {
    padding-left: 20px;
  }
}

.border-left::before {
  position: absolute;
  width: 3px;
  height: 40px;
  content: "";
  background-color: #45ACAB;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@-webkit-keyframes fadeInUp-2 {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0) rotateY(15deg);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0px, 0) rotateY(0deg);
  }
}

@keyframes fadeInUp-2 {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0) rotateY(15deg);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0px, 0) rotateY(0deg);
  }
}

.fadeInUp-2 {
  -webkit-animation-name: fadeInUp-2;
  animation-name: fadeInUp-2;
  transition: 10s !important;
}

.z-1 {
  z-index: 1;
}

@media (max-width: 767px) {
  .pb-xs-80 {
    padding-bottom: 80px;
  }
}

@media (max-width: 991px) {
  .mb-0-pb {
    padding-bottom: 0;
  }
}

@media (max-width: 1199px) {
  .pt-lg-80 {
    padding-top: 80px;
  }
}

@media (max-width: 991px) {
  .pb-md-100 {
    padding-bottom: 100px;
  }
}

/*----------------------------------------*/
/*  04. hero
/*----------------------------------------*/
.hero__bitcoin {
  min-height: 790px;
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .hero__bitcoin {
    min-height: 750px;
  }
}

@media (max-width: 1199px) {
  .hero__bitcoin {
    min-height: 700px;
  }
}

@media (max-width: 991px) {
  .hero__bitcoin {
    min-height: 575px;
  }
}

.hero__bitcoin-content {
  -webkit-transform: translateY(55px);
  -ms-transform: translateY(55px);
  transform: translateY(55px);
}

@media (max-width: 991px) {
  .hero__bitcoin-content {
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
}

.hero__bitcoin-content .title {
  font-size: 102px;
  line-height: 1.1;
  margin-bottom: 40px;
  letter-spacing: -3.06px;
}

@media (max-width: 1199px) {
  .hero__bitcoin-content .title {
    font-size: 80px;
  }
}

@media (max-width: 991px) {
  .hero__bitcoin-content .title {
    font-size: 50px;
  }
}

.hero__bitcoin-content .title span {
  display: inline-block;
}

.hero__bitcoin-content p {
  font-size: 20px;
  line-height: 29px;
}

.hero__bitcoin-content .btc-btn {
  font-size: 18px;
  text-transform: capitalize;
  letter-spacing: -0.18px;
  max-width: 412px;
  width: 100%;
  padding: 22px 50px;
}

.hero__bitcoin-content .btc-btn:hover i {
  right: 45px;
}

.hero__bitcoin-content .btc-btn i {
  right: 50px;
}

.hero__img {
  position: absolute;
  right: 0;
  top: 40px;
  max-width: 1270px;
  z-index: -2;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .hero__img {
    top: 67px;
    max-width: 900px;
  }
}

@media (max-width: 1199px) {
  .hero__img {
    top: 100px;
    max-width: 700px;
  }
}

@media (max-width: 991px) {
  .hero__img {
    top: 131px;
    max-width: 650px;
    right: -100px;
  }
}

@media (max-width: 767px) {
  .hero__img {
    top: 92px;
    max-width: 450px;
    right: -120px;
  }
}

.hero__ico {
  min-height: 1080px;
  padding-top: 220px;
}

@media (max-width: 1199px) {
  .hero__ico {
    min-height: 930px;
  }
}

@media (max-width: 991px) {
  .hero__ico {
    min-height: 1270px;
  }
}

@media (max-width: 767px) {
  .hero__ico {
    padding-top: 180px;
  }
}

.hero__blockchain {
  min-height: 1060px;
  padding-top: 260px;
}

@media (max-width: 1199px) {
  .hero__blockchain {
    min-height: 820px;
  }
}

@media (max-width: 991px) {
  .hero__blockchain {
    padding-top: 160px;
    min-height: 780px;
  }
}

@media (max-width: 767px) {
  .hero__blockchain {
    padding-top: 130px;
    min-height: 800px;
  }
}

.hero__bg {
  background-position: center 250px;
  position: absolute;
  bottom: 0;
  background-repeat: no-repeat;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: 100%;
  z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .hero__bg {
    background-position: center 422px;
  }
}

@media (max-width: 1199px) {
  .hero__bg {
    display: none;
  }
}

.hero__content .title {
  font-size: 60px;
  line-height: 75px;
  letter-spacing: -2.4px;
}

@media (max-width: 991px) {
  .hero__content .title {
    font-size: 54px;
    line-height: 69px;
  }
}

@media (max-width: 767px) {
  .hero__content .title {
    font-size: 43px;
    line-height: 57px;
  }
}

.hero__content .title span {
  background: linear-gradient(270deg, #5E2FF4 0%, #8CA7FF 17.47%, #E4DAFF 39.54%, #C570FB 60.49%, #C3B1FE 84.44%, #5E2FF4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__shape .shape {
  position: absolute;
  z-index: -2;
}

.hero__shape .shape--1 {
  top: 0;
  left: 0;
}

.hero__shape .shape--2 {
  top: 0;
  left: 0;
}

.hero__shape .shape--3 {
  bottom: -100px;
  right: 0;
}

.hero__coin .coin {
  position: absolute;
}

.hero__coin .coin--1 {
  left: 1%;
  bottom: 15.5%;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .hero__coin .coin--1 {
    bottom: 20.5%;
  }
}

@media (max-width: 1199px) {
  .hero__coin .coin--1 {
    bottom: 7.5%;
  }
}

@media (max-width: 767px) {
  .hero__coin .coin--1 {
    bottom: 3.5%;
    left: 0;
  }
}

.hero__coin .coin--2 {
  left: 26%;
  bottom: 17.7%;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .hero__coin .coin--2 {
    bottom: 21.7%;
  }
}

@media (max-width: 1199px) {
  .hero__coin .coin--2 {
    bottom: 9.7%;
  }
}

@media (max-width: 767px) {
  .hero__coin .coin--2 {
    bottom: 4.7%;
    left: 36%;
  }
}

.hero__coin .coin--3 {
  right: 43%;
  bottom: 16%;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .hero__coin .coin--3 {
    right: 41.5%;
    bottom: 21%;
  }
}

@media (max-width: 1199px) {
  .hero__coin .coin--3 {
    bottom: 8%;
  }
}

@media (max-width: 767px) {
  .hero__coin .coin--3 {
    right: 3%;
    bottom: 5%;
  }
}

.hero__coin .coin--4 {
  right: 35%;
  bottom: 57%;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .hero__coin .coin--4 {
    right: 32%;
    bottom: 53%;
  }
}

@media (max-width: 991px) {
  .hero__coin .coin--4 {
    right: 19%;
    bottom: 64%;
  }
}

.hero__coin .coin--5 {
  right: 13%;
  top: 22%;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .hero__coin .coin--5 {
    top: 36%;
  }
}

@media (max-width: 1199px) {
  .hero__coin .coin--5 {
    right: 3%;
    top: 20%;
  }
}

@media (max-width: 767px) {
  .hero__coin .coin--5 {
    right: 0;
    top: 24%;
  }
}

.hero__coin .coin--6 {
  right: 3%;
  bottom: 36%;
}

@media (max-width: 1199px) {
  .hero__coin .coin--6 {
    bottom: 21%;
  }
}

@media (max-width: 767px) {
  .hero__coin .coin--6 {
    bottom: 28%;
  }
}

.hero__explore span {
  color: var(--color-white);
  font-size: 20px;
  margin-top: 13px;
  display: inline-block;
}

.hero__explore .scroll-down {
  width: 22px;
  height: 33px;
  border: 1px solid var(--color-white);
  border-radius: 11px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.hero__explore .scroll-down:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: 2px;
  height: 2px;
  border-radius: 100%;
  transform: translateX(-50%);
  background: var(--color-white);
  animation: scrollDown 1.5s ease infinite;
}

.hero__explore .scroll-down:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 2px;
  height: 8px;
  border-radius: 3px;
  transform: translateX(-50%);
  background: var(--color-white);
}

.hero__countdown h6 {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: -0.96px;
}

.hero__countdown .countdown .single {
  min-width: 100px;
  height: 100px;
  background-color: #1F1F48;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 10px;
}

@media (max-width: 1199px) {
  .hero__countdown .countdown .single {
    min-width: 80px;
    height: 80px;
  }
}

.hero__countdown .countdown .single:not(:last-child) {
  margin-right: 10px;
}

.hero__countdown .countdown .single h1 {
  font-size: 30px;
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 2px;
}

@media (max-width: 1199px) {
  .hero__countdown .countdown .single h1 {
    font-size: 20px;
  }
}

.hero__countdown .countdown .single p {
  font-size: 14px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.hero__explore-wrap {
  -webkit-transform: translate(24%, 31%);
  -ms-transform: translate(24%, 31%);
  transform: translate(24%, 31%);
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .hero__explore-wrap {
    -webkit-transform: translate(-2%, 63%);
    -ms-transform: translate(-2%, 63%);
    transform: translate(-2%, 63%);
  }
}

@media (max-width: 1199px) {
  .hero__explore-wrap {
    -webkit-transform: translate(0, 5%);
    -ms-transform: translate(0, 5%);
    transform: translate(0, 5%);
  }
}

@media (max-width: 991px) {
  .hero__explore-wrap {
    margin-top: 30px;
  }
}

.hero__explore {
  margin-bottom: 260px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .hero__explore {
    margin-bottom: 200px;
  }
}

@media (max-width: 1199px) {
  .hero__explore {
    margin-bottom: 100px;
  }
}

.hero__progress {
  max-width: 672px;
}

.hero__progress .progress {
  overflow: unset;
  height: 6px;
  border-radius: 60px;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  background: rgba(255, 255, 255, 0.1);
}

.hero__progress .progress-bar {
  border-radius: 1px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
  background: var(--gardient, linear-gradient(270deg, #5E2FF4 0%, #8CA7FF 17.47%, #E4DAFF 39.54%, #C570FB 60.49%, #C3B1FE 84.44%, #5E2FF4 100%));
  height: 8px;
  top: -1px;
  position: relative;
}

.hero__progress .progress-title {
  margin-bottom: 22px;
}

.hero__progress .progress-title span {
  color: var(--color-white);
  font-weight: 600;
  font-size: 14px;
}

.hero__progress .progress-title span span {
  color: #B3B3C0;
}

.hero__progress ul {
  margin-top: 38px;
}

.hero__progress ul li {
  font-size: 14px;
  color: var(--color-white);
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
}

.hero__progress ul li::before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  width: 2px;
  height: 10px;
  background-color: var(--color-white);
  top: -18px;
}

.hero__blockchain-icon .icon span {
  display: inline-block;
  -webkit-transform: translate(32px, -10px);
  -ms-transform: translate(32px, -10px);
  transform: translate(32px, -10px);
}

.hero__blockchain-icon .icon--1 {
  top: -176px;
  left: 25%;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .hero__blockchain-icon .icon--1 {
    top: -170px;
    left: 20%;
  }
}

@media (max-width: 1199px) {
  .hero__blockchain-icon .icon--1 {
    left: 0;
  }
}

@media (max-width: 991px) {
  .hero__blockchain-icon .icon--1 {
    top: auto;
    bottom: -135px;
  }
}

.hero__blockchain-icon .icon--2 {
  bottom: -207px;
  left: 4%;
}

.hero__blockchain-icon .icon--3 {
  top: -188px;
  right: -43%;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .hero__blockchain-icon .icon--3 {
    top: -170px;
    right: 0;
  }
}

@media (max-width: 1199px) {
  .hero__blockchain-icon .icon--3 {
    right: 0;
  }
}

@media (max-width: 991px) {
  .hero__blockchain-icon .icon--3 {
    top: auto;
    bottom: -100px;
  }
}

.hero__blockchain-icon .icon--4 {
  bottom: -222px;
  right: -24%;
}

.hero__blockchain-icon .icon--4 span {
  -webkit-transform: translate(-32px, -10px);
  -ms-transform: translate(-32px, -10px);
  transform: translate(-32px, -10px);
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .hero__blockchain-icon .icon--4 {
    right: 0;
  }
}

@media (max-width: 1199px) {
  .hero__blockchain-icon .icon--4 {
    right: 0;
  }
}

@media (max-width: 991px) {
  .hero__blockchain-icon .icon--4 {
    bottom: -208px;
  }
}

@media (max-width: 1199px) {
  .blockchain-hero__content .title {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  .blockchain-hero__content .title {
    font-size: 40px;
  }
}

@keyframes scrollDown {
  0% {
    transform: translate(-50%, 0px);
    opacity: 0;
  }

  50% {
    transform: translate(-50%, 4px);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 7px);
    opacity: 0;
  }
}

/*----------------------------------------*/
/*  05. about
/*----------------------------------------*/
.about__shape {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 900px;
}

.about__content {
  padding-left: 60px;
}

@media (max-width: 991px) {
  .about__content {
    padding-left: 0;
  }
}

.about__list {
  margin-top: -35px;
}

.about__list li {
  width: 50%;
  font-size: 18px;
  font-weight: 500;
  margin-top: 35px;
  color: var(--color-white);
}

.about__list li img {
  margin-right: 13px;
}

.about__sec-shape {
  position: absolute;
  bottom: -35px;
  right: 0;
  z-index: -1;
}

.about__wrap {
  background: linear-gradient(227deg, #45ACAB 0%, #4788AC 100%);
}

.blc-about__img .shape {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}

.blc-about__img .shape--1 {
  left: -62px;
  top: 40%;
}

@media (max-width: 1199px) {
  .blc-about__img .shape--1 {
    max-width: 300px;
  }
}

.blc-about__img .shape--2 {
  right: 76px;
  top: 54%;
}

@media (max-width: 1199px) {
  .blc-about__img .shape--2 {
    right: 48px;
    max-width: 100px;
  }
}

@media (max-width: 991px) {
  .blc-about__img .shape--2 {
    right: 49px;
    right: 79px;
    max-width: 150px;
  }
}

@media (max-width: 767px) {
  .blc-about__img .shape--2 {
    right: 23px;
    max-width: 95px;
  }
}

.blc-about__img .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.blc-about__list li {
  width: 50%;
  letter-spacing: -0.54px;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-white);
  margin-top: 20px;
}

@media (max-width: 767px) {
  .blc-about__list li {
    width: 100%;
  }
}

.blc-about__list li img {
  margin-right: 10px;
}

.btc-about__content {
  padding: 100px 0;
  padding-left: 50px;
}

@media (max-width: 767px) {
  .btc-about__content {
    padding: 50px 30px;
  }
}

.btc-about__content .title {
  font-size: 36px;
  line-height: 1.3;
  letter-spacing: -1.08px;
  margin-bottom: 50px;
}

.btc-about__content p {
  font-size: 18px;
  line-height: 25px;
  color: #C7E5F0;
}

.btc-about__content p:not(:last-child) {
  margin-bottom: 20px;
}

.btc-about__img .abt-img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btc-about__img .abt-img--1 {
  left: 50px;
}

@media (max-width: 1199px) {
  .btc-about__img .abt-img--1 {
    left: 16px;
    max-width: 300px;
  }
}

@media (max-width: 991px) {
  .btc-about__img .abt-img--1 {
    display: none;
  }
}

.btc-about__img .abt-img--2 {
  right: 0;
}

/*----------------------------------------*/
/*  06. feature
/*----------------------------------------*/
.feature__wrap {
  padding: 0 121px;
}

@media (max-width: 1200px) {
  .feature__wrap {
    padding: 0 101px;
  }
}

@media (max-width: 1199px) {
  .feature__wrap {
    padding: 0 73px;
  }
}

@media (max-width: 991px) {
  .feature__wrap {
    padding: 0;
    margin-bottom: -30px;
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .feature__item {
    width: 50%;
    margin-bottom: 30px;
  }
}

.feature__item:nth-child(odd) h4 {
  margin-top: 20px;
}

.feature__item:nth-child(even) {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
}

@media (max-width: 1199px) {
  .feature__item:nth-child(even) {
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    transform: translateY(80px);
  }
}

@media (max-width: 991px) {
  .feature__item:nth-child(even) {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    flex-direction: column;
  }
}

.feature__item:nth-child(even) h4 {
  margin-bottom: 20px;
}

.feature__item:nth-child(2) .icon {
  background-color: #FF9B5C;
}

.feature__item:nth-child(3) .icon {
  background-color: #5637C8;
}

.feature__item:nth-child(4) .icon {
  background-color: #FC3352;
}

.feature__item:nth-child(5) .icon {
  background-color: #3D88FB;
}

.feature__item .icon {
  width: 154px;
  height: 154px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #00D89E;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 20px 0px #1A1A30 inset;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .feature__item .icon {
    width: 120px;
    height: 120px;
  }
}

.feature__item h4 {
  font-size: 22px;
  line-height: 31px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .feature__item h4 {
    font-size: 20px;
  }
}

.feature__line-shape {
  position: absolute;
  top: 77%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: -30px;
  margin-right: -30px;
  z-index: -1;
}

@media (max-width: 991px) {
  .feature__line-shape {
    display: none;
  }
}

.feature__sec-shape {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

.feature__single {
  padding: 0 50px;
}

@media (max-width: 767px) {
  .feature__single {
    padding: 0 20px;
  }
}

.feature__single h3 {
  font-size: 36px;
  margin-bottom: 48px;
  line-height: 1.3;
  letter-spacing: -1.08px;
  margin-left: -40px;
}

@media (max-width: 1199px) {
  .feature__single h3 {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .feature__single h3 {
    margin-left: -10px;
  }
}

.feature__single h3::before {
  top: 26px;
  left: -10px;
}

.feature__single h3 span {
  font-weight: 300;
}

.feature__single p {
  font-size: 18px;
  line-height: 25px;
}

.feature__single p:not(:last-child) {
  margin-bottom: 42px;
}

/*----------------------------------------*/
/*  07. token
/*----------------------------------------*/
.token__tab {
  border: 0;
}

.token__tab .nav-item {
  margin-top: 20px;
}

.token__tab .nav-item:not(:last-child) {
  margin-right: 22px;
}

.token__tab .nav-item .nav-link {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  padding: 0;
  border: 0;
  background-color: transparent;
  position: relative;
  letter-spacing: -0.48px;
  color: #DFD9F1;
}

.token__tab .nav-item .nav-link::before {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.token__tab .nav-item .nav-link.active {
  color: var(--color-white);
}

.token__tab .nav-item .nav-link.active::before {
  opacity: 1;
}

.token__img {
  margin-right: -50px;
}

@media (max-width: 1199px) {
  .token__img {
    margin-right: 0;
  }
}

.token__info h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .token__info h2 {
    margin-bottom: 30px;
  }
}

@media (max-width: 1199px) {
  .token-info {
    padding-top: 20px;
  }
}

.token-info__title {
  padding-left: 60px;
}

.token-info--info-wrap {
  margin: 0 -15px;
  position: relative;
  padding-left: 15px;
}

@media (max-width: 767px) {
  .token-info--info-wrap {
    padding-left: 0;
  }
}

.token-info--info-wrap::before {
  position: absolute;
  top: -30px;
  right: 218px;
  width: calc(100% - 118px);
  height: 3px;
  background-color: #1D1D3E;
  content: "";
}

@media (max-width: 1199px) {
  .token-info--info-wrap::before {
    right: 167px;
  }
}

@media (max-width: 991px) {
  .token-info--info-wrap::before {
    display: none;
  }
}

.token-info__img {
  margin-top: -69px;
  margin-right: -14px;
  position: relative;
}

@media (max-width: 991px) {
  .token-info__img {
    margin-top: 0;
    margin-right: 0;
    max-width: 300px;
    margin-bottom: 70px;
  }
}

.token-info__img::before {
  position: absolute;
  top: 30px;
  right: 83px;
  width: 24px;
  height: 24px;
  background-color: var(--color-white);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  content: "";
  z-index: 1;
}

@media (max-width: 1199px) {
  .token-info__img::before {
    right: 57px;
  }
}

@media (max-width: 991px) {
  .token-info__img::before {
    display: none;
  }
}

.token-info__shape .shape {
  position: absolute;
  z-index: -1;
}

.token-info__shape .shape--1 {
  left: 0;
  bottom: -24%;
}

.token-info__shape .shape--2 {
  left: 0;
  bottom: 28.8%;
  z-index: -2;
}

.token-info__list {
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
  list-style: none;
  position: relative;
}

@media (max-width: 767px) {
  .token-info__list {
    width: 100%;
  }
}

.token-info__list::before {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background-color: #1D1D3E;
  content: "";
  z-index: -1;
}

@media (max-width: 991px) {
  .token-info__list::before {
    display: none;
  }
}

.token-info__list li {
  background-color: #1D1D3E;
  padding: 19px 44px;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  margin-top: 30px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1199px) {
  .token-info__list li {
    padding: 19px 25px;
  }
}

.token-info__list li::before {
  position: absolute;
  top: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #00D89E;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  content: "";
}

.token-info__list li h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

@media (max-width: 1199px) {
  .token-info__list li h4 {
    font-size: 20px;
  }
}

.token-info__list li span {
  font-size: 16px;
  font-weight: 500;
  color: #B3B3C0;
}

.token-info--start li:nth-child(2)::before {
  background-color: #FC3352;
}

.token-info--start li:nth-child(3)::before {
  background-color: #ACDF35;
}

.token-info--end li:nth-child(1)::before {
  background-color: #FF9B5C;
}

.token-info--end li:nth-child(2)::before {
  background-color: #3D88FB;
}

.token-info--end li:nth-child(3)::before {
  background-color: #5637C8;
}

.token-update__title {
  font-size: 22px;
  font-weight: 600 !important;
  color: var(--color-white);
  margin-bottom: 45px;
}

.token-update__data li {
  display: flex;
  align-items: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: 1px solid #5A5A5A;
  height: 60px;
  color: var(--color-white);
  font-size: 18px;

}

.token-update__data li:not(:last-child) {
  margin-bottom: 20px;
}

.token-update__data li span {
  width: 25%;
  display: flex;
  height: 56px;
  align-items: center;
  padding-left: 20px;
  background-image: url(../images/backgrounds/token__update-bg.svg);
  background-repeat: no-repeat;
  background-position-x: 100%;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.token-update__data li strong {
  padding-left: 50px;
  color: #FFF;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-weight: 400;
}

.token-distribution__content {
  padding: 80px 50px;
  margin-right: -62px;
  padding-right: 150px;
}

@media (max-width: 767px) {
  .token-distribution__content {
    padding: 30px 30px;
    background: #0b0e13;
    margin-right: 0;
  }
}

.token-distribution__bg {
  position: absolute;
  z-index: -1;
  left: -40px;
  top: -28px;
  background-image: url(../img/bg/td_bg.png);
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-size: cover;
}

.token-chat__wrap {
  position: relative;
}

.token-chat__wrap::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: calc(100% - 93px);
  height: 2px;
  background-color: #262932;
  content: "";
}

@media (max-width: 767px) {
  .token-chat__wrap::before {
    display: none;
  }
}

.token-chat__wrap li {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}

@media (max-width: 767px) {
  .token-chat__wrap li {
    width: 50%;
  }
}

.token-chat__wrap li:nth-child(1) .number {
  padding-bottom: 138px;
}

.token-chat__wrap li:nth-child(1) .number::before {
  top: 57.5%;
  left: 50.4%;
  width: 16px;
  height: 16px;
}

.token-chat__wrap li .number {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-white);
  padding-bottom: 93px;
  position: relative;
}

.token-chat__wrap li .number::before {
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #0B0E13;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  content: "";
  z-index: 1;
}

.token-chat__wrap li .date {
  font-size: 16px;
  color: #B3B3C0;
}

@media (max-width: 991px) {
  .token-chat__wrap li .date {
    font-size: 14px;
  }
}

.token-chat__animation {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.token-chat__animation::before,
.token-chat__animation::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border: 1px solid #2367E8;
  border-radius: 50%;
  z-index: -1;
}

.token-chat__animation::before {
  animation: tc_animation1 1.2s 0.2s ease-out infinite;
}

.token-chat__animation::after {
  animation: tc_animation2 1.2s ease-out infinite;
}

/*----------------------------------------*/
/*  08. roadmap
/*----------------------------------------*/
.roadmap__wrap {
  position: relative;
  padding: 0 72px;
  margin-bottom: -30px;
}

@media (max-width: 767px) {
  .roadmap__wrap {
    padding: 0 20px;
  }
}

.roadmap__shape {
  position: absolute;
  top: 89%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -11px;
  right: -11px;
}

@media (max-width: 1199px) {
  .roadmap__shape {
    display: none;
  }
}

.roadmap__item {
  position: relative;
}

@media (max-width: 991px) {
  .roadmap__item {
    -webkit-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    transform: translateY(0) !important;
    margin-bottom: 30px;
  }
}

.roadmap__item::before {
  position: absolute;
  top: 74px;
  left: 37px;
  width: 1px;
  height: calc(100% - 120px);
  background: #24273C;
  content: "";
  z-index: -2;
}

.roadmap__item:nth-child(even) {
  -webkit-transform: translateY(155px);
  -ms-transform: translateY(155px);
  transform: translateY(155px);
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column-reverse;
}

.roadmap__item:nth-child(even) .roadmap__head {
  margin-top: 20px;
}

.roadmap__item:nth-child(even) .roadmap__info {
  margin-top: 91px;
}

.roadmap__item:nth-child(even)::before {
  top: auto;
  bottom: 74px;
}

.roadmap__item:nth-child(odd) .roadmap__head {
  margin-bottom: 20px;
}

.roadmap__item:nth-child(odd) .roadmap__info {
  margin-bottom: 91px;
}

.roadmap__item:nth-child(2) .number {
  color: #FF9B5C;
}

.roadmap__item:nth-child(3) {
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}

.roadmap__item:nth-child(3) .number {
  color: #FC3352;
}

.roadmap__item:nth-child(4) {
  -webkit-transform: translateY(265px);
  -ms-transform: translateY(265px);
  transform: translateY(265px);
}

@media (max-width: 1199px) {
  .roadmap__item:nth-child(4) {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.roadmap__item:nth-child(4) .number {
  color: #ACDF35;
}

.roadmap__item:nth-child(5) {
  -webkit-transform: translateY(90px);
  -ms-transform: translateY(90px);
  transform: translateY(90px);
}

.roadmap__item:nth-child(5) .number {
  color: #3D88FB;
}

.roadmap__item .number {
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #00D89E;
  line-height: 18px;
  margin-left: 21px;
}

.roadmap__head .icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 2px solid #24273C;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.roadmap__head h3 {
  font-size: 22px;
  font-weight: 600;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .roadmap__head h3 {
    font-size: 19px;
  }
}

.roadmap__info {
  font-size: 16px;
  color: #B3B3C0;
  padding-left: 54px;
}

.roadmap__info li {
  line-height: 24px;
}

.roadmap__info li:not(:last-child) {
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .roadmap__year {
    display: none;
  }
}

.roadmap__year .year {
  position: absolute;
  top: 84%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1F1F48;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.roadmap__year .year--start {
  left: -36px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .roadmap__year .year--start {
    left: -10px;
  }
}

.roadmap__year .year--end {
  right: -36px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .roadmap__year .year--end {
    right: -10px;
  }
}

.roadmap__sec-shape .shape {
  position: absolute;
  z-index: -1;
}

.roadmap__sec-shape .shape--1 {
  left: 0;
  top: 0;
}

.roadmap__sec-shape .shape--2 {
  right: 0;
  top: 9%;
}

.roadmap__list {
  padding: 0 70px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 1199px) {
  .roadmap__list {
    padding: 0;
  }
}

.roadmap__list::before {
  position: absolute;
  top: 13px;
  left: 52%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  background-image: url(../img/shape/rmm_shape.png);
  height: 100%;
  width: 118px;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  .roadmap__list::before {
    display: none;
  }
}

.roadmap__list-box {
  top: 0;
  position: relative;
  width: 50%;
}

@media (max-width: 767px) {
  .roadmap__list-box {
    width: 100%;
  }
}

.roadmap__list-box:not(:last-child) .roadmap__list-inner {
  margin-bottom: 120px;
}

@media (max-width: 767px) {
  .roadmap__list-box:not(:last-child) .roadmap__list-inner {
    margin-bottom: 30px;
  }
}

/* .roadmap__list-box:nth-child(even) {
  text-align: right;
} */

.roadmap__list-box:nth-child(even) .roadmap__list-inner {
  margin-left: auto;
  top: 68px;
  position: relative;
  margin-bottom: 0;
  padding-right: 133px;
  background-image: url(../img/bg/rm_bg2.png);
  margin-right: -50px;
}

@media (max-width: 991px) {
  .roadmap__list-box:nth-child(odd) .roadmap__list-inner {
    padding-right: 50px;
    margin-right: 0;
    background-image: none;
  }
}

@media (max-width: 767px) {
  .roadmap__list-box:nth-child(odd) .roadmap__list-inner {
    top: 0;
    margin-bottom: 30px;
  }
}

.roadmap__list-box:nth-child(odd) .roadmap__list-inner ul li::before {
  left: auto;
  right: -20px;
}

.roadmap__list-box:nth-child(odd) .roadmap__list-inner .icon {
  right: auto;
  right: 45px;
  top: auto;
  top: 45px;
}
/* .roadmap__list-box:nth-child(even) .roadmap__list-bloc {
  display: flex;
  justify-content: end;
} */

.roadmap__list-box:nth-child(odd) .roadmap__list-inner .icon::before {
  right: auto;
  left: -82px;
}

.roadmap__list-box:nth-child(odd) .roadmap__list-inner::before,
.roadmap__list-box:nth-child(odd) .roadmap__list-inner::after {
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 0 100%, 100% 0);
}

@media (max-width: 1200px) {
  .roadmap__list-box:nth-child(2) .roadmap__list-inner .icon::before {
    left: -27px;
  }
}

.roadmap__list-box:nth-child(3) .roadmap__list-inner .icon::before {
  right: -87px;
}

.roadmap__list-box:nth-child(4) .roadmap__list-inner .icon::before {
  left: -54px;
}

@media (max-width: 1200px) {
  .roadmap__list-box:nth-child(4) .roadmap__list-inner .icon::before {
    left: 0;
  }
}

.roadmap__list-box:nth-child(5) .roadmap__list-inner .icon::before {
  right: -46px;
}

.roadmap__list-box:nth-child(5) .roadmap__list-inner .icon::before {
  right: -71px;
}

.roadmap__list-box:nth-child(6) .roadmap__list-inner .icon::before {
  left: -69px;
}

@media (max-width: 1200px) {
  .roadmap__list-box:nth-child(6) .roadmap__list-inner .icon::before {
    left: -16px;
  }
}

.roadmap__list-box:last-child .roadmap__list-inner {
  margin-bottom: 0;
}

.roadmap__list-inner {
  max-width: 500px;
  min-height: 350px;
  background-image: url(../img/bg/rm_bg2.png);
  background-repeat: no-repeat;
  padding: 44px 70px;
}

@media (max-width: 991px) {
  .roadmap__list-inner {
    max-width: 330px;
    min-height: 360px;
    background: #0b0e13;
    padding: 44px 54px;
  }
}

@media (max-width: 767px) {
  .roadmap__list-inner {
    max-width: 100%;
  }
}

.roadmap__list-inner::before,
.roadmap__list-inner::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 54px;
  height: 65px;
  content: "";
  background-color: #fff;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 991px) {

  .roadmap__list-inner::before,
  .roadmap__list-inner::after {
    display: none;
  }
}

.roadmap__list-inner::after {
  opacity: 0;
}

.roadmap__list-inner:hover::after {
  opacity: 1;
}

.roadmap__list-inner h3 {
  font-size: 22px;
  line-height: 35px;
  letter-spacing: -0.22px;
  margin-bottom: 25px;
  font-weight: 600;
}

.roadmap__list-inner ul li {
  color: #B3B3C0;
  position: relative;
}

.roadmap__list-inner ul li::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50);
  -ms-transform: translateY(-50);
  transform: translateY(-50);
  left: -20px;
  width: 10px;
  height: 2px;
  /* content: ""; */
  background-color: #fff;
}

.roadmap__list-inner ul li:not(:last-child) {
  margin-bottom: 5px;
}

.roadmap__list-inner .icon {
  position: absolute;
  top: 45px;
  right: -20px;
}

@media (max-width: 991px) {
  .roadmap__list-inner .icon {
    display: none;
  }
}

.roadmap__list-inner .icon::before {
  position: absolute;
  top: 11px;
  right: -75px;
  width: 10px;
  height: 10px;
  background-color: #fff;
  /* content: ""; */
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

/*----------------------------------------*/
/*  09. team
/*----------------------------------------*/
.team__wrap {
  border: 1px solid #2B2B54;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  overflow: hidden;
  background-color: #0B0B29;
}

.team__item {
  width: 25%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  padding: 48px 20px 38px;
}

@media (max-width: 1199px) {
  .team__item {
    width: 50%;
    border-top: 1px solid #2B2B54;
    margin-top: -1px;
  }
}

@media (max-width: 767px) {
  .team__item {
    width: 100%;
  }
}

.team__item:not(:last-child) {
  border-right: 1px solid #2B2B54;
}

.team__item:hover {
  background-color: #1D1D3E;
}

.team__item .avatar {
  width: 224px;
  height: 224px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 45px;
}

.team__info h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.team__info span {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
}

.team__social .h-icon {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: inline-block;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  margin: 0 5px;
  background-color: var(--color-primary);
  z-index: 1;
  position: relative;
}

.team__social .h-icon i {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.team__social.style2 .h-icon {
  width: 31px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  color: #03050E;
  position: relative;
  clip-path: polygon(0 25%, 50% 0, 100% 25%, 99% 75%, 50% 100%, 0 75%);
}

.team__social.style2 .h-icon::before,
.team__social.style2 .h-icon::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  content: "";
  z-index: -1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.team__social.style2 .h-icon::after {
  opacity: 0;
}

.team__social.style2 .team__social-link li a {
  width: 35px;
  height: 35px;
  background-color: transparent;
  background-image: url(../img/icon/s_icon_bg.png);
  background-position: center center;
}

.team__social-link {
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.team__social-link li:not(:last-child) {
  margin-right: 5px;
}

.team__social-link li a {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: inline-block;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background-color: #121229;
}

.team__social-link.link-left {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

.team__social-link.link-right {
  -webkit-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  transform: translateX(-20px);
}

.team__item:hover .team__social-link,
.team__single:hover .team__social-link {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.team__item:hover .team__social .h-icon,
.team__single:hover .team__social .h-icon {
  color: #fff;
}

.team__item:hover .team__social .h-icon i,
.team__single:hover .team__social .h-icon i {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.team__item:hover .team__social .h-icon i:before,
.team__single:hover .team__social .h-icon i:before {
  content: "\f068";
}

.team__item:hover .team__social .h-icon::after,
.team__single:hover .team__social .h-icon::after {
  opacity: 1;
}

.team__shape .shape {
  position: absolute;
  z-index: -1;
}

.team__shape .shape--1 {
  bottom: -50%;
  right: 0;
}

.team__shape .shape--2 {
  bottom: 3%;
  right: 0;
}

.team__single {
  background-image: url(../img/bg/team_bg1.png);
  min-height: 366px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  padding: 40px 45px;
  margin-left: -40px;
  margin-right: -40px;
  position: relative;
}

.team__single::before,
.team__single::after {
  position: absolute;
  top: 0;
  left: 40px;
  width: 54px;
  height: 65px;
  content: "";
  background-color: #fff;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 1199px) {

  .team__single::before,
  .team__single::after {
    display: none;
  }
}

.team__single::after {
  opacity: 0;
}

.team__single:hover::after {
  opacity: 1;
}

.team__single.style2 {
  background-image: url(../img/bg/team_bg2.png);
}

.team__single.style2::before,
.team__single.style2::after {
  left: auto;
  right: 40px;
  top: auto;
  bottom: 22px;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.team__single .avatar {
  width: 134px;
  height: 134px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
}

.team__single .avatar img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.team__single:hover .avatar img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.team__single .content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: -0.54px;
}

.team__single .content span {
  font-size: 16px;
  color: #B3B3C0;
}

.team__single .rating {
  position: absolute;
  top: 10px;
  right: 60px;
  background-image: url(../img/bg/rating_bg.png);
  width: 67px;
  height: 28px;
  background-repeat: no-repeat;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team__single .rating img {
  margin-right: 5px;
}

.team__bg {
  background-repeat: no-repeat;
  background-position: center 62%;
  background-size: contain;
}

/*----------------------------------------*/
/*  10. faq
/*----------------------------------------*/
.faq__wrap {
  padding: 0 66px;
}

@media (max-width: 991px) {
  .faq__wrap {
    padding: 0;
  }
}

.faq__sec-shape .shape {
  position: absolute;
  z-index: -1;
}

.faq__sec-shape .shape--1 {
  top: 10%;
  left: 0;
}

.faq__sec-shape .shape--2 {
  right: 0;
  bottom: 9%;
}

.faq__blockchain {
  padding: 0 70px;
}

@media (max-width: 991px) {
  .faq__blockchain {
    padding: 0;
  }
}

.faq__blockchain .accordion_box .block {
  border-color: #262932 !important;
}

.faq__blockchain .accordion_box .block .acc-btn {
  padding: 30px 0;
  font-family: 'IBM Plex Mono', sans-serif;
  font-weight: 400;
}

.faq__blockchain .accordion_box .block .content {
  border-top: 0;
  padding-top: 0;
  color: #5A5A5A;
}

.faq__blockchain .accordion.block.active-block .acc-btn .arrow::after {
  opacity: 1;
}

.faq__blockchain .accordion.block.active-block .acc-btn .arrow span::before {
  opacity: 0;
}

.faq__blockchain .accordion.block.active-block .acc-btn .arrow span::after {
  opacity: 1;
}

.faq__blockchain .acc-btn::before,
.faq__blockchain .acc-btn::after {
  display: none;
}

.faq__blockchain .acc-btn.active .arrow::after {
  opacity: 1;
}

.faq__blockchain .acc-btn.active .arrow span::before {
  opacity: 0;
}

.faq__blockchain .acc-btn.active .arrow span::after {
  opacity: 1;
}

.faq__blockchain .acc-btn span {
  margin: 0 !important;
}

.faq__blockchain .arrow {
  position: absolute;
  top: 26px;
  right: 0;
  width: 40px;
  height: 40px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(0deg);
  transition: .3s all;
}
.faq__blockchain .arrow .icon {
  z-index: 10;
}
.faq__blockchain .acc-btn.active .arrow::before {
}
.faq__blockchain .acc-btn.active .arrow .icon {
  transform: rotate(180deg);
  transition: .3s all;
  margin-left: 0px;
  margin-top: 0px;
}
.faq__blockchain .arrow::before,
.faq__blockchain .arrow::after {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/backgrounds/collapse-icon-bg-black.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.faq__blockchain .arrow::after {
  background-image: url(../images/backgrounds/collapse-icon-bg.svg);
  opacity: 0;
}

.faq__blockchain .arrow span::before,
.faq__blockchain .arrow span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 13px;
  color: #fff;
}

.faq__blockchain .arrow span::after {
  content: "\f077";
  opacity: 0;
  color: #03050E;
  z-index: 1;
  top: 48%;
}

.faq__btc .accordion_box .block {
  background-color: #0B1121;
  border: 0 !important;
}

.faq__btc .accordion_box .block:not(:last-child) {
  margin-bottom: 20px;
}

.faq__btc .accordion_box .block .acc-btn {
  background-color: #111828;
  padding: 37px 40px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.48px;
}

@media (max-width: 767px) {
  .faq__btc .accordion_box .block .acc-btn {
    padding: 30px 20px;
    padding-right: 60px;
    font-size: 20px;
    line-height: 30px;
  }
}

.faq__btc .accordion_box .block .acc-btn::before,
.faq__btc .accordion_box .block .acc-btn::after {
  display: none;
}

.faq__btc .accordion_box .block.active-block .acc-btn {
  background-color: #0B1121;
  padding-top: 30px;
  padding-bottom: 27px;
}

.faq__btc .accordion_box .block.active-block .acc-btn .arrow::before {
  opacity: 1;
}

.faq__btc .accordion_box .block.active-block .acc-btn .arrow span::before,
.faq__btc .accordion_box .block.active-block .acc-btn .arrow span::after {
  color: #fff;
}

.faq__btc .accordion_box .block.active-block .acc-btn .arrow span::before {
  opacity: 0;
}

.faq__btc .accordion_box .block.active-block .acc-btn .arrow span::after {
  opacity: 1;
}

.faq__btc .accordion_box .block .arrow {
  position: absolute;
  top: 50%;
  right: 48px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: #fff;
  margin: 0;
}

@media (max-width: 767px) {
  .faq__btc .accordion_box .block .arrow {
    right: 20px;
  }
}

.faq__btc .accordion_box .block .arrow::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.faq__btc .accordion_box .block .arrow span::before,
.faq__btc .accordion_box .block .arrow span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 13px;
  color: #0B1121;
}

.faq__btc .accordion_box .block .arrow span::after {
  content: "\f077";
  opacity: 0;
  color: #03050E;
  z-index: 1;
  top: 48%;
}

.faq__btc .accordion_box .block .content {
  border: 0;
  padding: 45px 40px;
  padding-top: 0;
  color: #A4BDCC;
  padding-right: 100px;
}

@media (max-width: 767px) {
  .faq__btc .accordion_box .block .content {
    padding: 30px 20px;
  }
}

.faq__nav {
  border: 0;
}

@media (max-width: 767px) {
  .faq__nav {
    justify-content: start;
  }
}

.faq__nav li {
  margin-bottom: 20px;
}

.faq__nav li:not(:last-child) {
  margin-right: 50px;
}

@media (max-width: 991px) {
  .faq__nav li:not(:last-child) {
    margin-right: 35px;
  }
}

.faq__nav li .nav-link {
  font-size: 18px;
  font-weight: 600;
  color: #DAEDF8;
  padding: 0;
  border: 0;
}

.faq__nav li .nav-link.active {
  background-color: transparent;
}

.accordion__wrap .accordion-title {
  margin-bottom: 30px;
}

.accordion_box {
  position: relative;
}

.accordion_box .block {
  position: relative;
  overflow: hidden;
}

.accordion_box .block:not(:last-child) {
  border-bottom: 1px solid #2B2B54;
}

.accordion_box .block:last-child {
  margin-bottom: 0;
}

.accordion_box .block .acc-btn {
  color: #000;
  position: relative;
  font-weight: 500;
  font-size: 26px;
  line-height: 34px;
  cursor: pointer;
  padding: 33px 0;
  padding-right: 20px;
}

@media (max-width: 767px) {
  .accordion_box .block .acc-btn {
    font-size: 22px;
    line-height: 32px;
  }
}

.accordion_box .block .acc-btn span {
  display: block;
  font-size: 14px;
  color: #000;
  font-weight: 600;
  margin-bottom: 16px;
}

.accordion_box .block .acc-btn::before,
.accordion_box .block .acc-btn::after {
  position: absolute;
  top: 53%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  border: 9px solid transparent;
  border-top: 14px solid rgba(255, 255, 255, 0.3);
  content: "";
}

.accordion_box .block .acc-btn::after {
  opacity: 1;
  border: 9px solid transparent;
  border-bottom: 14px solid var(--color-white);
  opacity: 0;
  top: 44%;
}

.accordion_box .block.active-block .acc-btn::after {
  opacity: 1;
}

.accordion_box .block.active-block .acc-btn::before {
  opacity: 0;
}

.accordion_box .block .content {
  position: relative;
  padding-top: 32px;
  padding-bottom: 42px;
  border-top: 1px solid #2B2B54;
}

.accordion_box .block .content p {
  font-size: 18px;
  color: #B3B3C0;
}

.accordion_box .block .content p:not(:last-child) {
  margin-bottom: 30px;
}

.accordion_box .block .content p a {
  color: var(--color-white);
  text-decoration: underline;
  font-weight: 500;
}

.accordion_box .block .content ul {
  margin-bottom: 30px;
  padding-left: 11px;
  list-style: none;
}

.accordion_box .block .content ul li {
  font-size: 18px;
  color: #B3B3C0;
  position: relative;
  padding-left: 17px;
}

.accordion_box .block .content ul li::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: var(--color-white);
  content: "";
}

.accordion_box .block .content ul li:not(:last-child) {
  margin-bottom: 5px;
  position: relative;
}

.accordion_box .block .acc_body {
  position: relative;
  display: none;
}

.accordion_box .block .acc_body.current {
  display: block;
}

/*----------------------------------------*/
/*  11. brand
/*----------------------------------------*/
.brand__marquee {
  min-height: 232px;
  z-index: 2;
  position: relative;
}

@media (max-width: 767px) {
  .brand__marquee {
    min-height: 120px;
  }
}

.brand__item {
  width: 232px;
  height: 232px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
  position: relative;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .brand__item {
    width: 120px;
    height: 120px;
  }

  .brand__item img {
    max-width: 80px;
  }
}

.brand__item:not(:last-child) {
  margin-right: 30px;
}

.brand__item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 1px solid #2B2B54;
  content: "";
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.brand__item:hover {
  background-color: #1D1D3E;
}

.brand__item:hover::before {
  border-style: dashed;
  animation: spin 12s infinite linear;
  border-color: var(--color-white);
}

.brand__wrap {
  padding: 115px 95px;
  padding-top: 110px;
  position: relative;
}

@media (max-width: 1200px) {
  .brand__wrap {
    padding: 98px 95px;
    padding-top: 86px;
  }
}

@media (max-width: 767px) {
  .brand__wrap {
    padding: 0;
  }
}

.brand__wrap::before,
.brand__wrap::after {
  position: absolute;
  top: 29px;
  left: 4px;
  width: 54px;
  height: 65px;
  content: "";
  background-color: #fff;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 1199px) {

  .brand__wrap::before,
  .brand__wrap::after {
    top: 26px;
    left: 16px;
  }
}

@media (max-width: 991px) {

  .brand__wrap::before,
  .brand__wrap::after {
    top: 30px;
    left: 24px;
  }
}

@media (max-width: 767px) {

  .brand__wrap::before,
  .brand__wrap::after {
    display: none;
  }
}

.brand__wrap::after {
  top: auto;
  left: auto;
  bottom: 63px;
  right: 11px;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

@media (max-width: 1199px) {
  .brand__wrap::after {
    bottom: 50px;
    right: 21px;
  }
}

@media (max-width: 991px) {
  .brand__wrap::after {
    bottom: 55px;
  }
}

.brand__bg {
  position: absolute;
  top: 0;
  left: -35px;
  width: 105%;
  height: 100%;
  background-image: url(../img/bg/faq_bg.png);
  content: "";
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 1199px) {
  .brand__bg {
    left: -20px;
    width: 100%;
    background-size: cover;
  }
}

@media (max-width: 767px) {
  .brand__bg {
    display: none;
  }
}

.brand__item-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.brand__single {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16.666%;
  padding: 28px 20px;
}

@media (max-width: 991px) {
  .brand__single {
    width: 25%;
  }
}

@media (max-width: 767px) {
  .brand__single {
    width: 50%;
    padding: 20px 10px;
  }
}

.brand__single a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.4;
}

.brand__single a:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  opacity: 1;
}

.brand__sec-bg {
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center 6%;
  background-size: contain;
}

@media (max-width: 767px) {
  .brand__sec-bg {
    background-image: none !important;
  }
}

.brand__title h3 {
  font-size: 28px;
  line-height: 38px;
  letter-spacing: -1.12px;
  margin-bottom: 10px;
}

.brand__logo-wrap {
  margin-left: -20px;
}

@media (max-width: 767px) {
  .brand__logo-wrap {
    justify-content: start;
  }
}

.brand__logo-item {
  margin-top: 30px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  padding: 0 20px;
}

.brand__logo-item:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

/*----------------------------------------*/
/*  12. contact
/*----------------------------------------*/
.ico-contact {
  z-index: 1;
}

.ico-contact__wrap {
  background-color: #1D1D3E;
  padding: 94px 204px 60px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  margin-bottom: -376px;
  z-index: 2;
  position: relative;
}

@media (max-width: 767px) {
  .ico-contact__wrap {
    padding: 40px 20px;
  }
}

.ico-contact__wrap .title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.ico-contact__wrap input,
.ico-contact__wrap textarea {
  height: 50px;
  background-color: #0B0B29;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-bottom: 20px;
  padding: 20px 33px;
  color: var(--color-white);
  border: 2px solid transparent;
}

.ico-contact__wrap input::-webkit-input-placeholder,
.ico-contact__wrap textarea::-webkit-input-placeholder {
  color: #B3B3C0;
  opacity: 1;
}

.ico-contact__wrap input::-moz-placeholder,
.ico-contact__wrap textarea::-moz-placeholder {
  color: #B3B3C0;
  opacity: 1;
}

.ico-contact__wrap input:-ms-input-placeholder,
.ico-contact__wrap textarea:-ms-input-placeholder {
  color: #B3B3C0;
  opacity: 1;
}

.ico-contact__wrap input:-moz-placeholder,
.ico-contact__wrap textarea:-moz-placeholder {
  color: #B3B3C0;
  opacity: 1;
}

.ico-contact__wrap input:focus,
.ico-contact__wrap textarea:focus {
  border-color: var(--color-primary);
}

.ico-contact__wrap textarea {
  min-height: 200px;
}

.ico-contact__shape-img .shape {
  position: absolute;
  top: 51%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .ico-contact__shape-img .shape {
    display: none;
  }
}

.ico-contact__shape-img .shape--1 {
  left: -85px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .ico-contact__shape-img .shape--1 {
    left: -35px;
  }
}

@media (max-width: 1199px) {
  .ico-contact__shape-img .shape--1 {
    left: -20px;
  }
}

.ico-contact__shape-img .shape--2 {
  right: -100px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .ico-contact__shape-img .shape--2 {
    right: -35px;
  }
}

@media (max-width: 1199px) {
  .ico-contact__shape-img .shape--2 {
    right: -20px;
  }
}

.ico-contact__shape .shape {
  position: absolute;
  z-index: -1;
}

.ico-contact__shape .shape--1 {
  left: 0;
  top: -48px;
}

.ico-contact__shape .shape--2 {
  left: 0;
  top: -58%;
}

.ico-contact__shape .shape--3 {
  right: 0;
  top: -48px;
}

.contact-info__item {
  background-color: #1D1D3E;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 70px 60px;
}

@media (max-width: 1199px) {
  .contact-info__item {
    padding: 50px 35px;
  }
}

.contact-info__item .icon {
  width: 56px;
  height: 56px;
  border: 1px solid #333159;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

.contact-info__item h3 {
  font-size: 20px;
}

.contact-info__item p {
  font-size: 32px;
  line-height: 40px;
  color: var(--color-white);
}

@media (max-width: 1199px) {
  .contact-info__item p {
    font-size: 20px;
    line-height: 30px;
  }
}

.contact-info__item p a {
  color: currentColor;
}

.contact-info__item a:hover {
  text-decoration: underline;
}

.google-map__inner {
  height: 626px;
}

@media (max-width: 991px) {
  .google-map__inner {
    height: 350px;
  }
}

.google-map__inner iframe {
  height: 100%;
  width: 100%;
  -webkit-filter: invert(1);
  filter: invert(1);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

/*----------------------------------------*/
/*  13. blog
/*----------------------------------------*/
.blog__item {
  position: relative;
  z-index: 2;
  padding: 20px;
  background-color: #1D1D3E;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.blog__item .thumb {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
  display: inline-block;
}

.blog__item .thumb img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  mix-blend-mode: luminosity;
}

.blog__item .title {
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 18px;
}

@media (max-width: 767px) {
  .blog__item .title {
    font-size: 22px;
    line-height: 34px;
  }
}

.blog__item .title a {
  color: var(--color-white);
}

.blog__item p {
  margin-bottom: 38px;
}

.blog__item .thm-btn {
  padding: 14px 38px;
}

.blog__item:hover .thumb img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.blog__meta li {
  color: #B3B3C0;
  margin-bottom: 10px;
}

.blog__meta li:not(:last-child) {
  margin-right: 45px;
}

@media (max-width: 767px) {
  .blog__meta li:not(:last-child) {
    margin-right: 20px;
  }
}

.blog__meta li a {
  color: inherit;
}

.blog__meta li i {
  color: var(--color-white);
  margin-right: 6px;
  font-size: 14px;
}

.blog__inner {
  padding: 40px;
  padding-top: 35px;
}

@media (max-width: 767px) {
  .blog__inner {
    padding: 20px 0;
  }
}

.blog__shape .shape {
  position: absolute;
  z-index: -1;
}

.blog__shape .shape--1 {
  top: 1%;
  right: 0;
}

.blog__shape .shape--2 {
  top: 13%;
  left: 0;
}

.blog__shape .shape--3 {
  top: 27%;
  right: 0;
}

.blog__shape .shape--4 {
  top: 36%;
  right: 0;
}

.blog__shape .shape--5 {
  top: 47%;
  left: 0;
}

.widget {
  padding: 50px 40px;
  background-color: #1D1D3E;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  z-index: 2;
  position: relative;
}

.widget__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}

.widget__search {
  position: relative;
}

.widget__search input {
  background-color: #0B0B29;
  height: 60px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  font-size: 18px;
}

.widget__search input::-webkit-input-placeholder {
  color: #92939E;
  opacity: 1;
}

.widget__search input::-moz-placeholder {
  color: #92939E;
  opacity: 1;
}

.widget__search input:-ms-input-placeholder {
  color: #92939E;
  opacity: 1;
}

.widget__search input:-moz-placeholder {
  color: #92939E;
  opacity: 1;
}

.widget__search button {
  position: absolute;
  top: 50%;
  right: 20px;
  color: #92939E;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: transparent;
  font-size: 17px;
}

.widget__category li:not(:last-child) {
  margin-bottom: 27px;
}

.widget__category li a {
  font-size: 18px;
  color: #B3B3C0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
}

.widget__category li a:hover {
  color: var(--color-white);
}

.widget__post-item:not(:last-child) {
  margin-bottom: 30px;
}

.widget__post-item .post-thumb {
  width: 80px;
  height: 80px;
  margin-right: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  overflow: hidden;
}

.widget__post-item .post-content {
  width: calc(100% - 100px);
}

.widget__post-item .post-date {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #B3B3C0;
}

.widget__post-item .post-title {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 26px;
  font-family: var(--font-body);
}

.widget__post-item .post-title a {
  color: inherit;
}

.widget__social li:not(:last-child) {
  margin-right: 10px;
}

.widget__social li a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: var(--color-white);
  background-color: #0B0B29;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.widget__social li a:hover {
  background-color: var(--color-primary);
}

.widget__divider {
  width: 100%;
  height: 1px;
  background-color: #383855;
}

.blog-single__wrap {
  background-color: #1D1D3E;
  padding: 70px 125px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  z-index: 2;
  position: relative;
}

@media (max-width: 991px) {
  .blog-single__wrap {
    padding: 50px 30px;
  }
}

@media (max-width: 767px) {
  .blog-single__wrap {
    padding: 30px 20px;
  }
}

.blog-single__content img,
.blog-single__thumb img {
  mix-blend-mode: luminosity;
}

.blog-single__top {
  max-width: 740px;
  margin: 0 auto 50px;
}

@media (max-width: 767px) {
  .blog-single__top {
    margin: 0;
  }
}

.blog-single__title {
  font-size: 50px;
  line-height: 62px;
  margin-bottom: 35px;
}

@media (max-width: 1199px) {
  .blog-single__title {
    font-size: 40px;
    line-height: 54px;
  }
}

@media (max-width: 767px) {
  .blog-single__title {
    font-size: 24px;
    line-height: 38px;
  }
}

.blog-single__thumb {
  display: inline-block;
  text-align: center;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
  margin-bottom: 70px;
}

@media (max-width: 767px) {
  .blog-single__thumb {
    margin-bottom: 0;
  }
}

.blog-single__author .avatar {
  margin-right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
}

.blog-single__author h4 {
  font-size: 16px;
  letter-spacing: 0;
  text-transform: capitalize;
}

.blog-single__content {
  padding: 0 90px;
}

@media (max-width: 1199px) {
  .blog-single__content {
    padding: 0 50px;
  }
}

@media (max-width: 767px) {
  .blog-single__content {
    padding: 0 10px;
    margin-top: 30px;
  }
}

.blog-single__content h2 {
  font-size: 36px;
  margin-bottom: 43px;
}

@media (max-width: 767px) {
  .blog-single__content h2 {
    font-size: 24px;
  }
}

.blog-single__content p {
  color: var(--color-white);
  font-size: 18px;
  line-height: 30px;
}

.blog-single__content p:not(:last-child) {
  margin-bottom: 50px;
}

.blog-single__images {
  margin: 55px -90px;
}

.blog-single__images img {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

@media (max-width: 1199px) {
  .blog-single__images {
    margin: 40px -50px;
  }
}

@media (max-width: 767px) {
  .blog-single__images {
    margin: 30px -10px;
  }
}

blockquote {
  max-width: 705px;
  font-size: 24px;
  color: #fff;
  line-height: 34px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  blockquote {
    font-size: 20px;
    line-height: 31px;
  }
}

blockquote .icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

blockquote span {
  font-size: 16px;
  color: #B3B3C0;
  display: block;
  margin-top: 10px;
}

.post-footer {
  padding: 0 90px;
}

@media (max-width: 1199px) {
  .post-footer {
    padding: 0 50px;
  }
}

@media (max-width: 767px) {
  .post-footer {
    padding: 0;
  }
}

.post-tags-share .tags ul li {
  margin-top: 10px;
}

.post-tags-share .tags ul li:not(:last-child) {
  margin-right: 6px;
}

.post-tags-share .tags ul li a {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.7px;
  border-radius: 3px;
  background-color: #0B0B29;
  display: inline-block;
  padding: 8px 20px;
  line-height: 1;
  color: #92939E;
}

.post-tags-share .tags ul li a:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.post-tags-share .social-share ul li {
  margin-top: 10px;
}

.post-tags-share .social-share ul li:not(:first-child) {
  margin-left: 10px;
}

.post-tags-share .social-share ul li a {
  font-size: 11px;
  background-color: #0B0B29;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.post-tags-share .social-share ul li a:hover {
  background-color: var(--color-primary);
}

.post-author {
  text-align: center;
  border: 1px solid #333159;
  padding: 60px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.post-author__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin: 0 auto 30px;
  overflow: hidden;
}

.post-author h5 {
  font-size: 20px;
  margin-bottom: 11px;
}

.post-author p {
  max-width: 510px;
  margin: 0 auto;
}

.post-related {
  margin-bottom: 70px;
  padding-bottom: 75px;
  border-bottom: 1px solid rgba(2, 0, 20, 0.05);
}

.post-related .title {
  font-size: 36px;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .post-related .title {
    font-size: 28px;
  }
}

.post-related__item .thumb {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  overflow: hidden;
  margin-bottom: 30px;
}

.post-related__item h3 {
  font-size: 28px;
  color: #020014;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .post-related__item h3 {
    font-size: 22px;
  }
}

.post-related__item h3 a {
  color: inherit;
}

.post-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -50px;
  margin-top: 55px;
  position: relative;
}

@media (max-width: 767px) {
  .post-nav {
    margin: 0;
  }
}

.post-nav__item {
  width: 50%;
  padding: 0 50px;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .post-nav__item {
    width: 50%;
    padding: 0;
  }
}

@media (max-width: 767px) {
  .post-nav__item {
    width: 100%;
  }
}

.post-nav__item h3 {
  font-size: 18px;
  color: var(--color-white);
  line-height: 26px;
  margin-bottom: 3px;
  font-weight: 600;
  max-width: 200px;
}

.post-nav__item h3 a {
  color: inherit;
}

.post-nav__item span {
  color: #B3B3C0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  display: inline-block;
}

.post-nav__item.post-left {
  text-align: right;
}

@media (max-width: 767px) {
  .post-nav__item.post-left {
    text-align: start;
  }
}

.post-nav__item.post-left h3 {
  float: right;
}

@media (max-width: 767px) {
  .post-nav__item.post-left h3 {
    float: none;
  }
}

.post-nav__item.post-left:hover .icon {
  margin-left: -5px;
}

.post-nav__item.post-right {
  text-align: left;
}

.post-nav__item.post-right .icon {
  left: auto;
  right: -12px;
}

.post-nav__item.post-right:hover .icon {
  margin-right: -5px;
}

.post-nav__item .link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.post-nav__item .icon {
  position: absolute;
  top: 50%;
  left: -12px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 24px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: var(--color-white);
}

.post-nav__item:hover h3 a {
  background-size: 100% 100%;
}

.post-nav__inner {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background-color: #0B0B29;
  padding: 20px 40px;
}

@media (max-width: 767px) {
  .post-nav__inner {
    padding: 20px 30px;
  }
}

.post-nav .grid_icon {
  position: absolute;
  top: 56%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 991px) {
  .post-nav .grid_icon {
    display: none;
  }
}

/* comment css */
.post-comments {
  padding-bottom: 55px;
}

.post-comments .title {
  font-size: 26px;
  margin-bottom: 25;
  font-weight: 500;
  font-family: var(--font-body);
}

.latest__comments {
  margin-top: -30px;
}

.latest__comments .comments-box {
  padding: 30px 0;
  position: relative;
}

.latest__comments .comments-text {
  overflow: hidden;
}

.latest__comments .comments-avatar {
  border-radius: 50%;
  float: left;
}

@media (max-width: 767px) {
  .latest__comments .comments-avatar {
    float: none;
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .latest__comments .comments-avatar {
    float: left;
    margin-bottom: 0px;
  }
}

.latest__comments .comments-avatar img {
  border-radius: 50%;
  width: 80px !important;
  margin-right: 30px;
}

.latest__comments li:last-child .comments-box {
  padding-bottom: 0px;
}

.latest__comments li.children {
  margin-left: 100px;
}

@media (max-width: 767px) {
  .latest__comments li.children {
    margin-left: 0px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .latest__comments li.children {
    margin-left: 50px;
  }
}

.latest__comments li.children .reply {
  top: 30px;
}

@media (max-width: 767px) {
  .latest__comments li.children .reply {
    top: 120px;
  }
}

.latest__comments .avatar-name {
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
}

.latest__comments .avatar-name h5 {
  font-size: 18px;
  margin-bottom: 0px;
  font-weight: 500;
  font-family: var(--font-body);
}

.latest__comments .avatar-name span {
  font-size: 15px;
  color: var(--color-default);
}

.latest__comments .reply {
  display: inline-block;
  font-weight: 400;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  line-height: 1;
  position: absolute;
  right: 0;
  margin-top: 0;
  top: 30px;
  text-decoration: none;
  font-size: 12px;
  color: #92939E;
  padding: 9px 20px;
  background-color: #0B0B29;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

@media (max-width: 767px) {
  .latest__comments .reply {
    top: 90px;
  }
}

.latest__comments .reply i {
  margin-right: 5px;
}

.latest__comments .reply:hover {
  color: var(--color-white);
}

.latest__comments--2 p {
  font-size: 14px;
  line-height: 24px;
  color: var(--color-black);
}

.comments-form {
  background: #0B0B29;
  padding: 50px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

@media (max-width: 767px) {
  .comments-form {
    padding: 30px 20px;
  }
}

.comments-form .title {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 500;
  font-family: var(--font-body);
}

.comments-form p {
  margin-bottom: 28px;
}

.comments-form .form input,
.comments-form .form textarea {
  height: 55px;
  margin-bottom: 20px;
  padding: 0 20px;
  width: 100%;
  font-size: 16px;
  color: var(--color-black);
  border-radius: 5px;
  background-color: #1D1D3E;
  border: 2px solid transparent;
  font-weight: 400;
}

.comments-form .form input::-webkit-input-placeholder,
.comments-form .form textarea::-webkit-input-placeholder {
  color: #B3B3C0;
  opacity: 1;
}

.comments-form .form input::-moz-placeholder,
.comments-form .form textarea::-moz-placeholder {
  color: #B3B3C0;
  opacity: 1;
}

.comments-form .form input:-ms-input-placeholder,
.comments-form .form textarea:-ms-input-placeholder {
  color: #B3B3C0;
  opacity: 1;
}

.comments-form .form input:-moz-placeholder,
.comments-form .form textarea:-moz-placeholder {
  color: #B3B3C0;
  opacity: 1;
}

.comments-form .form input:focus,
.comments-form .form textarea:focus {
  border-color: var(--color-primary);
}

.comments-form .form textarea {
  padding: 20px 30px;
  height: 150px;
}

.comments-form__btn button {
  padding: 18px 35px;
}

/*----------------------------------------*/
/*  14. user option
/*----------------------------------------*/
@media (max-width: 1199px) {
  .user-option .sec-title {
    margin-bottom: 60px;
  }
}

.user-option__item {
  background-image: url(../img/bg/ui_bg1.svg);
  background-position: center 17px;
  background-repeat: no-repeat;
  margin-right: -90px;
  background-position-x: -39px;
  padding: 50px;
  padding-right: 45px;
  position: relative;
}

@media (max-width: 1199px) {
  .user-option__item {
    background: #0b0e13;
    padding-top: 0;
  }
}

@media (max-width: 991px) {
  .user-option__item {
    margin-right: 0;
  }
}

.user-option__item::before {
  position: absolute;
  top: 46px;
  left: 2px;
  width: 54px;
  height: 64px;
  content: "";
  background-color: #fff;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .user-option__item::before {
    display: none;
  }
}

.user-option__item .icon {
  bottom: -22px;
  left: -38px;
}

.user-option__item .heading {
  font-weight: 600;
  letter-spacing: -0.96px;
}

.user-option__item.style2 {
  margin-right: 0;
  margin-left: -90px;
  background-image: url(../img/bg/ui_bg2.svg);
}

@media (max-width: 1199px) {
  .user-option__item.style2 {
    background: #0b0e13;
  }
}

@media (max-width: 991px) {
  .user-option__item.style2 {
    margin-left: 0;
  }
}

.user-option__item.style2::before {
  left: auto;
  right: 4px;
  top: auto;
  bottom: 2px;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.user-option__list li {
  padding-left: 28px;
  position: relative;
}

.user-option__list li span {
  position: absolute;
  top: 0;
  left: 0;
}

.user-option__list li h4 {
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.54px;
}

.user-option__list li p {
  line-height: 24px;
}

.user-option__list li:not(:last-child) {
  margin-bottom: 20px;
}

.user-option__img {
  z-index: -1;
  position: relative;
  margin-top: 36px;
}

@media (max-width: 991px) {
  .user-option__img {
    margin-top: 0;
  }
}

/*----------------------------------------*/
/*  15. advantages
/*----------------------------------------*/
.advantages-bg {
  background-repeat: no-repeat;
  background-position: center 76%;
}

.advantages-table {
  background-image: url(../img/bg/table_bg.svg);
  background-position: center center;
  background-repeat: no-repeat;
  border-collapse: separate;
  padding: 50px;
  table-layout: auto;
  border-spacing: 0;
  fill: #0B0E13;
  stroke: #262932;
  filter: drop-shadow(0px 11px 40px rgba(0, 0, 0, 0.9));
  position: relative;
}

@media (max-width: 991px) {
  .advantages-table {
    padding: 50px 20px;
  }
}

.advantages-table::before,
.advantages-table::after {
  position: absolute;
  top: 2px;
  left: 1px;
  width: 54px;
  height: 64px;
  content: "";
  background-color: #fff;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 991px) {

  .advantages-table::before,
  .advantages-table::after {
    display: none;
  }
}

.advantages-table::after {
  top: auto;
  left: auto;
  bottom: 3px;
  right: 1px;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.advantages-table thead {
  background-color: #03050E;
  border: 1px solid #262932;
}

.advantages-table thead tr {
  padding: 10px 50px;
  padding-top: 50px;
}

.advantages-table thead th {
  font-size: 18px;
  padding: 17px 50px;
}

@media (max-width: 1199px) {
  .advantages-table thead th {
    padding: 17px 20px;
  }
}

.advantages-table thead tr th,
.advantages-table tbody tr td {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
}

@media (max-width: 991px) {

  .advantages-table thead tr th,
  .advantages-table tbody tr td {
    font-size: 16px;
  }
}

.advantages-table tbody tr:first-child td {
  padding-top: 46px;
}

@media (max-width: 767px) {
  .advantages-table tbody tr:first-child td {
    padding-top: 12px;
  }
}

.advantages-table tbody tr:nth-child(even) {
  background-color: #03050E;
}

.advantages-table tbody tr td {
  padding: 12px 50px;
}

@media (max-width: 1199px) {
  .advantages-table tbody tr td {
    padding: 12px 20px;
  }
}

.advantages-table tbody tr td:first-child {
  text-align: left;
}

@media (max-width: 767px) {
  .advantages-table tbody tr td:first-child {
    text-align: center;
  }
}

.advantages-table tbody td {
  text-align: center;
}

@media (max-width: 600px) {
  .advantages-table thead {
    display: none;
  }

  .advantages-table {
    background-image: none;
    border: 1px solid #262932;
    padding: 0;
  }

  .advantages-table table,
  .advantages-table th,
  .advantages-table td,
  .advantages-table tr,
  .advantages-table tbody {
    width: 100%;
    display: block;
    border: 0;
    text-align: center;
  }

  .advantages-table table {
    border: 1px solid #262932;
    margin: 0 -1px 24px 0;
    text-align: left;
    width: 100%;
    border-collapse: separate;
    border-radius: 5px;
  }

  .advantages-table tbody>tr+tr {
    border-top: 1px solid #262932;
    background-color: #03050E;
  }
}

/*----------------------------------------*/
/*  16. solution
/*----------------------------------------*/
.solution__list li {
  padding-left: 68px;
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 25px;
  display: inline-block;
  min-width: 505px;
}

.solution__list li::before,
.solution__list li::after {
  position: absolute;
  content: "";
  background-color: #262932;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.solution__list li::before {
  width: 100%;
  opacity: 0;
}

.solution__list li::after {
  background-color: #15B785;
  width: 0;
}

.solution__list li .icon {
  position: absolute;
  top: 0;
  left: 0;
}

.solution__list li .icon::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background-color: #262932;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  content: "";
  z-index: -1;
  top: -4px;
  left: 10px;
}

.solution__list li h4 {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.54px;
}

.solution__list li:hover::before {
  opacity: 1;
}

.solution__list li:hover::before,
.solution__list li:hover::after {
  width: 100%;
}

.solution__list li:hover::after {
  width: 100%;
  transition-delay: .3s;
}

.solution__img {
  margin-left: -70px;
  margin-right: -34px;
  z-index: -1;
}

.solution__img-sml .circle {
  position: absolute;
  z-index: -1;
}

.solution__img-sml .circle--1 {
  top: 4%;
  left: 44%;
}

@media (max-width: 1199px) {
  .solution__img-sml .circle--1 {
    top: 8%;
    left: 43%;
    max-width: 150px;
  }
}

.solution__img-sml .circle--2 {
  left: 12%;
  bottom: 1%;
}

.solution__img-sml .circle--3 {
  right: 5%;
  bottom: 6%;
}

@media (max-width: 991px) {
  .solution__img-sml .circle--3 {
    right: 13%;
    bottom: 20%;
    max-width: 150px;
  }
}

.solution__icon {
  position: absolute;
  top: 53%;
  left: 56%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 991px) {
  .solution__icon {
    left: 52%;
  }
}

@media (max-width: 767px) {
  .solution__icon {
    left: 56%;
    max-width: 102px;
  }
}

/*----------------------------------------*/
/*  17. pricing
/*----------------------------------------*/
.pricing__single {
  padding: 65px 65px 70px 57px;
  background-color: #111828;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .pricing__single {
    padding: 60px 55px 70px 50px;
  }
}

@media (max-width: 1199px) {
  .pricing__single {
    padding: 40px 20px;
  }
}

.pricing__single span {
  font-size: 12px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 5px;
  letter-spacing: 1.44px;
  color: #A4BDCC;
}

.pricing__single span strong {
  color: #45A3AB;
  text-decoration: underline;
}

.pricing__single h4 {
  font-size: 20px;
  letter-spacing: -0.6px;
}

.pricing__single.active span {
  color: #A7DDDC;
}

.pricing__single.active span strong {
  color: #DAEDF8;
}

.pricing__single.active h2,
.pricing__single.active h4 {
  color: #DAEDF8;
}

.pricing__head h2 {
  font-size: 60px;
  font-weight: 300;
  letter-spacing: -2.4px;
}

@media (max-width: 1199px) {
  .pricing__head h2 {
    font-size: 50px;
  }
}

.pricing__date {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/*----------------------------------------*/
/*  18. service
/*----------------------------------------*/
.service__single {
  padding: 50px;
  background-color: #111828;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .service__single {
    padding: 50px 30px;
  }
}

.service__single::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.service__single:hover::before {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.service__single h3 {
  font-size: 24px;
  letter-spacing: -0.72px;
}

/*----------------------------------------*/
/*  19. product
/*----------------------------------------*/
.product__single {
  padding: 50px 65px 70px 57px;
  background-color: #111828;
}

@media (max-width: 1199px) {
  .product__single {
    padding: 40px 20px;
  }
}

.product__single .thumb {
  padding-bottom: 45px;
  display: flex;
  justify-items: center;
  justify-content: center;
}

.product__single .thumb img {
  max-height: 197px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.product__single:hover img {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}

.product__holder {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product__holder h4 {
  font-size: 12px;
  font-weight: 600;
  color: rgba(167, 221, 220, 0.38);
  letter-spacing: 1.44px;
  margin-bottom: 15px;
}

.product__holder h4 span {
  color: #A7DDDC;
}

.product__holder h3 {
  font-size: 20px;
  letter-spacing: -0.6px;
}

/*----------------------------------------*/
/*  20. cta
/*----------------------------------------*/
.btc-cta__holder {
  padding: 100px 20px;
  background-image: linear-gradient(227deg, #45ACAB 0%, #4788AC 100%);
}

.btc-cta__holder h2 {
  font-size: 60px;
  margin-bottom: 25px;
  letter-spacing: -1.8px;
}

@media (max-width: 767px) {
  .btc-cta__holder h2 {
    font-size: 40px;
  }
}

.btc-cta__holder p {
  font-size: 20px;
  color: #C7E5F0;
  margin-bottom: 30px;
}

.btc-cta__holder .btc-btn {
  padding: 23px 114px 21px 50px;
  font-size: 18px;
  text-transform: capitalize;
  letter-spacing: -0.18px;
}

.btc-cta__holder .btc-btn:hover i {
  right: 45px;
}

.btc-cta__holder .btc-btn i {
  right: 50px;
}

.btc-cta__img .cta-shape {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}

.btc-cta__img .cta-shape--1 {
  left: 0;
}

.btc-cta__img .cta-shape--2 {
  right: 0;
}

/*----------------------------------------*/
/*  21. newslatter
/*----------------------------------------*/
.btc-newslatter__title {
  font-size: 60px;
  letter-spacing: -1.8px;
}

@media (max-width: 991px) {
  .btc-newslatter__title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .btc-newslatter__title {
    font-size: 34px;
    line-height: 1.3 !important;
  }
}

.btc-newslatter__title::before {
  top: 28px;
}

.btc-newslatter__title span {
  font-weight: 300;
}

.btc-newslatter__form input {
  width: calc(100% - 437px);
  height: 70px;
  background-color: #111828;
  padding: 20px 40px;
  font-size: 18px;
}

.btc-newslatter__form input::-webkit-input-placeholder {
  color: #DAEDF8;
  opacity: 1;
}

.btc-newslatter__form input::-moz-placeholder {
  color: #DAEDF8;
  opacity: 1;
}

.btc-newslatter__form input:-ms-input-placeholder {
  color: #DAEDF8;
  opacity: 1;
}

.btc-newslatter__form input:-moz-placeholder {
  color: #DAEDF8;
  opacity: 1;
}

@media (max-width: 991px) {
  .btc-newslatter__form input {
    width: calc(100% - 358px);
  }
}

@media (max-width: 767px) {
  .btc-newslatter__form input {
    width: 100%;
    padding: 20px;
  }
}

.btc-newslatter__form button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 23px 114px 21px 50px;
  font-size: 18px;
  text-transform: capitalize;
  letter-spacing: -0.18px;
  max-width: 412px;
  height: 70px;
}

@media (max-width: 991px) {
  .btc-newslatter__form button {
    max-width: 340px;
  }
}

@media (max-width: 767px) {
  .btc-newslatter__form button {
    position: relative;
    max-width: 100%;
    margin-top: 10px;
  }
}

/*----------------------------------------*/
/*  22. preloader
/*----------------------------------------*/
#xb-loadding {
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 999999;
  top: 0;
  left: 0;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  background-color: #0B0B29;
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.form-loading-wrapper {
  position: fixed;
  inset: 0;
  background: #0B1121;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 800px;
  z-index: 9999;
}

.cube-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  transform-style: preserve-3d;
  animation: rotate-cube 6s infinite linear;
}

.face {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 4px;
  width: 60px;
  height: 60px;
  transform-origin: center;
}

.face div {
  width: 18px;
  height: 18px;
  background: #15B785;
  animation: cube-pulse 1.6s infinite ease-in-out;
  border-radius: 3px;
}

/* Variação nas animações para dar vida */
.face div:nth-child(odd) {
  animation-delay: 0.2s;
}
.face div:nth-child(even) {
  animation-delay: 0.4s;
}
.face div:nth-child(5) {
  animation-delay: 0.6s;
}

/* Posição das faces no cubo */
.face-front   { transform: rotateY(0deg)   translateZ(30px); }
.face-back    { transform: rotateY(180deg) translateZ(30px); }
.face-right   { transform: rotateY(90deg)  translateZ(30px); }
.face-left    { transform: rotateY(-90deg) translateZ(30px); }
.face-top     { transform: rotateX(90deg)  translateZ(30px); }
.face-bottom  { transform: rotateX(-90deg) translateZ(30px); }

@keyframes rotate-cube {
  0%   { transform: rotateX(0deg) rotateY(0deg); }
  100% { transform: rotateX(360deg) rotateY(360deg); }
}

@keyframes cube-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/*----------------------------------------*/
/*  23. backtotop
/*----------------------------------------*/
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 40px;
  height: 35px;
  width: 35px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(255, 170, 0, 0.08);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  transform: translateY(15px);
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  -ms-transform: translateY(15px);
  -o-transform: translateY(15px);
}

.progress-wrap::after {
  position: absolute;
  content: '\f176';
  font-family: "Font Awesome 5 Pro";
  text-align: center;
  line-height: 35px;
  font-size: 15px;
  color: var(--color-primary);
  left: 0;
  top: 0;
  height: 35px;
  width: 35px;
  cursor: pointer;
  display: block;
  font-weight: 700;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  font-size: 13px;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--color-primary);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap.style-2::after {
  color: #15B785;
}

.progress-wrap.style-2 svg.progress-circle path {
  stroke: #15B785;
}

.progress-wrap.style-3::after {
  color: #45ACAB;
}

.progress-wrap.style-3 svg.progress-circle path {
  stroke: #45ACAB;
}

/*----------------------------------------*/
/*  24. breadcrumb
/*----------------------------------------*/
.breadcrumb {
  min-height: 490px;
  padding: 120px 0;
  margin: 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 991px) {
  .breadcrumb {
    min-height: 200px;
    padding: 80px 0;
  }
}

.breadcrumb__content {
  -webkit-transform: translateY(38px);
  -ms-transform: translateY(38px);
  transform: translateY(38px);
}

.breadcrumb__title {
  text-align: center;
  color: #fff;
  font-size: 60px;
  margin-bottom: 28px;
}

@media (max-width: 991px) {
  .breadcrumb__title {
    font-size: 46px;
  }
}

@media (max-width: 767px) {
  .breadcrumb__title {
    font-size: 32px;
  }
}

.breadcrumb .bread-crumb .breadcrumb-item {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
}

.breadcrumb .bread-crumb .breadcrumb-item:not(:first-child) {
  padding-left: 5px;
}

.breadcrumb .bread-crumb .breadcrumb-item:not(:first-child)::before {
  content: "-";
  left: 2px;
  position: relative;
}

.breadcrumb .bread-crumb .breadcrumb-item a {
  color: #B3B3C0;
  font-weight: 500;
}

.breadcrumb .bread-crumb .breadcrumb-item a:hover {
  color: var(--color-white);
}

.breadcrumb__shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media (max-width: 767px) {
  .breadcrumb__icon {
    display: none;
  }
}

.breadcrumb__icon .icon {
  position: absolute;
  z-index: -1;
}

.breadcrumb__icon .icon--1 {
  left: 5.6%;
  top: 37%;
}

@media (max-width: 991px) {
  .breadcrumb__icon .icon--1 {
    left: 0;
    top: 35%;
  }
}

.breadcrumb__icon .icon--2 {
  left: 13.8%;
  bottom: 12%;
}

@media (max-width: 991px) {
  .breadcrumb__icon .icon--2 {
    left: 5.8%;
    bottom: 0%;
  }
}

.breadcrumb__icon .icon--3 {
  right: 6%;
  top: 43%;
}

@media (max-width: 991px) {
  .breadcrumb__icon .icon--3 {
    right: 0;
    top: 34%;
  }
}

.breadcrumb__icon .icon--4 {
  right: 16.8%;
  bottom: 9%;
}

@media (max-width: 991px) {
  .breadcrumb__icon .icon--4 {
    right: 2.8%;
    bottom: 2%;
  }
}

/*----------------------------------------*/
/*  25. sec-title
/*----------------------------------------*/
.sec-title__subtitle {
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.sec-title__title {
  font-size: 36px;
  line-height: 55px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -1.6px;
}

@media (max-width: 767px) {
  .sec-title__title {
    font-size: 32px;
    line-height: 45px;
  }
}

.sec-title__title.text-50 {
  font-size: 50px;
  letter-spacing: -2px;
}

@media (max-width: 1199px) {
  .sec-title__title.text-50 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .sec-title__title.text-50 {
    font-size: 32px;
  }
}

.sec-title p {
  font-weight: 400;
}

.sec-title p.text-20 {
  font-size: 20px;
}

.sec-title.style2 p {
  font-size: 18px;
  line-height: 28px;
}

.sec-title p.text-20 {
  font-size: 20px;
}

.btc-title {
  font-size: 60px;
  letter-spacing: -1.8px;
}

@media (max-width: 991px) {
  .btc-title {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .btc-title {
    font-size: 40px;
  }
}

.btc-title__text {
  font-size: 18px;
  line-height: 26px;
}

/*----------------------------------------*/
/*  23. footer
/*----------------------------------------*/
.footer__ico {
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 447px;
}

.footer__ico .footer__social li a:hover {
  background-color: var(--color-primary);
}

.footer__widget h2 {
  font-size: 24px;
  margin-bottom: 38px;
}

.footer__widget h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.54px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__subscribe {
  position: relative;
  z-index: 2;
}

.footer__subscribe p {
  color: #B3B3C0;
  margin-bottom: 30px;
}

.footer__subscribe form {
  max-width: 322px;
  position: relative;
}

.footer__subscribe form input {
  background-color: #1D1D3E;
  height: 60px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.footer__subscribe form button {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 20px;
  width: 65px;
  height: 60px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.footer__document {
  margin-top: 37px;
  z-index: 2;
  position: relative;
}

@media (max-width: 991px) {
  .footer__document {
    justify-content: start;
  }
}

.footer__document-item {
  background-color: #1D1D3E;
  border: 1px solid #2B2B54;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 30px 20px 22px;
  min-width: 196px;
  margin-top: 10px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .footer__document-item {
    min-width: 185px;
  }
}

@media (max-width: 1199px) {
  .footer__document-item {
    padding: 30px 15px 22px;
    min-width: auto;
  }
}

.footer__document-item:not(:first-child) {
  margin-left: 5px;
}

.footer__document-item .icon {
  margin-bottom: 14px;
}

.footer__document-item .title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: .5;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer__document-item .title i {
  margin-right: 7px;
}

.footer__document-item:hover {
  border-color: #1D1D3E;
}

.footer__document-item:hover .title {
  opacity: 1;
}

.footer__social li:not(:first-child) {
  margin-left: 6px;
}

.footer__social li a {
  display: inline-block;
  color: var(--color-white);
  width: 40px;
  height: 40px;
  background-color: #1D1D3E;
  font-size: 15px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__copyright-inner {
  padding: 15px 0;
  padding-top: 0;
}

.footer__copyright-text {
  color: #0B0B29;
  font-weight: 500;
}

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

.footer__links li a {
  color: #0B0B29;
}

.footer__icon-shape .icon {
  position: absolute;
}

.footer__icon-shape .icon--1 {
  bottom: 21%;
  left: 4%;
}

.footer__icon-shape .icon--2 {
  bottom: 37%;
  right: 4%;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .footer__icon-shape .icon--2 {
    bottom: 46%;
  }
}

@media (max-width: 1199px) {
  .footer__icon-shape .icon--2 {
    display: none;
  }
}

.footer__widget-community {
  display: inline-block;
  min-width: 223px;
  padding: 30px;
  padding-top: 38px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.footer__widget-community h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 27px;
  letter-spacing: -0.54px;
  line-height: 26px;
  text-transform: capitalize;
}

.footer__widget-community a {
  color: var(--color-white);
  font-weight: 700;
  text-transform: uppercase;
  background-color: #0B0E13;
  padding: 10px 30px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  display: inline-block;
}

.footer__widget-community a img {
  margin-right: 5px;
}

.footer__widget-community a i {
  margin-right: 10px;
  font-size: 20px;
}

.footer__widget-links li:not(:last-child) {}

.footer__widget-links li a {
  color: #FFF;
  text-align: center;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.footer__widget-links li a:hover {
  color: #B3B3C0;
}

.footer__copyright-blc {
  padding: 20px 0;
  padding-top: 5px;
}

.footer__copyright-blc .footer__copyright-text {
  color: #fff;
}

.footer__copyright-blc .footer__social li a {
  background-color: transparent;
  position: relative;
  z-index: 1;
}

.footer__copyright-blc .footer__social li a::before,
.footer__copyright-blc .footer__social li a::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../img/shape/social_bg.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer__copyright-blc .footer__social li a::after {
  background-image: url(../img/shape/social_bg-hover.png);
  opacity: 0;
}

.footer__copyright-blc .footer__social li a:hover::after {
  opacity: 1;
}

.footer__newsletter {
  border-bottom: 1px solid #262932;
  padding-bottom: 60px;
  margin-bottom: 60px;
}

.footer__newsletter-form {
  max-width: 650px;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .footer__newsletter-form input {
    width: 100%;
    background-position: center center;
    margin-bottom: 10px;
  }
}

.footer__newsletter-form button {
  background-color: transparent;
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
}

.footer__newsletter-form button::before {
  background-image: url(../img/bg/sb_btn_bg.svg);
}

.footer__newsletter-form button::after {
  background-image: url(../img/bg/sb_btn_bg-hover.svg);
}

@media (max-width: 767px) {
  .footer__newsletter-form button {
    position: unset;
    margin-top: 10px;
  }
}

.footer__btc-social span {
  font-size: 12px;
  color: #A4BDCC;
  text-transform: uppercase;
  letter-spacing: 0.24px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

.footer__btc-social ul li a {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  background-color: #151D2F;
  color: #DAEDF8;
  opacity: 0.3;
}

.footer__btc-social ul li a:hover {
  opacity: 1;
  color: var(--color-white);
}

.footer__widget-btc {
  padding-left: 130px;
}

@media (max-width: 1199px) {
  .footer__widget-btc {
    padding-left: 40px;
  }
}

.footer__widget-btc h3 {
  margin-bottom: 30px;
  font-size: 20px;
  letter-spacing: -0.4px;
}

.footer__btc-links li:not(:last-child) {
  margin-bottom: 11px;
}

.footer__btc-links li a {
  font-size: 18px;
  color: #768999;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.footer__btc-links li a::before {
  position: absolute;
  width: 9px;
  height: 9px;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0.4);
  -ms-transform: translateY(-50%) scale(0.4);
  transform: translateY(-50%) scale(0.4);
  left: 0;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  content: "";
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer__btc-links li a:hover {
  color: #DAEDF8;
  padding-left: 19px;
}

.footer__btc-links li a:hover::before {
  opacity: 1;
  transition-delay: .1s;
  -webkit-transform: translateY(-50%) scale(1);
  -ms-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}

.footer__copyright-btc {
  color: #DAEDF8;
  font-weight: 600;
  padding: 30px 40px;
  padding-top: 15px;
  border-top: 1px solid #1A1F2E;
}

/* HOME BLOCKCHAIN ANIMATION */
  /* DEFAULT STATES */
    /* yellow */
    #yellow-shadow { opacity: 0; display: none; }
    #yellow-border { stroke: #5A5A5A; transition: .5s;}
    #yellow-text { opacity: 0; transform: translate(0, 100px); transition: 1s;}
    #yellow-smallblock { transform: translate(0, 100px); transition: 1s;}
    /* purple */
    #purple-shadow { opacity: 0; }
    #purple-border { stroke: #5A5A5A; transition: .5s;}
    #purple-text { opacity: 0; transform: translate(0, 80px); transition: 1s;}
    #purple-smallblock { transform: translate(0, 80px); transition: 1s;}
    /* white */
    #white-shadow { opacity: 0; }
    #white-border { stroke: #5A5A5A; transition: .5s;}
    #white-text { opacity: 0; transform: translate(0, 80px); transition: 1s;}
    #white-smallblock { transform: translate(0, 80px); transition: 1s;}
    /* lightblue */
    #lightblue-shadow { opacity: 0; }
    #lightblue-border { stroke: #5A5A5A; transition: .5s;}
    #lightblue-text { opacity: 0; transform: translate(0, 80px); transition: 1s;}
    #lightblue-smallblock { transform: translate(0, 80px); transition: 1s;}

  /* HOVER STATES */
    /* yellow */
    #yellow-mainblock:hover #yellow-shadow { opacity: 1; display: block; }
    #yellow-mainblock:hover #yellow-border { stroke: revert-layer; }
    #yellow-mainblock:hover #yellow-text { opacity: 1; transform: translate(0, 0px); }
    #yellow-mainblock:hover #yellow-smallblock { transform: translate(0, 0px);}
    /* purple */
    #purple-mainblock:hover #purple-shadow { opacity: 1; }
    #purple-mainblock:hover #purple-border { stroke: revert-layer; }
    #purple-mainblock:hover #purple-text { opacity: 1; transform: translate(0, 0px); }
    #purple-mainblock:hover #purple-smallblock { transform: translate(0, 0px);}
    /* white */
    #white-mainblock:hover #white-shadow { opacity: 1; }
    #white-mainblock:hover #white-border { stroke: revert-layer; }
    #white-mainblock:hover #white-text { opacity: 1; transform: translate(0, 0px); }
    #white-mainblock:hover #white-smallblock { transform: translate(0, 0px);}
    /* lightblue */
    #lightblue-mainblock:hover #lightblue-shadow { opacity: 1; }
    #lightblue-mainblock:hover #lightblue-border { stroke: revert-layer; }
    #lightblue-mainblock:hover #lightblue-text { opacity: 1; transform: translate(0, 0px); }
    #lightblue-mainblock:hover #lightblue-smallblock { transform: translate(0, 0px);}


  /* Components */
  /* #yellow-mainblock */
  /* #yellow-text */
  /* #yellow-smallblock */
  /* #yellow-shadow */
  /* #yellow-border */
  #boxdefault-1:hover #boxborder-1 { stroke: rgb(53, 125, 114);  }
  #boxdefault-2:hover #boxborder-2 { stroke: rgb(53, 125, 114);  }
  #boxdefault-3:hover #boxborder-3 { stroke: rgb(53, 125, 114);  }
  #boxdefault-4:hover #boxborder-4 { stroke: rgb(53, 125, 114);  }
  /* user option section */
  .user-option-section {
    background: url('../images/backgrounds/user-option-bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: 100%;
  }
  .user-option-card {
    background-color: #1F252E;
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 1rem;
    height: 428px;
    justify-content: center;
    position: relative;
    margin-bottom: 1rem;
  }
  .user-option-card__icon_box {
    display: flex;
    justify-content: center;
  }
  .user-option-card__icon_box img {
    width: 95px;
    height: 110px;
  }
  .user-option-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .user-option-card__content p {
    color: #D4D4D4;
    font-family: "IBM Plex Mono";
    font-size: 14px;
    font-weight: 400;
    text-align: center;
  }
  .user-option-card__content a {
    display: flex;
    gap: .5rem;
    align-items: center;
    margin-top: 1rem;
  }
  .user-option-card__content a.blue { color: #44FFE0;}
  .user-option-card__content a.yellow { color: #CEFF44;}
  .user-option-card__content a.white { color: #fff;}
  .user-option-card__content a.violet { color: #9644FF;}
  .user-option-card-float-shape {
    position: absolute;
  }
  .user-option-card-float-shape.left { left: 0; }
  .user-option-card-float-shape.top { top: 0; }
  .user-option-card-float-shape.right { right: 0; }
  .user-option-card-float-shape.bottom { bottom: 0; }
  .section-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .title-with-border {
    border-bottom: 1px solid #44FFE0;
    padding-bottom: 5px;
  }
  .title-with-border.black {
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
  }
  .section-title-text {
    text-align: center;
  }
  .impact-text-section {
    background-color: #fff;
  }
  .impact-text-section h4 {
    color: #000;
    text-align: center;
    font-family: "Chakra Petch";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px; /* 133.333% */
  }
  /*  */
  .wordassets-section {
    background-color: #121212;
  }
  .wordassets-card {
    background-color: #202020;
    box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.25);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    max-width: 325px;
  }
  .wordassets-card-badge {
    background: linear-gradient(90deg, #9644FF 0%, #44FFE0 100%);
    color: #000;
    padding: 2.5px 5px;
    width: 78px;
    text-align: center;
  }
  .wordassets-divider {
    background: linear-gradient(90deg, #9644FF 0%, #44FFE0 100%);
    height: 2px;
  }
  .wordassets-card-title {
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
  }
  .wordassets-card-text {
    color: #D4D4D4;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    font-family: "IBM Plex Mono";
  }
  .wordassets-card-small {
    color: #FFF;
    font-family: "IBM Plex Mono";
    font-size: 14px;
    font-weight: 400;
  }
  /*  */
  .wordassets-card {
    --background-color: #202020;
    --border-color: linear-gradient(to bottom right, #9644FF, #44FFE0);
    --border-width: 0.25em;
    --edge-size: 3rem;

    cursor: pointer;
    background: var(--background-color);
    border: 0;
    position: relative;
    isolation: isolate;
    display: inline-grid;
    place-content: center;
    clip-path: polygon(
        0% 0%,
        calc(100% - var(--edge-size)) 0%,
        100% var(--edge-size),
        100% 100%,
        0% 100%,
        0% 0%
    );
    transition: color 250ms;
}
.wordassets-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--border-color);
    z-index: -2;
}

.wordassets-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--background-color);
    z-index: -1;
    clip-path: polygon(
        /* top left 1 */
        var(--border-width) var(--border-width),
        /* top right 2 */
        calc(100% - calc(var(--edge-size) + var(--border-width) * 0.5)) var(--border-width),
        /* top right */
        calc(100% - var(--border-width)) calc(var(--edge-size) + var(--border-width) * 0.5),
        /* bottom right */
        calc(100% - var(--border-width)) calc(100% - var(--border-width)),
        /* bottom left */
        var(--border-width) calc(100% - var(--border-width))
    );
    transition: clip-path 500ms;
}
.wordassets-card-graph-bloc {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
.wordassets-card-graph {
  background: linear-gradient(180deg, rgba(150,68,255,0) 0%, rgba(150,68,255,0.2497373949579832) 40%, rgba(68,255,224,1) 100%);
  box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.25);
  width: 80%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.wordasset-card-graph-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wordasset-card-graph-title {
  color: #FFF;
  text-align: justify;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
}
.wordassets-card-bloc {
  display: flex;
  justify-content: center;
  align-items: center;
}
.roadmap-title-bloc p {
  color: #B9B9B9;
  text-align: center;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
.partners-section {
    background-color: #FFF;
}
.section-title {
  color: #000;
  font-family: "Chakra Petch";
  font-size: 36px;
  font-weight: 700;
}
.partners-card-bloc {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.partners-card {
  width: 303px;
  height: 300px;
  flex-shrink: 0;
  background-image: url('../images/backgrounds/partners-bg.svg');
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq-section {

}
.text-black { color: #000; }
.faq-section {
  background-color: #fff;
}
.blog-section {
  background-image: url('../images/backgrounds/blog-bg.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.blog-card {
  width: 302px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: .5rem;
  background-color: #202020;
}
.blog-card-image-box {

}
.blog-card-content-box {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.blog-card-badge {
  background: linear-gradient(90deg, #9644FF 0%, #44FFE0 100%);
  color: #000;
  padding: 1px 5px;
  width: 78px;
  text-align: center;

  font-family: "IBM Plex Mono";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
}
.blog-card-content-box h5 {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
}
.blog-card-content-box p {
  color: #D4D4D4;
  font-family: "IBM Plex Mono";
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px;
}
.blog-card-bloc {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.main-section-subtitle {
  color: #D4D4D4;
  text-align: center;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.contact-label {
  position: relative;
  font-size: 14px;
  font-family: "IBM Plex Mono";
  display: flex;
  flex-direction: column;
}

.contact-input-mold {
  --background-color: #000;
  --border-color: linear-gradient(to right, #9644FF, #44FFE0);
  --border-width: 1px;
  --edge-size: 1px;

  cursor: pointer;
  background: var(--background-color);
  border: 0;
  position: relative;
  isolation: isolate;
  display: inline-grid;
  place-content: center;
  clip-path: polygon(3% 0, 97% 0, 100% 20%, 100% 80%, 97% 100%, 3% 100%, 0 80%, 0 20%);
  transition: color 250ms;
  margin-top: .5rem;
  height: 54px;
  display: flex;
}

.contact-input-mold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #5A5A5A;
  z-index: -2;
}
.contact-input-mold:focus-within:before, .contact-input-mold:hover:before {
  background: var(--border-color);
}
.contact-input-mold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--background-color);
  z-index: -1;
  clip-path: polygon(
    calc(3% + var(--border-width)) var(--border-width),
    calc(97% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width)) calc(20% + var(--border-width)),
    calc(100% - var(--border-width)) calc(80% - var(--border-width)),
    calc(97% - var(--border-width)) calc(100% - var(--border-width)),
    calc(3% + var(--border-width)) calc(100% - var(--border-width)),
    var(--border-width) calc(80% - var(--border-width)),
    var(--border-width) calc(20% + var(--border-width))
  );
  transition: clip-path 500ms;
}
.contact-form {
  display: flex;
  justify-content: space-between;
}
.contact-form-bloc-1 {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form-bloc-2 { width: 40%; }
.contact-input {
  background-color: transparent !important;
  width: 100%;
  height: 54px;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.contact-input-with-icon {
  display: flex;
  align-items: center;
}
.contact-input-with-icon svg{
  margin-right: .5rem;
}
.contact-textarea {
  background-color: #000;
  border: 1px solid #5A5A5A;
  width: 100%;
  height: 170px;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.contact-textarea:focus {
  border: 1px solid #fff;
}
/*  */
.button-cutted-mold {
  --background-color: #000;
  --border-color: linear-gradient(to right, #9644FF, #44FFE0);
  --border-width: 1px;
  --edge-size: 1px;

  cursor: pointer;
  background: var(--background-color);
  border: 0;
  position: relative;
  isolation: isolate;
  display: inline-grid;
  place-content: center;
  clip-path: polygon(3% 0, 97% 0, 100% 20%, 100% 80%, 97% 100%, 3% 100%, 0 80%, 0 20%);
  transition: color 250ms;
  margin-top: .5rem;
  height: 54px;
  display: flex;
}

.button-cutted-mold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #5A5A5A;
  z-index: -2;
}
.button-cutted-mold:hover:before {
  background: var(--border-color);
}
.button-cutted-mold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--background-color);
  z-index: -1;
  clip-path: polygon(
    calc(3% + var(--border-width)) var(--border-width),
    calc(97% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width)) calc(20% + var(--border-width)),
    calc(100% - var(--border-width)) calc(80% - var(--border-width)),
    calc(97% - var(--border-width)) calc(100% - var(--border-width)),
    calc(3% + var(--border-width)) calc(100% - var(--border-width)),
    var(--border-width) calc(80% - var(--border-width)),
    var(--border-width) calc(20% + var(--border-width))
  );
  transition: clip-path 500ms;
}

.contact-input-mold input::-webkit-input-placeholder { color: #5A5A5A; }

.contact-input-mold input::-moz-placeholder { color: #5A5A5A; }

.contact-input-mold input:-ms-input-placeholder { color: #5A5A5A; }

.contact-input-mold input:-moz-placeholder { color: #5A5A5A; }

.button-cutted {
  width: 100%;
  background-color: transparent;
  color: #fff;
}
.button-cutted:disabled {
  background: rgba(34, 34, 34, 0.50);
  cursor: not-allowed;
  opacity: 0.6;
}
.button-cutted-mold:has(.button-cutted:disabled):hover:before {
  background: #5A5A5A;
}

/*  */
.footer__newsletter-wrapper {
  display: flex;
  justify-content: space-between;
}
.footer__newsletter-wrapper .sec-title {
  display: flex;
  align-items: center;
}
.footer__newsletter-wrapper .sec-title__title {
  font-size: 32px;
  color: #FFF;
  font-family: "Chakra Petch";
  font-style: normal;
  font-weight: 700;
  line-height: 42px; /* 116.667% */
}
.footer__newsletter-wrapper .sec-title {
  width: 50%;
}
.footer__newsletter-wrapper .sec-form {
  width: 50%;
}
.footer__newsletter-form {
  display: flex;
  width: 100%;
  gap: 1rem;
}
.footer__newsletter-form-bloc-1 { width: 100%; }
.footer__newsletter-form-bloc-2 { width: 100%; }
.footer-separator {
  background-color: #44FFE0;
  height: 2px !important;
  margin-bottom: 30px;
  margin-top: 30px;
}
.about-content {
  display: flex;
  flex-direction: column;
}
.about-text-wrapper {
  display: flex;
  gap: 1rem;
}
.ln-48 {
  line-height: 48px;
}
.about-title {
  font-size: 36px;
  line-height: 48px;
  margin-bottom: 1rem;
  color: #000;
  width: 50%;
}
.about-text-bloc-1, .about-text-bloc-2 { font-size: 14px; line-height: 22px; }
.about-text-bloc-1 { display: flex; flex-direction: column; gap: 1rem; }
.about-text-bloc-2 { display: flex; flex-direction: column; gap: 1rem; }
.main-custom-section {
  min-height: 960px;
  padding-top: 160px;
}
.ln-48 { line-height: 48px; }
.text-36 { font-size: 36px; }
.mt-16 { margin-top: 16px; }
.mb-8 { margin-bottom: 8px; }
.gap-40 { gap: 40px; }
.meetourteam-wrapper { }
.meetourteam-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.meetourteam-card img { width: 100%; }
.meetourteam-card { color: #D4D4D4; }
.ourtechteam-card {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.gradient-color {
  background: linear-gradient(90deg, #9644FF 0%, #44FFE0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "IBM Plex Mono";
  font-weight: 600;
  line-height: 22px;
}
.services-section {
  background-image: url('../images/backgrounds/services-bg.png');
  height: 336px;
  display: flex;
  align-items: center;
}
.ghost-margin-top {
  margin-top: 102px;
}
.services-section-title {
  font-weight: bold;
  font-size: 80px;
}
.redirect-section {
  background-color: #000000;
  padding-top:  235px;
  padding-bottom: 235px;
}
.services-col-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
}
.services-col-card .cube-image { width: 83px; height: 110px;}
.services-col-card h6.purple {color: #9644FF;}
.services-col-card h6.white {color: #FFF;}
.services-col-card h6.green {color: #CEFF44;}
.services-col-card h6.blue {color: #44FFE0;}
.services-col-card h6 {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.services-col-card p {
  color: #D4D4D4;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.services-col-card a.purple {color: #9644FF;}
.services-col-card a.purple svg {fill: #9644FF;}
.services-col-card a.white {color: #FFF;}
.services-col-card a.white svg {fill: #FFF;}
.services-col-card a.yellow {color: #CEFF44;}
.services-col-card a.yellow svg {fill: #CEFF44;}
.services-col-card a.blue {color: #44FFE0;}
.services-col-card a.blue svg {fill: #44FFE0;}
.services-col-card a {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  display: flex;
  gap: .5rem;
  align-items: center;
  margin-top: auto;
}
.services-col-card a svg{
  transition: .3s;
}
.services-col-card:hover svg{
  transform: translateX(10px);
}

.learn-main-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('../images/backgrounds/learn-main-section.png');
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 600px;
}
.learn-main-section-text-bloc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.learn-main-section-text-bloc p {
  max-width: 465px;
}
.learn-main-section-row {
  justify-content: center;
}
.learn-main-section-image-bloc {
  display: flex;
  justify-content: center;
}
/*  */
.learn-content-section {
  background-color: #fff;
  padding-top: 255px;
  padding-bottom: 255px;
}
.learn-white-section-text-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.learn-white-section-text-box h5 {
  color: #000;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
}
.learn-white-section-text-box hr {
  opacity: 1;
}
.learn-white-section-text-box p {
  color: #5A5A5A;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}
/*  */
.courses-content-section {
  background-color: #000;
  padding-top: 255px;
  padding-bottom: 255px;
}
.course-card {
  display: flex;
  flex-direction: column;
  width: 0;
  transition: .3s all;
  width: 139px;
  position: relative;
}
.course-card.active {
  width: 303px;
}
.course-card-header {
  background-image: url('../images/services/learn-top-card-bg.png');
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 141px;
  opacity: .3;
}
.course-card.active .course-card-header {
  opacity: 1;
}
.course-card-header-name {
  color: #000;
  font-size: 19.772px;
  font-style: normal;
  font-weight: bold;
  line-height: 33.365px;
  letter-spacing: 0.371px;
}
.course-card-content{
  display: none;
  flex-direction: column;
  gap: .5rem;
  height: 100%;
}
.course-card.active .course-card-content{
  display: flex;
}
.course-card-body {
  padding: 1.5rem 1rem;
  background-color: #fff;
  height: 100%;
  overflow-x: hidden;
}
.course-card-body::after {
  content: '';
  position: absolute;
  right: -23px;
  bottom: -6px;
  width: 0;
  height: 0;
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-top: 35px solid #000;
  transform: rotate(315deg);
  clear: both;
}
.course-card-body h6 {
  color: #000;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}
.course-card-body ul {
  padding-left: 1rem;
  flex-direction: column;
  gap: .3rem;
  overflow-x: hidden;
}
.course-card-body ul li p {
  color: #5C5C5C;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  min-width: 255px;
}
.course-card-body-button-bloc {
  display: none;
  justify-content: center;
  margin-top: auto;
}
.course-card.active .course-card-body-button-bloc {
  display: flex;
}
.course-card-button {
  color: #000;
  text-align: center;
  font-family: "IBM Plex Mono";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 150% */
  width: 114px;
  height: 29px;
  flex-shrink: 0;
  background-image: url('../images/services/button-bg.svg');
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.course-cards-wrapper {
  display: flex;
  gap: .5rem;
}
.courses-content-pad {
  position: relative;
}
.courses-content-pad div {
  position: absolute;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.courses-content-pad .courses-content-tab.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.courses-content-tab {
  display: flex;
  flex-direction: column;
}
.courses-content-tab h3 {
  color: #FFF;
  font-family: "Chakra Petch";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
}
.courses-content-tab hr {
  background-color: #44FFE0;
  opacity: 1;
  width: 130px;
  margin: .5rem 0 .5rem;
}
.courses-content-tab h6 {
  color: #FFF;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 1rem;
}
.courses-content-tab ul {
  padding-left: 1.25rem;
}
.courses-content-tab ul li p {
  color: #B9B9B9;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
/*  */
.courses-bonus-content-section {
  background: url('../images/services/bonus-section-bg.svg');
  padding-top: 255px;
  padding-bottom: 255px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 80%;
}
.courses-bonus-content-title-bloc {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.courses-bonus-content-title-bloc h3 {
  font-family: "Chakra Petch";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  background: linear-gradient(90deg, rgba(150,68,255,1) 0%, rgba(68,255,224,1) 100%);
  color: transparent;
  background-clip: text;
  width: fit-content;
}
.courses-bonus-content-title-bloc hr {
  background-color: #44FFE0;
  opacity: 1;
  width: 105px;
  margin: .5rem 0 .5rem;
}
.courses-bonus-content-title-bloc h6 {
  color: #FFF;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 1rem;
}
/*  */
.bonus-course-cards-wrapper {
  display: flex;
  gap: 1rem;
  justify-content: end;
}
.bonus-course-card {
  display: flex;
  flex-direction: column;
  width: 0;
  transition: .3s all;
  width: 139px;
  position: relative;
}
.bonus-course-card.active {
  width: 303px;
}
.bonus-course-card-header {
  background-image: url('../images/services/learn-top-card-bg-2.png');
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 141px;
  opacity: .3;
}
.bonus-course-card.active .bonus-course-card-header {
  opacity: 1;
}
.bonus-course-card-header-name {
  color: #000;
  font-size: 19.772px;
  font-style: normal;
  font-weight: bold;
  line-height: 33.365px;
  letter-spacing: 0.371px;
}
.bonus-course-card-content{
  display: none;
  flex-direction: column;
  gap: .5rem;
  height: 100%;
}
.bonus-course-card.active .bonus-course-card-content{
  display: flex;
}
.bonus-course-card-body {
  padding: 1.5rem 1rem;
  background-color: #fff;
  height: 100%;
  overflow-x: hidden;
}
.bonus-course-card.active{
  clip-path: polygon(0 0, 100% 0, 100% 93%, 90% 100%, 10% 100%, 0 93%);
}

.bonus-course-card-body h6 {
  color: #000;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}
.bonus-course-card-body ul {
  padding-left: 1rem;
  flex-direction: column;
  gap: .3rem;
  overflow-x: hidden;
}
.bonus-course-card-body ul li p {
  color: #5C5C5C;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  min-width: 255px;
}
.bonus-course-card-body-button-bloc {
  display: none;
  justify-content: center;
  margin-top: auto;
}
.bonus-course-card.active .bonus-course-card-body-button-bloc {
  display: flex;
}
.bonus-course-card-button {
  color: #000;
  text-align: center;
  font-family: "IBM Plex Mono";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 150% */
  width: 114px;
  height: 29px;
  flex-shrink: 0;
  background-image: url('../images/services/button-bg.svg');
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
/*  */

.services-cryptoinfo-main-section {
    padding: calc(102px + 160px) 160px 160px;
    background-image: url('../images/services/crypto-info-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
}
.services-cryptoinfo-main-section-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  height: 100%;
}
.services-cryptoinfo-main-section-text-wrapper h1 {
  color: #CEFF44;
  font-family: "Chakra Petch";
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;
}
.services-cryptoinfo-main-section-text-wrapper h5 {
  color: #D4D4D4;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.services-cryptoinfo-main-section-image-wrapper {
  display: flex;
  justify-content: center;
}
/* */
.biography-main-section {
  background-color: #000;
}
.services-cryptoinfo-biography-main-section {
  padding: 250px 0;
}
.services-cryptoinfo-biography-main-section-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  height: 100%;
}
.services-cryptoinfo-biography-main-section-text-wrapper h2 {
  color: #CEFF44;
  font-family: "Chakra Petch";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 1rem;
  border-left: 2px solid #CEFF44;
  padding-left: .5rem;
}
.services-cryptoinfo-biography-main-section-text-wrapper {
    color: #D4D4D4;
    font-family: "IBM Plex Mono";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}
.services-cryptoinfo-biography-main-section .cryptoinfo-button {
  background-image: url('../images/services/cryptoinfo-button-bg.svg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 144px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CEFF44;
  text-align: center;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  cursor: pointer;
}
/* */
.rocket-main-section {
  background-color: #000;
}
.services-cryptoinfo-rocket-main-section {
  padding: 250px 0;
}
.services-cryptoinfo-rocket-main-section-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  justify-content: center;
}
.services-cryptoinfo-rocket-main-section-text-wrapper h2 {
  color: #CEFF44;
  font-family: "Chakra Petch";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 1rem;
  border-left: 2px solid #CEFF44;
  padding-left: .5rem;
}
.services-cryptoinfo-rocket-main-section-text-wrapper {
    color: #D4D4D4;
    font-family: "IBM Plex Mono";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}
.services-cryptoinfo-rocket-main-section .services-cryptoinfo-rocket-button {
  background-image: url('../images/services/cryptoinfo-button-bg.svg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 144px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CEFF44;
  text-align: center;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  cursor: pointer;
}
/* */
.structure-main-section {
  background-color: #000;
}
.services-cryptoinfo-structure-main-section {
  padding: 250px 0;
}
.services-cryptoinfo-structure-main-section-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  justify-content: center;
}
.services-cryptoinfo-structure-main-section-text-wrapper h2 {
  color: #CEFF44;
  font-family: "Chakra Petch";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 1rem;
  border-left: 2px solid #CEFF44;
  padding-left: .5rem;
}
.services-cryptoinfo-structure-main-section-text-wrapper {
    color: #D4D4D4;
    font-family: "IBM Plex Mono";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}
.services-cryptoinfo-structure-main-section .services-cryptoinfo-structure-button {
  background-image: url('../images/services/cryptoinfo-button-bg.svg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 144px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CEFF44;
  text-align: center;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  cursor: pointer;
}
/*  */
.services-cryptoinfo-table-main-section {
  background-color: #121212;
  padding: 170px 0;
}
.services-cryptoinfo-table-main-section-title {
  color: #FFF;
  text-align: center;
  font-family: "Chakra Petch";
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px;
}
.services-cryptoinfo-table-card {
  border: 1px solid #CEFF44;
  background: #000;
  padding: 2.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  height: 100%;
}
.services-cryptoinfo-table-card-header {
  display: flex;
  gap: .4rem;
  align-items: center;
}
.services-cryptoinfo-table-card-header h3 {
  color: #FFF;
  font-family: "IBM Plex Mono";
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px;
}
.services-cryptoinfo-table-card-body {
  display: flex;
}
.services-cryptoinfo-table-card-body {
  border: 1px solid #CEFF44;
}
.services-cryptoinfo-table-card-body table th {
  padding: 10px;
  color: #858585;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.services-cryptoinfo-table-card-body table tr {
  border-top: 1px solid #CEFF44;
  border-bottom: 1px solid #CEFF44;
}
.services-cryptoinfo-table-card-body table td {
  padding: 10px;
}
.services-cryptoinfo-table-card-body table td.titled{
  color: #FFF;
  text-align: center;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
}
.services-cryptoinfo-table-card-body table td.pricing{
  color: #FFF;
  text-align: right;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.services-cryptoinfo-table-card-body table td .td-with-icon {
  display: flex;
  gap: .5rem;
}
.services-cryptoinfo-table-card-body table td.td-like-title {
  color: #FFF;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
}
.services-cryptoinfo-table-card-body table td .td-with-variation{ display: flex; align-items: center;}
.services-cryptoinfo-table-card-body table td .td-with-variation.down{ color: #E33535;}
.services-cryptoinfo-table-card-body table td .td-with-variation.down svg path{ fill:#E33535;}
.services-cryptoinfo-table-card-body table td .td-with-variation.up{ color: #44FF6D;}
.services-cryptoinfo-table-card-body table td .td-with-variation.up svg{ transform: rotate(180deg);}
.services-cryptoinfo-table-card-body table td .td-with-variation.up svg path{ fill: #44FF6D;}
/*  */
.marketvision-main-section {
  padding: calc(102px + 100px) 0 100px;
}
.marketvision-main-section-text-bloc {}
.marketvision-main-section-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.marketvision-main-section-text-wrapper h1{
  color: #FFF;
  font-family: "Chakra Petch";
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;
}
.marketvision-main-section-text-wrapper p{
  color: #D4D4D4;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.marketvision-main-section-image-bloc {
  display: flex;
  justify-content: center;
}
/*  */
.marketvision-topics-section {
  padding: 180px 0;
  background: #FFF;
}
.marketvision-topics-row{
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
.marketvision-topics-bloc{
  width: calc(50% - 2rem);
}
.marketvision-topic {
  display: flex;
  gap: 1rem;
}
.marketvision-topic-image-bloc img{
  min-width: 71px;
  height: 71px;
}
.marketvision-topic-content-bloc {}
.marketvision-topic-content-bloc h6{
  color: #000;
  font-family: "IBM Plex Mono";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
}
.marketvision-topic-content-bloc p{
  color: #000;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
/* all */
.marketvision-content-navigator {
  background-color: #121212;
}
.marketvision-content-title {
  color: #FFF;
  font-family: "Chakra Petch";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  padding-left: 1rem;
}
.marketvision-content-slider-bloc {
  padding-top: 1.5rem;
  padding-left: 1.5rem;
  height: 100%;

}
.marketvision-content-slider-card {
  padding: 1.5rem 1rem;
  background-color: #121212;
  width: 380px;
  height: 100%;
}
.marketvision-content-slider-card h2{
  color: #FFF;
  font-family: "IBM Plex Mono";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
}
.marketvision-content-slider-card ul {
  padding-left: 1.5rem;
  margin-top: .5rem;
}
.marketvision-content-slider-card ul li{
  color: #FFF;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.marketvision-content-slider-card ul li a{
  color: #53D8FF;
}
.marketvision-content-slider-number-card {
  position: absolute;
  left: 0;
  top: 0;
  width: 66px;
  height: 50px;
  text-align: center;
  background-color: #121212;
}
.marketvision-content-slider-number-card span {
  color: #FFF;
  font-family: "Chakra Petch";
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px;
}
.swiper-slide{
  height: auto;
}
/* content 1 */
.marketvision-content-title.content-1 b{
  color: #E57A58;
}
.marketvision-content-1-section {
  padding: 200px 0;
  background: url(../images/services/marketvision-content-bg-1a.svg) 0% 50% no-repeat, url(../images/services/marketvision-content-bg-1b.svg) 100% 0% no-repeat;
}
.marketvision-content-slider-card.content-1 {
  border: 1px solid #E57A58;
}
.marketvision-content-slider-number-card.content-1{
  border: 1px solid #E57A58;
}
/* content 2 */
.marketvision-content-title.content-2 b{
  color: #E57A58;
}
.marketvision-content-2-section {
  padding: 200px 0;
  background: url(../images/services/marketvision-content-bg-2a.svg) 0% 50% no-repeat, url(../images/services/marketvision-content-bg-2b.svg) 100% 0% no-repeat;
}
.marketvision-content-slider-card.content-2 {
  border: 1px solid #E57A58;
}
.marketvision-content-slider-number-card.content-2{
  border: 1px solid #E57A58;
}
/* content 3 */
.marketvision-content-title.content-3 b{
  color: #00A68A;
}
.marketvision-content-3-section {
  padding: 200px 0;
  background: url(../images/services/marketvision-content-bg-3a.svg) 0% 50% no-repeat, url(../images/services/marketvision-content-bg-3b.svg) 100% 0% no-repeat;
}
.marketvision-content-slider-card.content-3 {
  border: 1px solid #00A68A;
}
.marketvision-content-slider-number-card.content-3{
  border: 1px solid #00A68A;
}
/* content 4 */
.marketvision-content-title.content-4 b{
  color: #FF00C7;
}
.marketvision-content-4-section {
  padding: 200px 0;
  background: url(../images/services/marketvision-content-bg-4a.svg) 0% 50% no-repeat, url(../images/services/marketvision-content-bg-4b.svg) 100% 0% no-repeat;
}
.marketvision-content-slider-card.content-4 {
  border: 1px solid #FF00C7;
}
.marketvision-content-slider-number-card.content-4{
  border: 1px solid #FF00C7;
}
/* content 5 */
.marketvision-content-title.content-5 b{
  color: #53D8FF;
}
.marketvision-content-5-section {
  padding: 200px 0;
  background: url(../images/services/marketvision-content-bg-5a.svg) 0% 50% no-repeat, url(../images/services/marketvision-content-bg-5b.svg) 100% 0% no-repeat;
}
.marketvision-content-slider-card.content-5 {
  border: 1px solid #53D8FF;
}
.marketvision-content-slider-number-card.content-5{
  border: 1px solid #53D8FF;
}
/* content 6 */
.marketvision-content-title.content-6 b{
  color: #5A46D8;
}
.marketvision-content-6-section {
  padding: 200px 0;
  background: url(../images/services/marketvision-content-bg-6a.svg) 0% 50% no-repeat, url(../images/services/marketvision-content-bg-6b.svg) 100% 0% no-repeat;
}
.marketvision-content-slider-card.content-6 {
  border: 1px solid #5A46D8;
}
.marketvision-content-slider-number-card.content-6{
  border: 1px solid #5A46D8;
}
/*  */
.marketnews-main-section {
  padding: calc(102px + 128px) 0 186px;
  background-image: url('../images/services/marketnews-main-bg.png');
}
.marketnews-main-section-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.marketnews-main-section-text-wrapper h1{
  color: #9644FF;
  font-family: "Chakra Petch";
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;
}
.marketnews-main-section-text-wrapper h6{
  color: #D4D4D4;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.marketnews-main-section-image-wrapper {
  display: flex;
  justify-content: center;
}
.calltext-white-section {
  background-color: #fff;
  padding: 80px 0 90px;
}
.calltext-white-section h2 {
  color: #000;
  text-align: center;
  font-family: "Chakra Petch";
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px;
  max-width: 626px;
}
.calltext-white-text-bloc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/*  */
.marketnews-timeline-section {
  padding-top: 186px;
  padding-bottom: 186px;
}
.marketnews-timeline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  gap: 40px;
}

.marketnews-timeline-card {
  width: 789px;
  height: 212px;
  position: relative;
  -webkit-filter: drop-shadow( 0px 4px 190px rgba(150, 68, 255, .20));
  filter: drop-shadow( 0px 4px 190px rgba(150, 68, 255, .20));
  padding: 42px 42px 0;
  display: flex;
  gap: .5rem;
}
.marketnews-timeline-card-number-bloc { display: flex; width: 145px;}
.marketnews-timeline-card-number-bloc span{
  font-size: 80px;
  line-height: 80px;
  font-family: "Chakra Petch";
  color: #9644FF;
}
.marketnews-timeline-card-content-bloc {
  width: 100%;
}
.marketnews-timeline-card-content-bloc h6{
  color: #FFF;
  font-family: "Chakra Petch";
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px;
}
.marketnews-timeline-card-content-bloc ul{
  padding-left: 1rem;
}
.marketnews-timeline-card-content-bloc ul li p{
  color: #D4D4D4;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.marketnews-timeline-card.left-timeline-card { background-image: url('../images/services/marketnews-timeline-card-bg.svg'); }
.marketnews-timeline-card.right-timeline-card { background-image: url('../images/services/marketnews-timeline-card-bg-right.svg'); }
.left-timeline-card {
  margin-right: auto;
}
.left-timeline-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 60px;
  border-top: 5px dotted #9644FF;
}

.left-timeline-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 63px);
  width: 2px;
  height: 200px;
  border-right: 5px dotted #9644FF;
}
.right-timeline-card {
  margin-left: auto;
}
.right-timeline-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 60px;
  border-top: 5px dotted #9644FF;
}

.right-timeline-card::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 63px);
  width: 2px;
  height: 200px;
  border-right: 5px dotted #9644FF;
}
.marketnews-timeline-card:last-child::after,
.marketnews-timeline-card:last-child::before {
  display: none;
}
/*  */
.marketnews-tools-section {
  background-color: #FFF;
  padding: 132px;
}
.marketnews-tools-content-bloc {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.marketnews-tools-content-icon-box {
  display: flex;
}
.marketnews-tools-content-bloc h5{
  color: #9644FF;
  font-family: "Chakra Petch";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
}
.marketnews-tools-content-bloc p{
  color: #000;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.marketnews-tools-content-bloc p b{
  font-weight: 600;
}
/* faq */
.faq-main-section {
  padding: 200px 0;
  background: #121212;
}
.faq-main-section-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.faq-questions-section {
  background: #FFF;
  padding: 216px;
}
.faq-questions-section-row {
    display: flex;
    gap: 1rem;
}
.faq-questions-sumary-bloc {
  min-width: 350px;
}
.faq-questions-sumary-bloc ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  border-left: 4px solid #000;
  padding-left: 1.5rem;
  gap: 1rem;
}
.faq-questions-sumary-bloc ul li{
  position: relative;
}
.faq-questions-sumary-bloc ul li a{
  color: #5A5A5A;
  font-family: "IBM Plex Mono";
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: 52px;
}
.faq-questions-sumary-bloc ul li a:hover, .faq-questions-sumary-bloc ul li a.active {
  color: #000;
}
.faq-questions-sumary-bloc ul li a:after{
  content: '';
  height: 100%;
  width: 0;
  opacity: 0;
  position: absolute;
  left: -25px;
  border-right: 1px solid #000;
  border-radius: 0px 18px 21px 0px;
  background: #000;
  transition: all ease-in-out .2s;
}
.faq-questions-sumary-bloc ul li a.active:after, .faq-questions-sumary-bloc ul li a:hover:after{
  width: 9px;
  opacity: 1;
}
.faq-questions-answers-bloc {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: 594px;
  overflow-y: auto;
}
/*  */
.contact-main-section {
  background: url('../images/contact/main-bg.png'), #fff;
  background-repeat: no-repeat;
  background-position-x: 100%;
  padding: 254px 0 ;
}
.contact-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-content-wrapper h1{
  color: #000;
  font-family: "Chakra Petch";
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;
}
.contact-content-wrapper p{
  color: #5A5A5A;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.contact-content-wrapper ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-content-wrapper ul li.address {
  max-width: 270px;
}
.contact-content-wrapper ul li a {
  color: #000;
font-family: "IBM Plex Mono";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 22px; /* 157.143% */
}
.contact-main-section-form-bloc {
  display: flex;
  justify-content: center;
}
.contact-main-section-form-card {
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.25);
  padding: 2rem;
  min-width: 460px;
  position: relative;
}
.contact-main-section-form-card h6 {
  color: #000;
  font-family: "IBM Plex Mono";
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 1rem;
}
.contact-main-section-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
.contact-main-section-form-bloc-1 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-main-section-form-bloc-2 { width: 40%; }
.contact-main-section-input {
  background-color: transparent !important;
  width: 100%;
  height: 54px;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.contact-main-section-textarea {
  background-color: #000;
  border: 1px solid #5A5A5A;
  width: 100%;
  height: 170px;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.contact-main-section-textarea:focus {
  border: 1px solid #fff;
}

.contact-main-section-input-mold input::-webkit-input-placeholder { color: #5A5A5A; }

.contact-main-section-input-mold input::-moz-placeholder { color: #5A5A5A; }

.contact-main-section-input-mold input:-ms-input-placeholder { color: #5A5A5A; }

.contact-main-section-input-mold input:-moz-placeholder { color: #5A5A5A; }

.blog-main-section {
  padding: 180px 0;
  background-color: #121212;
}
.blog-main-section-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.blog-posts-section {
  padding: 80px 0;
  background: radial-gradient(62.83% 59.44% at 50% 50%, rgba(68, 255, 224, 0.20) 0%, rgba(0, 0, 0, 0.00) 100%), #000;
}
.blog-post-item-card {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid;
  border-color: linear-gradient(to right, #9644FF, #44FFE0);
  background: #202020;
  transition: .3s all;
}
.blog-post-item-card-image-box img{
  height: 245px;
  object-fit: cover;
}
.blog-post-item-card-content-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
.blog-post-item-card-content-box h6{
  color: #FFF;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
}
.blog-post-item-card-content-box p{
  color: #CFCFCF;
  font-family: "IBM Plex Mono";
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px; /* 150% */
}
.blog-post-item-card-content-box small {
  font-family: "IBM Plex Mono";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  background: linear-gradient(90deg, #9644FF 0%, #44FFE0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: auto;
}
.blog-post-item-category {
  display: inline-flex;
  height: 18px;
  padding: 0px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  background: linear-gradient(90deg, #9644FF 0%, #44FFE0 100%);
  width: min-content;
  color: #000;
  font-family: "IBM Plex Mono";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
}

.gradient-border-for-card {
  --background-color: #202020;
  --border-color: linear-gradient(to bottom right, #9644FF, #44FFE0);
  --border-width: 0.10em;
  --edge-size: 3rem;

  cursor: pointer;
  background: var(--background-color);
  border: 0;
  position: relative;
  isolation: isolate;
  transition: color 250ms;
  height: 100%;
}
.gradient-border-for-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--border-color);
  z-index: -2;
}

.gradient-border-for-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--background-color);
  z-index: -1;
  clip-path: polygon(
      /* top left */
      var(--border-width) var(--border-width),
      /* top right */
      calc(100% - var(--border-width)) var(--border-width),
      /* bottom right */
      calc(100% - var(--border-width)) calc(100% - var(--border-width)),
      /* bottom left */
      var(--border-width) calc(100% - var(--border-width))
  );
  transition: clip-path 500ms;
}
.blog-post-item-card:hover {
  box-shadow: 1px 1px 10px rgba(68, 255, 224, 0.20);
  transform: scale(1.002);
}
/*  */
.blog-post-main-section {
  padding: 154px 0;
  background: radial-gradient(44.22% 44.19% at 48.67% 103.43%, rgba(68, 255, 224, 0.20) 0%, rgba(68, 255, 224, 0.00) 100%);
}
.blog-post-breadcrumb-return {
  font-family: "IBM Plex Mono";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  background: linear-gradient(90deg, #9644FF 0%, #44FFE0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: max-content;
}
.blog-post-main-title {
  background: var(--Degrad-2, linear-gradient(90deg, #9644FF 0%, #44FFE0 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Chakra Petch";
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 92px;
}
.blog-post-small-infos {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.blog-post-small-infos p {
  color: #FFF;
  font-family: "IBM Plex Mono";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
}
.blog-post-banner {
  width: 100%;
}
.blog-post-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.blog-post-text-fragment {
  gap: .2rem;
  display: flex;
  flex-direction: column;
}
.blog-post-text-fragment h6 {
  color: #000;
  font-family: "IBM Plex Mono";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}
.blog-post-text-fragment p {
  color: #000;
  font-family: "IBM Plex Mono";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.blog-post-content-section {
  background-color: #fff;
  padding: 220px 0;
  margin-top: -340px;
}
.blog-post-share-icons-wrapper {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
/* register  */
.main-register-section {
  background-image: url('../images/register/main-bg.png');
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  border:  1px solid ;
}
.main-register-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.main-register-card {
  background-image: url('../images/register/card-bg.svg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 465px;
  height: 548px;
  padding: 2rem;
}
.main-register-card-row {

}
.main-register-card-title {
  color: #FFF;
  text-align: center;
  font-family: "Chakra Petch";
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.main-register-card-sub-bloc {}
.main-register-card-sub-form {
  margin-top: 1rem;
}
.main-register-card-sub-bloc h5 {
  color: #FFF;
  font-family: "Chakra Petch";
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.main-register-form-label {
  color: #fff;
  padding-left: 1rem;
  color: #FFF;
  font-family: "IBM Plex Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
}
.main-register-card-sub-form-wrapper {
  margin-top: 1rem;
}
.main-register-card-sub-form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.main-register-form-terms-label {
  display: flex;
  align-items: center;
  text-align: center;
  color: #FFF;
  font-family: "IBM Plex Mono";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  gap: .3rem;
}
.main-register-form-terms-label a{
  background: linear-gradient(90deg, #9644FF 0%, #44FFE0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "IBM Plex Mono";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.main-register-card-form-change-join {
  text-align: center;
  color: #FFF;
  font-family: "IBM Plex Mono";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
}
.main-register-card-form-change-join a{
  background: linear-gradient(90deg, #9644FF 0%, #44FFE0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "IBM Plex Mono";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.main-register-form-forgot-label {
  display: flex;
  align-items: center;
  justify-content: end;
  text-align: end;
  color: #FFF;
  font-family: "IBM Plex Mono";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  gap: .3rem;
}
.main-register-form-forgot-label a{
  background: linear-gradient(90deg, #9644FF 0%, #44FFE0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "IBM Plex Mono";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.not-alowed {
  cursor: not-allowed;
}
.services-cryptoinfo-biography-content-row {
  display: flex;
  justify-content: space-between;
}
.form-loading-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: #00000080;
  display: flex;
  justify-content: center;
  cursor: wait;
  user-select: none;
}


/* fadeins */
.fade-in-right {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 1s ease-out, transform 1.5s ease-out;
    transition-delay: var(--fade-in-delay, 0s); /* Delay padrão */
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-left {
    opacity: 0;
    transform: var(--transform-value, translateX(60px));
    transition: opacity 1s ease-out, transform 1.5s ease-out;
    transition-delay: var(--fade-in-delay, 0s); /* Delay padrão */
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1s ease-out, transform 1.5s ease-out;
    transition-delay: var(--fade-in-delay, 0s); /* Delay padrão */
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-down {
    opacity: 0;
    transform: translateY(-100px);
    transition: opacity 1s ease-out, transform 1.5s ease-out;
    transition-delay: var(--fade-in-delay, 0s); /* Delay padrão */
}

.fade-in-down.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-grow {
    opacity: 0;
    transform: scale(0.5); /* Começa um pouco menor */
    transition: all 0.8s ease;
    transition-delay: var(--fade-in-delay, 0s); /* Delay padrão */
}

.fade-in-grow.visible {
    opacity: 1;
    transform: scale(1); /* Cresce suavemente até o tamanho normal */
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
    transition-delay: var(--fade-in-delay, 0s)
}

.fade-in.visible {
    opacity: 1;
}
/* fadeins */

.token-update__data li {
    position: relative;
    overflow: hidden;
    transition: background-color 0.4s ease;
    cursor: pointer;
  }

  .token-update__data li span {
    position: relative;
    z-index: 2;
    width: 25%;
    display: flex;
    height: 56px;
    align-items: center;
    padding-left: 20px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    transition: opacity 0.1s ease, transform 0.1s ease-in;
    transition-delay: 0.4s;
    background-repeat: no-repeat;
    background-position-x: 100%;
  }

  .token-update__data li:hover span {
    opacity: 0;
    transform: translateX(-1px);
    transition-delay: 0s;
  }

  .token-update__data li::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 0;
    width: 25%;
    height: 56px;
    background: linear-gradient(90deg, #9644FF 0%, #44FFE0 100%);
    transition: width 0.4s ease;
    z-index: 1;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
    transition-delay: 0s;
  }

  .token-update__data li:hover::before {
    width: 110%;
  }

  .token-update__data li::after {
    content: "Ver mais";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: #000;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
  }

  .token-update__data li:hover::after {
    opacity: 1;
  }

  .faq-main-section-robot-wrapper {
    position: relative;
    height: auto; /* altura */
  }

  /* Parte como fundo */
  .central-part {
    position: relative;
    z-index: 1;
  }

  .central-part img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  /* Robôs sobrepostos */
  .robot1,
  .robot2 {
    position: absolute;
    bottom: 0;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
  }

  .robot1 {
    left: -15px;
    animation-delay: 0s;
  }

  .robot2 {
    right: 25px;
    animation-delay: 0.9s;
  }

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



