/*
************
*************************

Template Name:  Cryptex
Version: 1.0

-----------------------------------------------------------------------------------

CSS INDEX
=================== 
01. common
02. header

******************************************************* 
*************************************************************** */
/*
************
*************************
01. common
******************************************************* 
*************************************************************** */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  font-size: 16px;
  background: #05051E;
  scroll-behavior: smooth;
}

.img,
img {
  max-width: 100%;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a, span, button {
  display: inline-block;
}

a,
button {
  color: inherit;
  outline: medium none;
  text-decoration: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: #fff;
  margin-top: 0px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 38px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  margin: 0;
}

span,
li,
a {
  display: inline-block;
  margin: 0;
}

*::-moz-selection {
  background-color: #00bfe9;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background-color: #00bfe9;
  color: #fff;
  text-shadow: none;
}

::selection {
  background-color: #00bfe9;
  color: #fff;
  text-shadow: none;
}

/* <<<<<<<    Input Placeholder   >>>>>>>>> */
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  opacity: 0;
}
input:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

/* <<<<<<<    Common Classes   >>>>>>>>> */
.w_img img {
  width: 100%;
}

/* <<<<<<<    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: "";
}

/* <<<<<<<    Declaration   >>>>>>>>> */
.bg-default {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.container,
.row {
  height: 100%;
}

/*template component css */
.section-padding {
  padding: 100px 0;
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .section-padding {
    padding: 70px 0;
  }
}

.section-padding-top {
  padding-top: 100px;
}
@media (max-width: 991px) {
  .section-padding-top {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .section-padding-top {
    padding-top: 70px;
  }
}

.section-padding-bottom {
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .section-padding-bottom {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .section-padding-bottom {
    padding-bottom: 70px;
  }
}

.bg-common {
  background-color: #F6D48C;
  background-image: url("../img/bg-shape.png");
  border-radius: 15px;
}

.section-heading {
  color: #000;
  font-size: 60px;
  font-weight: 700;
  line-height: 90px;
  text-decoration-line: underline;
  text-transform: capitalize;
  text-align: center;
}
@media (max-width: 1199px) {
  .section-heading {
    font-size: 45px;
    line-height: 70px;
    margin: 10px 0;
  }
}
@media (max-width: 767px) {
  .section-heading {
    font-size: 37px;
    line-height: 50px;
    margin: 20px 0;
    text-align: center !important;
  }
}

.header-icons {
  display: flex;
  gap: 32px;
  margin-right: 25px;
}
.header-icons a {
  display: inline-block;
  height: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 0 0 5px #363658;
  transition: 0.3s;
}
.header-icons a:hover {
  box-shadow: 0 0 0 0px #363658;
}
.header-icons a img {
  height: 100%;
  width: 100%;
}

.color-heading {
  background: #F6D48C;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.prim-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 100px;
  border: 10px solid rgba(232, 232, 235, 0.5);
  background: #F6D48C;
  width: 350px;
  color: #000;
  text-align: center;
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  gap: 7px;
  padding: 12px 15px;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .prim-btn {
    width: 260px;
    font-size: 17px;
    padding: 8px 15px;
  }
}
.prim-btn:hover {
  box-shadow: 0 4px 15px rgba(9, 142, 162, 0.2784313725);
  color: initial;
}
.prim-btn img {
  display: inline-block;
  margin-top: 5px;
}

.section-heading {
  text-align: center;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: capitalize;
  text-decoration: none;
  color: #fff;
}
@media (max-width: 991px) {
  .section-heading {
    font-size: 45px;
  }
}

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1.5s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

/*
************
*************************
03. back to top
******************************************************* 
*************************************************************** */
.header-area {
  padding: 20px 0;
  width: 100%;
  z-index: 99;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.0470588235);
  background-color: #05051E;
}

.header-logo {
  max-width: 295px;
}
@media (max-width: 1399px) {
  .header-logo img {
    width: auto;
  }
}
@media (max-width: 991px) {
  .header-logo img {
    height: auto;
  }
}
@media (max-width: 767px) {
  .header-logo {
    width: 155px;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.menu-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-btn {
  margin-left: 35px;
  color: #000;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 15px 45px;
  background: #EBCF79;
  box-sizing: content-box;
  border: 10px solid #fff;
  border-left: 15px solid #fff;
  border-right: 15px solid #fff;
  border-radius: 10px;
  margin: 18px;
  margin-left: 20px;
}

.main-menu {
  text-align: center;
}
.main-menu ul .menu-has-child {
  position: relative;
  z-index: 5;
  text-align: start;
}
.main-menu ul li {
  display: inline-block;
  padding: 0 19px;
}
.main-menu ul li a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: var(--clr-body-heading);
  padding: 25px 0;
  color: #FFF;
  font-weight: 700;
  text-transform: capitalize;
}
@media (max-width: 1399px) {
  .main-menu ul li a {
    font-size: 16px;
  }
}
.main-menu ul li a::before {
  content: "";
  position: absolute;
  bottom: 18px;
  height: 2px;
  background: #fff;
  left: 0;
  width: 0;
  transition: 0.3s;
}
.main-menu ul li a:hover::before {
  right: 0;
  width: 100%;
}
.main-menu ul li:is(.menu-has-child) > a::after {
  display: inline-block;
  font-family: "Font Awesome 5 Pro";
  content: "\f0d7";
  font-size: 14px;
  font-weight: 700;
  margin-left: 5px;
}
.main-menu ul li .submenu {
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-shadow: 0 9px 19px rgba(0, 0, 0, 0.1);
}
.main-menu ul li .submenu li {
  display: block;
  margin-right: 0;
  position: relative;
  z-index: 5;
}
.main-menu ul li .submenu li a {
  padding: 15px 25px;
  color: #fff;
  transition: 0.3s;
}
.main-menu ul li .submenu li .submenu {
  left: 100%;
  top: 0;
}
.main-menu ul li .submenu li:hover > a {
  background-color: #F6D48C;
  color: #fff;
}
.main-menu ul li .submenu li:not(:last-child) {
  border-bottom: 1px solid #f2f2f2;
}
.main-menu ul li:hover > .submenu {
  opacity: 1;
  visibility: visible;
}

.main-menu {
  position: relative;
  z-index: 5;
}

.menu-bar {
  height: 40px;
  display: flex;
  justify-content: end;
  align-items: center;
  margin-left: 14px;
}

.navbar-sign {
  cursor: pointer;
  transition: 0.3s;
  display: inline-block;
}

.navbar-sign span {
  width: 28px;
  height: 2px;
  background-color: #fff;
  border-radius: 50px;
  display: block;
  margin: 5px 0;
  transition: 0.3s;
  cursor: pointer;
}

.navbar-sign span.menu-line-2 {
  width: 25px;
}

.navbar-sign span.menu-line-3 {
  width: 15px;
}

.navbar-sign:hover span {
  background-color: #F6D48C;
}

.navbar-sign:hover span.menu-line-2 {
  width: 28px;
}

.navbar-sign:hover span.menu-line-3 {
  width: 28px;
}

/*banner start*/
.banner-area {
  padding-top: 110px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .banner-area {
    padding-top: 90px;
  }
}
.banner-area .banner-bg {
  z-index: -1;
  position: absolute;
  width: 100vw;
  top: 0;
  opacity: 0.3;
  animation: rotate 50s linear 0s infinite forwards;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.banner-area .bannter-top {
  max-width: 945px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 45px;
}
.banner-area .banner-light {
  position: absolute;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  top: 35vh;
}
.banner-area .banner-btn {
  border-radius: 32px;
  border: 1px solid #F6D48C;
  background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(0, 0, 0, 0.5) 50.03%, #F6D48C 100%), rgba(255, 255, 255, 0.1);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
  padding: 20px 65px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .banner-area .banner-btn {
    padding: 14px 40px;
    font-size: 16px;
  }
}
.banner-area .banner-btn:hover {
  transform: scale(0.9);
  box-shadow: 0px 7px 7px 0px rgba(0, 0, 0, 0.25) inset;
}
.banner-area .banner-heading {
  color: #FFF;
  text-align: center;
  font-size: 65px;
  font-weight: 700;
  line-height: 1.23em;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .banner-area .banner-heading {
    font-size: 45px;
  }
}
.banner-area p {
  font-size: 16px;
  font-weight: 500;
  margin-top: -15px;
  text-align: center;
}
.banner-area .banner-bottom {
  background: #0E0E20;
  border: 1px solid #252536;
  box-shadow: 0px 10px 20px 0px rgba(157, 128, 128, 0.25) inset;
  padding: 85px 75px;
  border-radius: 15px;
  margin-top: 55px;
}
@media (max-width: 991px) {
  .banner-area .banner-bottom {
    padding: 70px 55px;
  }
}
.banner-area .banner-bottom .banner-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner-area .banner-bottom .banner-form h3 {
  color: #FFF;
  font-size: 35px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 45px;
}
@media (max-width: 991px) {
  .banner-area .banner-bottom .banner-form h3 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 30px;
  }
}
.banner-area .banner-bottom .banner-form label,
.banner-area .banner-bottom .banner-form input {
  display: block;
}
.banner-area .banner-bottom .banner-form label {
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
  margin-bottom: 12px;
  margin-top: 20px;
}
.banner-area .banner-bottom .banner-form input {
  width: 100%;
  height: 70px;
  border-radius: 5px;
  border: 0;
  padding: 10px 20px 10px;
  border: 0.894px solid rgba(18, 18, 17, 0.3);
  background: #222334;
  color: #fff;
}
@media (max-width: 991px) {
  .banner-area .banner-bottom .banner-form input {
    height: 55px;
  }
}
.banner-area .banner-bottom .banner-form .divider {
  display: block;
  width: 100%;
  height: 1px;
  margin: 45px 0;
  background-color: #222334;
}

/*banner end*/
/*brand start*/
.brand-area {
  margin-top: 110px;
}
.brand-area .brand-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background: #0E0E20;
  padding: 36px 40px;
  flex-wrap: wrap;
}
.brand-area .brand-wrapper a {
  display: inline-flex;
  transition: 0.3s;
  gap: 20px;
}
.brand-area .brand-wrapper a .brand-number {
  color: #FFF;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.48px;
}
@media (max-width: 991px) {
  .brand-area .brand-wrapper a .brand-number {
    font-size: 20px;
  }
}
.brand-area .brand-wrapper a:hover {
  transform: scale(0.95);
}

/*brand end*/
/*feature start*/
.feature-area {
  margin-top: 125px;
}
@media (max-width: 991px) {
  .feature-area {
    margin-top: 100px;
  }
}
@media (max-width: 991px) {
  .feature-area .feature-top {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .feature-area .feature-top {
    margin-bottom: 0;
  }
}
.feature-area .feature-top .feture-brand {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 20px;
}
.feature-area .feature-top .feture-brand img {
  width: 100%;
}
.feature-area .feature-top p {
  font-size: 20px;
  line-height: 2;
}
@media (max-width: 991px) {
  .feature-area .feature-top p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .feature-area .feature-top p {
    text-align: center;
  }
}
.feature-area .feature-bottom {
  margin-top: 20px;
}
.feature-area .feature-bottom .feature-box {
  max-width: 365px;
  padding: 40px 20px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin: 40px auto;
  text-align: center;
  border-radius: 20px;
  border: 1px solid #252536;
  background: #0E0E20;
  box-shadow: 0px 10px 20px 0px rgba(157, 128, 128, 0.25) inset;
}
@media (max-width: 991px) {
  .feature-area .feature-bottom .feature-box {
    margin: 20px auto;
  }
}
.feature-area .feature-bottom .img {
  height: 115px;
  width: 200px;
  border-radius: 10px;
  border: 0.5px solid #1F1B2B;
  background: #0E0E21;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-area .feature-bottom .box-title {
  font-size: 20px;
}
.feature-area .feature-bottom .box-desc {
  font-size: 14px;
  margin-top: -10px;
}
.feature-area .feature-bottom .f-text-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}
@media (max-width: 991px) {
  .feature-area .feature-bottom .f-text-box {
    margin-bottom: -40px;
    min-height: 350px;
  }
}
.feature-area .feature-bottom .f-text-box .section-heading {
  color: #FFF;
  text-align: center;
  font-size: 75px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: capitalize;
  text-decoration: none;
}
@media (max-width: 1199px) {
  .feature-area .feature-bottom .f-text-box .section-heading {
    font-size: 55px;
  }
}
@media (max-width: 991px) {
  .feature-area .feature-bottom .f-text-box .section-heading {
    margin: 0;
  }
}
.feature-area .feature-bottom .f-text-box .color-heading {
  font-size: 55px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  display: block;
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .feature-area .feature-bottom .f-text-box .color-heading {
    font-size: 50px;
    margin-top: 5px;
  }
}
.feature-area .feature-bottom .f-text-box img {
  position: absolute;
  z-index: -1;
  width: 100%;
}
.feature-area .prim-btn {
  display: flex;
  align-self: center;
  margin-top: 90px;
}
.feature-area .prim-btn:hover {
  color: initial;
}
@media (max-width: 991px) {
  .feature-area .prim-btn {
    margin-top: 40px;
  }
}

/*feature end*/
/*how work start*/
.how-work {
  background-image: url(../img/roadmap/bg.png);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: cover;
  background-position: center;
  padding-top: 50px;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .how-work {
    margin-top: 20px;
  }
}
.how-work .section-heading {
  position: relative;
}
.how-work .how-work-content {
  display: flex;
  flex-direction: column;
  gap: 110px;
  margin-top: 50px;
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .how-work .how-work-content {
    gap: 40px;
    padding-bottom: 40px;
  }
}
.how-work .how-work-content .item {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 991px) {
  .how-work .how-work-content .item {
    flex-direction: column;
  }
}
.how-work .how-work-content .item .phase-box {
  height: 290px;
  width: 290px;
  min-height: 290px;
  min-width: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 307px;
  border: 1px solid #252536;
  background: #0E0E20;
  box-shadow: 0px 10px 20px 0px rgba(157, 128, 128, 0.25) inset;
  position: relative;
}
@media (max-width: 991px) {
  .how-work .how-work-content .item .phase-box {
    height: 220px;
    width: 220px;
    min-height: 220px;
    min-width: 220px;
  }
}
.how-work .how-work-content .item .phase-box::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 120px;
  background: #39424B;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 991px) {
  .how-work .how-work-content .item .phase-box::before {
    display: none;
  }
}
.how-work .how-work-content .item .phase-box p {
  color: #fff;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .how-work .how-work-content .item .phase-box p {
    font-size: 25px;
  }
}
@media (max-width: 991px) {
  .how-work .how-work-content .item .item-content {
    text-align: center;
  }
}
.how-work .how-work-content .item .item-content .item-heading {
  color: #FFF;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2em;
  text-transform: capitalize;
}
.how-work .how-work-content .item .item-content .item-desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.8em;
  margin-top: 30px;
  max-width: 95%;
}
@media (max-width: 991px) {
  .how-work .how-work-content .item .item-content .item-desc {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .how-work .how-work-content .item .item-content .item-desc {
    max-width: 100%;
  }
}
.how-work .how-work-content .item:nth-last-child(1) .phase-box::before {
  display: none;
}

/*how work end*/
/*how work start*/
.why-use {
  margin-top: 50px;
}
.why-use .section-desc {
  text-align: center;
  font-size: 14px;
  line-height: 1.8em;
  text-transform: capitalize;
  margin-top: 20px;
}
.why-use .why-use-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 60px;
}
.why-use .why-use-item {
  display: flex;
  align-items: center;
  gap: 40px;
  border-radius: 20px;
  border: 1px solid #252536;
  background: #0E0E20;
}
@media (max-width: 767px) {
  .why-use .why-use-item {
    flex-direction: column;
    gap: 15px;
  }
}
.why-use .why-use-item .icon-box {
  padding: 35px 40px;
  border-right: 1px solid #252536;
  min-width: 270px;
  width: 270px;
}
@media (max-width: 767px) {
  .why-use .why-use-item .icon-box {
    padding: 10px;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.why-use .why-use-item .icon-box .icon-wrapper {
  height: 175px;
  width: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #252536;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .why-use .why-use-item .icon-box .icon-wrapper {
    height: 120px;
    width: 120px;
  }
}
.why-use .why-use-item .content-box {
  padding: 30px 0;
  padding-right: 90px;
}
@media (max-width: 991px) {
  .why-use .why-use-item .content-box {
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .why-use .why-use-item .content-box {
    padding: 10px;
    text-align: center;
  }
}
.why-use .why-use-item .content-box .content-title {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.3em;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .why-use .why-use-item .content-box .content-title {
    font-size: 20px;
  }
}
.why-use .why-use-item .content-box .content-desc {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7em;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .why-use .why-use-item .content-box .content-desc {
    font-size: 14px;
    margin-top: 15px;
  }
}
.why-use .prim-btn {
  display: flex;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .why-use .prim-btn {
    margin-top: 60px;
  }
}
.why-use .prim-btn:hover {
  color: initial;
}

/*how work end*/
/*tranding start*/
.tranding {
  margin-top: 150px;
  width: 100%;
}
.tranding .tranding-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 20px;
  background: #0E0E20;
}
@media (max-width: 991px) {
  .tranding .tranding-box {
    padding: 0 20px;
  }
}
.tranding .tranding-box .box-img {
  margin-top: -60px;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .tranding .tranding-box .box-img {
    max-width: 220px;
    margin-top: -75px;
  }
}
.tranding .tranding-box .trand-desc {
  max-width: 800px;
  text-align: center;
  font-size: 16px;
  line-height: 1.7em;
  text-transform: capitalize;
  margin: 30px 0;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .tranding .tranding-box .trand-desc {
    margin-top: 15px;
  }
}
.tranding .tranding-box .prim-btn {
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .tranding .tranding-box .prim-btn {
    margin-bottom: 70px;
  }
}

/*tranding end*/
/*faq start*/
.faq {
  padding-top: 330px;
}
@media (max-width: 991px) {
  .faq {
    padding-top: 210px;
  }
}
.faq .faq-box {
  position: relative;
  border-radius: 20px;
  background: #0E0E20;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1199px) {
  .faq .faq-box {
    padding-top: 170px;
  }
}
@media (max-width: 991px) {
  .faq .faq-box {
    padding-top: 100px;
  }
}
.faq .faq-img {
  position: absolute;
  transform: translateY(-60%);
  top: 0;
}
@media (max-width: 1199px) {
  .faq .faq-img {
    max-width: 320px;
  }
}
@media (max-width: 991px) {
  .faq .faq-img {
    max-width: 200px;
  }
}
.faq .faq-desc {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 16px;
  line-height: 1.75em;
  margin: 25px 0 15px;
  max-width: 900px;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .faq .faq-desc {
    margin-top: 0;
  }
}
.faq .accordion-area {
  width: 100%;
  max-width: 970px;
}
.faq .accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq .accordion .accordion-item {
  border-radius: 12px;
  background: var(--Base-Dark-Transparent, rgba(47, 50, 65, 0.5));
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border: 0;
}
.faq .accordion .accordion-item button {
  font-family: Inter;
  background: transparent;
  color: #FFF;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3em;
  outline: none;
}
@media (max-width: 991px) {
  .faq .accordion .accordion-item button {
    font-size: 20px;
  }
}
.faq .accordion .accordion-item button:focus {
  outline: none;
  box-shadow: none;
}
.faq .accordion .accordion-item button::after {
  content: url(../img/faq/up-a.png);
  background: none;
  transform-origin: center;
}
.faq .accordion .accordion-item .accordion-body {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7em;
  border: 0;
}
@media (max-width: 991px) {
  .faq .accordion .accordion-item .accordion-body {
    font-size: 14px;
  }
}
.faq .prim-btn {
  display: flex;
  margin-top: 55px;
  margin-bottom: 95px;
}

/*faq end*/
/*bot attr start*/
.cryptex-bot {
  margin-top: 100px;
}
.cryptex-bot .section-heading {
  margin-bottom: 55px;
}
@media (max-width: 991px) {
  .cryptex-bot .section-heading {
    margin-bottom: 45px;
  }
}
.cryptex-bot #platformPartners {
  margin: 0 auto;
  width: 100%;
}
.cryptex-bot #platformPartners th {
  background: transparent;
  color: #fff;
}
.cryptex-bot #platformPartners tr td {
  background: #000;
  color: #fff;
}
.cryptex-bot th, .cryptex-bot td {
  padding: 15px;
  text-align: center;
}
.cryptex-bot th, .cryptex-bot td {
  border: 1px solid #ddd;
}

/*bot attr start*/
/*app tranding*/
.app-tranding {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .app-tranding .tranding-wrapper {
    overflow-x: scroll;
    width: 100%;
  }
}
.app-tranding .section-heading {
  margin-bottom: 70px;
}
.app-tranding #platformPartners {
  margin: 0 auto;
}
.app-tranding #platformPartners th {
  background: transparent;
  color: #fff;
}
.app-tranding #platformPartners tr td {
  background: #000;
  color: #fff;
}
.app-tranding th, .app-tranding td {
  padding: 15px;
  text-align: left;
}
.app-tranding th, .app-tranding td {
  border: 1px solid #ddd;
}
.app-tranding a {
  color: #045089;
}
.app-tranding a:hover {
  text-decoration: underline;
}

/*app tranding*/
/*feature*/
.feature {
  margin-top: 150px;
}
@media (max-width: 991px) {
  .feature {
    margin-top: 70px;
  }
}
.feature .section-heading {
  text-align: left;
}
@media (max-width: 991px) {
  .feature .section-heading {
    text-align: center;
  }
}
.feature .sec-desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8em;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .feature .sec-desc {
    font-size: 16px;
    text-align: center;
  }
}
.feature .feature-boxs {
  margin-top: 100px;
}
@media (max-width: 991px) {
  .feature .feature-boxs {
    margin-top: 50px;
  }
}
.feature .feature-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  margin: 0 auto;
  min-height: 435px;
  max-width: 365px;
  border-radius: 20px;
  border: 1px solid #252536;
  background: #0E0E20;
  box-shadow: 0px 10px 20px 0px rgba(157, 128, 128, 0.25) inset;
}
.feature .feature-box .feature-img {
  height: 115px;
  width: 200px;
  border: 0.5px solid #1F1B2B;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
  border-radius: 10px;
}
.feature .feature-box .feature-title {
  margin: 30px 0;
  margin-bottom: 25px;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7em;
  text-transform: capitalize;
}
.feature .feature-box .feature-desc {
  text-align: center;
  font-size: 14px;
  line-height: 1.75em;
  text-transform: capitalize;
}
.feature .middle-item {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .feature .middle-item {
    margin: 40px auto;
  }
}
.feature .prim-btn {
  display: flex;
  margin-top: 70px;
}

/*feature*/
/*
************
*************************
03. back to top
******************************************************* 
*************************************************************** */
.side-info {
  width: 100%;
  max-width: 400px;
  background-color: #0C1308;
  box-shadow: 0 13px 29px rgba(4, 0, 23, 0.1);
  height: 100%;
  position: fixed;
  z-index: 10;
  top: 0;
  right: -400px;
  transition: 0.4s;
  padding: 40px;
  z-index: 999;
}

.side-info:is(.info-open) {
  right: 0;
  overflow-y: scroll;
  scrollbar-width: thin;
}

.offcanvas-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(4, 0, 23, 0.5);
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  cursor: url(../../assets/img/bg/close.png), auto;
}

.offcanvas-overlay:is(.overlay-open) {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.mean-container .mean-nav {
  background: transparent;
}

.mean-container .mean-nav ul li a {
  border-color: #2c2a2a;
  font-size: 15px;
  color: #cacaca;
}

.pl-sidebar-close.side-info-close {
  background: transparent;
  border: none;
  font-size: 25px;
  color: #fff;
}
.pl-sidebar-close.side-info-close i {
  color: #fff;
}

.mean-container .mean-nav ul li a.mean-expand {
  padding: 7px 12px;
  border-color: #2c2a2a;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* sidebar contact info */
.sidebar-contact-title {
  font-size: 24px;
}

.sidebar-contact > a {
  display: block;
  margin-bottom: 12px;
}

.sidebar-contact > a:hover {
  color: #fff;
}

.sidebar-contact > a:hover i {
  background-color: rgba(255, 255, 255, 0.2);
}

.sidebar-contact > a i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #2c2c2c;
  display: inline-block;
  margin-right: 15px;
  transition: 0.4s;
}

.sidebar-address {
  display: flex;
  margin-bottom: 5px;
}

.sidebar-address i {
  max-width: 40px;
  height: 40px;
  background-color: #2c2c2c;
  line-height: 40px;
  text-align: center;
  margin-right: 15px;
  flex: 0 0 40px;
}

.sidebar-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #2c2c2c;
  text-align: center;
}

.sidebar-social a:not(:last-child) {
  margin-right: 7px;
}

.sidebar-social a:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
}

/* Search */
.body-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  background: #253A1A;
  z-index: 999;
  content: "";
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  cursor: url(../../assets/img/bg/close.png), auto;
}

.body-overlay.active {
  visibility: visible;
  opacity: 0.97;
}

.td-search-popup .search-form {
  width: 35%;
  position: absolute;
  position: fixed;
  top: 50%;
  left: 50%;
  transition: 0.4s;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -50%);
  z-index: 999;
}

.td-search-popup.active .search-form {
  visibility: visible;
  opacity: 1;
  width: 40%;
}

@media (max-width: 767px) {
  .td-search-popup.active .search-form {
    width: calc(100% - 50px);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .td-search-popup.active .search-form {
    width: 70%;
  }
}
.td-search-popup.active .search-form {
  visibility: visible;
}

.td-search-popup .search-form .form-group .form-control {
  border: none;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  height: 60px;
  padding: 0 75px 0 25px;
  background: #f7f9fb;
  line-height: 60px;
}

.td-search-popup .search-form .submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  border: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  color: #ffffff;
  transition: 0.4s;
  padding: 0;
  text-align: center;
  cursor: pointer;
  background: #FF9400;
}

.sidebar-close {
  border: 0;
  background-color: transparent;
  font-size: 25px;
}

.sidebar-close:hover {
  color: #fff;
}

.sidebar-close-wrapper .sidebar-close i {
  color: #fff !important;
}

/*footer area start*/
.footer {
  padding: 110px 10px;
  padding-bottom: 80px;
  background-image: url(../img/footer/footer-bg.png);
}
@media (max-width: 991px) {
  .footer {
    margin: 0;
    padding: 70px 10px;
  }
}
.footer .footer-content {
  position: relative;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(58, 58, 58, 0.7803921569);
}
@media (max-width: 991px) {
  .footer .footer-content {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    padding: 15px;
  }
}
.footer .footer-content .footer-email {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px 15px;
  background-color: #F6D48C;
  border-radius: 50px;
  margin-bottom: 40px;
}
.footer .footer-content .footer-email a {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}
.footer .footer-content .footer-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 44px;
}
@media (max-width: 991px) {
  .footer .footer-content .footer-menu {
    gap: 25px;
  }
}
@media (max-width: 991px) {
  .footer .footer-content .footer-menu {
    gap: 15px;
  }
}
.footer .footer-content .footer-menu a {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6em;
  white-space: nowrap;
}
.footer .footer-content .back-top {
  position: relative;
  height: 144px;
  width: 144px;
  background: #F6D48C;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 50%;
  transition: 0.3s;
  margin-top: 20px;
  box-shadow: 0px 10px 4px 0px rgba(0, 0, 0, 0.25) inset;
}
.footer .footer-content .back-top:hover {
  box-shadow: 0 0 0 transparent;
}
.footer .footer-content .back-top p {
  color: #000;
  text-align: center;
  font-size: 16.82px;
  font-family: Public Sans;
  font-style: normal;
  font-weight: 700;
  line-height: 37.192px;
  letter-spacing: -0.37px;
  text-transform: capitalize;
}
@media (max-width: 1199px) {
  .footer .footer-content .back-top {
    height: 115px;
    width: 115px;
  }
}
@media (max-width: 991px) {
  .footer .footer-content .footer-logo {
    margin-bottom: 20px;
  }
}
.footer .footer-content .footer-copy-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .footer .footer-content .footer-copy-right {
    width: 80%;
  }
}
.footer .note {
  text-align: center;
  border-bottom: 1px solid rgba(58, 58, 58, 0.7803921569);
}
.footer .note p {
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 50px;
  max-width: 840px;
  color: #E5E6ED;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}
.footer .note p span {
  color: #F6D48C;
  font-size: 16px;
  font-weight: 800;
}
@media (max-width: 767px) {
  .footer .note p {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.footer .copyright {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6em;
  margin-top: 45px;
}
@media (max-width: 767px) {
  .footer .copyright {
    font-size: 14px;
  }
}

/*footer area end*//*# sourceMappingURL=main.css.map */