/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #fff;
  background-color: #000;
  overflow-x: hidden;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

p {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  display: block;
}

.sec-head {
  margin-bottom: 30px;
}

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

.common-sec {
  padding: 100px 0;
}

.sec-title {
  font-weight: 700;
  font-size: 54px;
  line-height: 1.3;
  background: linear-gradient(90deg, #7bf513 0%, #e9e9e3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: block;
}

.container {
  max-width: 1392px;
  padding: 0 30px;
}

a {
  transition: all 0.3s ease-in-out;
}

.btn {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  background-color: #7bf513;
  border: 1px solid #7bf513;
  padding: 10px 26px;
  transition: all 0.4s ease-in-out;
}

.btn.out-line {
  background-color: transparent;
  color: #fff;
}

.btn.btn-white {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}

.btn.btn-white:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

.btn+.btn {
  margin-left: 10px;
}

ul li {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #080808;
}

.platform-sec .cms-con ul li {
  position: relative;
  padding-left: 28px;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
  display: block;
}

.trading-sec .cms-con ul li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: linear-gradient(90deg, #77f43b 0%, #f1e643 100%);
  border-radius: 100px;
}

.btn.btn-g {
  background-color: #7bf513;
  color: #000;
}

.btn:focus-visible,
.btn:hover {
  background-color: transparent;
  border-color: #7bf513;
  color: #fff;
  outline: none;
}

@media only screen and (hover: hover) {

  .btn.out-line:hover,
  .btn.out-line:active {
    background-color: #7bf513;
    border-color: #7bf513;
    color: #000;
  }

  .btn:hover,
  .btn:active,
  .btn:first-child:active {
    background-color: transparent;
    color: #fff;
    outline: none;
  }

  .nav-wrap ul li>a:hover {
    color: #000;
  }

  .btn.btn-g:hover,
  .btn.btn-g:active {
    background-color: transparent;
  }
}

/* header */
body.is-nav-open {
  overflow: hidden;
}

.header {
  background-color: #000;
  padding-block: 20px;
  position: relative;
  width: 100%;
  z-index: 10;
  transition: background-color 0.4s ease, box-shadow 0.4s ease,
    all 0.4s ease-in-out;
}

.header::after {
  background: #292929;
  content: "";
  height: 1px;
  width: 100%;
  z-index: 1;
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: absolute;
}

.is-header-sticky .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  animation: HeaderRise 0.8s linear;
  background-color: #0f0f0f;
}

@keyframes HeaderRise {
  0% {
    transform: translateY(-100px);
  }

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

.header-logo {
  display: block;
}

.nav-wrap {
  display: flex;
  align-items: center;
}

.nav-wrap nav {
  padding-right: 180px;
}

.nav-wrap nav>ul {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.nav-wrap ul a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  padding: 10px 15px;
  transition: 0.4s all ease-in-out;
}

.nav-wrap ul li>a {
  font-size: 16px;
  font-weight: 600;
}

.nav-wrap ul li>a:hover,
.nav-wrap ul li.current-menu-item>a {
  color: #000;
}

.header .nav-wrap ul li>a:hover,
.header .nav-wrap ul li.current-menu-item>a {
  color: #7bf513;
}

.header-logo img {
  max-height: 55px;
}

@media (min-width: 1199px) {
  .nav-wrap ul li:hover>a {
    color: #000;
  }
}

@media (max-width: 1199px) {
  .header-logo img {
    max-height: 45px;
  }

  .nav-overlay {
    background-color: rgb(0 0 0 / 50%);
    position: fixed;
    z-index: 8;
    inset: 0;
    transform: translateX(-100%);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
  }

  .nav-wrap nav {
    position: fixed;
    inset: 0;
    z-index: 9;
    max-width: 500px;
    background: #000;
    transform: translateX(-100%);
    padding-right: 0;
    transition: 0.6s all ease-in-out;
  }

  .is-nav-open .nav-overlay,
  .is-nav-open .nav-wrap nav {
    transform: translateX(0);
    opacity: 1;
  }

  .nav-wrap nav>ul {
    display: block;
    padding-top: 10px;
    max-height: calc(100vh - var(--header-height));
    overflow: auto;
    padding-bottom: 30px;
  }

  .nav-head {
    padding: 20px 15px;
    border-bottom: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navigation-toggler {
    border: none;
    background-color: transparent;
    margin-left: 15px;
  }

  .header .icon {
    mask-size: 30px;
    mask-repeat: no-repeat;
    width: 30px;
    height: 30px;
    display: block;
  }

  .icon-navigation-burger {
    mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg width='800px' height='800px' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 7C4 6.44771 4.44772 6 5 6H24C24.5523 6 25 6.44771 25 7C25 7.55229 24.5523 8 24 8H5C4.44772 8 4 7.55229 4 7Z' fill='%23000000'/%3E%3Cpath d='M4 13.9998C4 13.4475 4.44772 12.9997 5 12.9997L16 13C16.5523 13 17 13.4477 17 14C17 14.5523 16.5523 15 16 15L5 14.9998C4.44772 14.9998 4 14.552 4 13.9998Z' fill='%23000000'/%3E%3Cpath d='M5 19.9998C4.44772 19.9998 4 20.4475 4 20.9998C4 21.552 4.44772 21.9997 5 21.9997H22C22.5523 21.9997 23 21.552 23 20.9998C23 20.4475 22.5523 19.9998 22 19.9998H5Z' fill='%23000000'/%3E%3C/svg%3E");
    background-color: #fff;
    rotate: 180deg;
  }

  .icon-navigation-close {
    mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle opacity='0.5' cx='12' cy='12' r='10' stroke='%231C274C' stroke-width='1.5'/%3E%3Cpath d='M14.5 9.50002L9.5 14.5M9.49998 9.5L14.5 14.5' stroke='%231C274C' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-color: #fff;
  }

  .nav-wrap ul li>a {
    width: 100%;
  }
}

/* hero-sec */
.hero-sec {
  position: relative;
  min-height: 850px;
  display: flex;
  align-items: center;
}

.hero-vidoe {
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  height: 100%;
}

.hero-con-wrapper {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-weight: 700;
  font-size: 86px;
  line-height: 1.3;
  margin-bottom: 5px;
  display: block;
  color: #fff;
  margin-bottom: 20px;
}

.hero-con p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #ffffff;
}

.hero-card {
  background: #1e1e1e;
  border-radius: 10px;
  padding: 33px 16px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
}

.hero-card-row {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-card-row {
  margin-top: 60px;
}

.hero-card .hero-card-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 10px;
  display: block;
}

.hero-card .hero-card-details {
  background: linear-gradient(90deg, #7bf513 23%, #d5d5af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
}

.hero-card .hero-card-details span {
  font-weight: 700;
  font-size: 58px;
  line-height: 1;
  display: block;
}

.hero-con-wrapper .hero-btn {
  margin-top: 48px;
  text-align: center;
}

.hero-vidoe img {
  width: 100%;
  height: 100%;
}

/* details-sec */
.details-sec {
  background: #141414;
  padding: 36px 0;
}

.details-row {
  gap: 5px;
  max-width: 955px;
  margin: 0 auto;
}

.details-col .name {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #ffffff;
  margin-top: 16px;
}

.details-row .details-col {
  flex: 0 0 calc((100% - 35px) / 7);
  max-width: calc((100% - 35px) / 7);
  text-align: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.details-row .details-col .d-icon img {
  filter: brightness(0) saturate(100%) invert(79%) sepia(60%) saturate(1964%) hue-rotate(41deg) brightness(109%) contrast(92%);
}
.details-col .d-icon img{width: 42px;max-height: 42px;}

/* trading-sec */
.trading-sec .container {
  max-width: 1122px;
}

.trading-con p {
  font-size: 20px;
  line-height: 1.7;
}

.trading-sec .sec-head {
  margin-bottom: 40px;
}

.trading-con .cms-con {
  margin-bottom: 45px;
}

.exchanges-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}

.exchanges-one-platform .cms-con ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 13px;
  display: block;
  color: #ffffff;
}

.cms-con ul li:last-child {
  margin-bottom: 0;
}

.exchanges-one-platform .cms-con ul li:before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 1px;
  background-color: transparent;
  background-image: url(../img/svg/check-mark.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-size: cover;
}

.exchanges-one-platform .platform-box {
  height: 300px;
  background-color: #0f0f0f;
  border: 1px solid #b9f6414f;
  border-radius: 12px;
  box-shadow: inset 0 0 4px #b9f6414f;
  border-radius: 10px;
  padding: 20px 30px;
  display: block;
}

.platform-sec .container {
  max-width: 1720px;
}

.platform-box-img img {
  max-width: 120px;
  margin-left: auto;
  display: block;
  margin-right: 0;
  position: absolute;
  bottom: 0;
  z-index: 1;
  right: 0px;
}

.platform-box.dark {
  background: linear-gradient(90deg, #252525 0%, #080808 132.69%);
}

.platform-head .sec-title {
  margin-bottom: 18px;
}

.platform-head {
  margin-bottom: 60px;
}

.platform-head p {
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
}

/* why-sec */
.why-sec .container {
  max-width: 1332px;
}

.why-box {
  border-radius: 10px;
  padding: 45px 42px 71px;
  background-color: #0f0f0f;
  border: 1px solid #292929;
  height: 100%;
}

.why-box-img img {
  margin-bottom: 34px;
  height: 90px;
  object-fit: contain;
}

.why-box .why-box-con .why-box-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  text-transform: capitalize;
  color: #7bf513;
  display: block;
  margin-bottom: 15px;
}

.why-box .why-box-con p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: rgb(255 255 255 / 74%);
  margin-bottom: 0;
}

.why-sec .sec-head {
  margin-bottom: 70px;
}

/* register-sec */
.register-sec {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.register-sec .register-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.register-sec .register-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
	opacity:0.6;
}

.register-sec .container {
  position: relative;
  z-index: 5;
}

.sec-title.text-white {
  background: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  color: #fff;
}

.register-con p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 35px;
}

.register-img {
  position: relative;
}

.register-img img {
  width: 100%;
  height: 100%;
}

.register-img {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 560px;
}

.register-con {
  padding-top: 146px;
  padding-bottom: 190px;
}

.register-img .video {
  height: 480px;
  width: 220px;
  object-fit: cover;
  position: absolute;
  top: 17px;
  left: 104px;
  z-index: -1;
  border-radius: 30px;
  overflow: hidden;
}

.register-sec .container {
  max-width: 1194px;
}

.register-con .sec-head {
  margin-bottom: 20px;
}

.register-sec .video video {
  display: block;
  width: 100%;
}

/* user-sec */
.user-sec {
  background-color: #0f0f0f;
}

.box-number {
  font-size: 45px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}

.box-name {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}

.apk-sticky-btns {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
  background-color: #0f0f0f;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  border-radius: 20px 0px 0px 20px;
  padding: 30px 20px 30px 20px;
  z-index: 9;
}

.apk-sticky-btn {
  border-bottom: 1px solid #696767ed;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.apk-sticky-btn .icon svg {
  fill: #7bf513;
  width: 35px;
  height: 35px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.apk-sticky-btn a {
  color: #fff;
  font-weight: 500;
  text-align: center;
}

.apk-sticky-btn:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.btn.btn-green {
  color: #fff;
  background-color: #67aa00;
}

.download-now .btn.btn-green {
  padding: 15px 26px;
}

.btn.btn-green:hover {
  background-color: #000;
}

.icon-logo svg {
  width: 25px;
  height: 25px;
  fill: #fff;
  margin-right: 10px;
}

.download-now {
  max-width: 968px;
  margin: 0 auto;
}

.trading-platform-con .sec-head {
  margin-bottom: 15px;
}

.trading-platform-con p {
  font-size: 22px;
  max-width: 60%;
  line-height: 1.4;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.download-now .sec-sub-title {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 30px;
}

.customer-care,
.customer-care a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
  display: inline-block;
  text-transform: capitalize;
}

.customer-care a:hover {
  color: #67aa00;
}

.cms-con-sec{background: #fff;}
.cms-con-sec .cms-con,.cms-con-sec .cms-con h1,.cms-con-sec .cms-con h2,.cms-con-sec .cms-con h3,.cms-con-sec .cms-con h4,.cms-con-sec .cms-con h5,.cms-con-sec .cms-con h6,
.cms-con-sec .cms-con p,.cms-con-sec .cms-con ul li,.cms-con-sec .cms-con p span{color: #000;}

.cms-con-sec .cms-con a:hover {
    color: #000;
}
.cms-con-sec .cms-con p a:hover {
    color: #000;
}

@media screen and (max-width: 1600px) {
  .platform-box-img img {
    max-width: 120px;
  }

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

@media screen and (max-width: 1460px) {
  .common-sec {
    padding: 80px 0;
  }

  .exchanges-title {
    font-size: 27px;
  }

  .exchanges-one-platform .platform-box {
    padding: 18px 22px;
  }

  .why-box {
    padding: 35px 32px 50px;
  }

  .why-box-img img {
    margin-bottom: 24px;
  }

  .register-con {
    padding-top: 136px;
    padding-bottom: 160px;
  }

  .register-img {
    height: 480px;
  }

  .register-img .video {
    height: 410px;
    width: 200px;
    top: 15px;
    left: 92px;
  }
}

@media screen and (max-width: 1348px) {}

@media screen and (max-width: 1299px) {
  .common-sec {
    padding: 70px 0;
  }

  .exchanges-one-platform .platform-box {
    height: 270px;
  }

  .platform-box-img img {
    max-width: 150px;
  }

  .why-sec .sec-head {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 1199px) {
  .btn {
    padding: 8px 20px;
  }

  .common-sec {
    padding: 60px 0;
  }

  .sec-title {
    font-size: 50px;
  }

  .hero-sec {
    min-height: inherit;
    padding: 80px 0;
  }

  .hero-title {
    font-size: 75px;
  }

  .hero-card-row {
    margin-top: 50px;
  }

  .platform-box-img img {
    max-width: 95px;
  }

  .hero-card .hero-card-name {
    margin-bottom: 5px;
    display: block;
  }

  .trading-sec .sec-head {
    margin-bottom: 30px;
  }

  .why-sec .sec-head {
    margin-bottom: 50px;
  }

  .register-con {
    padding-top: 86px;
    padding-bottom: 100px;
  }

  .register-img {
    height: 380px;
  }

  .register-img .video {
    height: 328px;
    width: 164px;
    top: 12px;
    left: 72px;
  }

  .platform-head {
    margin-bottom: 50px;
  }

  .trading-platform-con p {
    max-width: 80%;
    font-size: 20px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 1023px) {}

@media screen and (max-width: 992px) {
  .container {
    padding: 0 15px;
  }

  .common-sec {
    padding: 50px 0;
  }

  .sec-title {
    font-size: 40px;
  }

  .header-logo img {
    max-height: 35px;
  }

  .hero-sec {
    padding: 70px 0;
  }

  .details-row {
    flex-wrap: wrap;
  }

  .hero-title {
    font-size: 60px;
  }

  .hero-card-row {
    margin-top: 30px;
  }

  .details-row .details-col {
    flex: 0 0 calc((100% - 80px) / 5);
    max-width: calc((100% - 80px) / 5);
  }

  .details-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .trading-sec .sec-head {
    margin-bottom: 20px;
  }

  .trading-con p {
    font-size: 18px;
  }

  .trading-sec .cms-con ul li {
    font-size: 20px;
  }

  .why-sec .sec-head {
    margin-bottom: 40px;
  }

  .why-box-img img {
    height: 90px;
  }

  .hero-card .hero-card-details span {
    font-size: 50px;
  }

  .why-box {
    padding: 25px 22px 30px;
  }

  .trading-con .cms-con {
    margin-bottom: 35px;
  }

  .platform-head {
    margin-bottom: 40px;
  }

  .box-number {
    font-size: 36px;
  }

  .box-name {
    font-size: 17px;
  }

  .apk-sticky-btns {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
    background-color: #0f0f0f;
    position: fixed;
    top: inherit;
    right: 0px;
    transform: unset;
    border-radius: 20px 0px 0px 20px;
    padding: 10px;
    z-index: 9;
    bottom: 0;
    display: flex;
    flex-direction: row;
    width: 100%;
    border-radius: 0;
    justify-content: space-around;
  }

  .apk-sticky-btn {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    border-right: 1px solid #2525252e;
    padding-right: 20px;
    flex: 0 0 33.33%;
    margin-right: 14px;
  }

  .apk-sticky-btn:last-child {
    border-right: 0;
  }

  .download-now .btn.btn-green {
    padding: 15px 15px;
  }
}

@media screen and (max-width: 767px) {
  .hero-title {
    font-size: 55px;
  }

  .details-row .details-col {
    flex: 0 0 calc((100% - 80px) / 4);
    max-width: calc((100% - 80px) / 4);
  }

  .hero-sec {
    padding: 60px 0;
  }

  .sec-title {
    font-size: 35px;
  }

  .why-box .why-box-con p {
    font-size: 16px;
  }

  .hero-card .hero-card-details span {
    font-size: 45px;
  }

  .hero-card {
    padding: 26px 15px;
  }

  .hero-con-wrapper .hero-btn {
    margin-top: 35px;
  }

  .trading-con .cms-con {
    margin-bottom: 25px;
  }

  .register-img .video {
    height: 328px;
    width: 162px;
    top: 12px;
    left: 66px;
  }

  .box-name {
    font-size: 16px;
  }

  .box-number {
    font-size: 33px;
  }

  .download-now .btn.btn-green {
    padding: 11px 8px;
    font-size: 15px;
  }
}

@media screen and (max-width: 568px) {
  .sec-title {
    font-size: 33px;
  }

  .header {
    padding-block: 15px;
  }
  .header-logo img{
    max-height: 44px;
  }

  .trading-img img {
    width: 100%;
    object-fit: contain;
  }

  .register-img {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-title br {
    display: none;
  }

  .register-con {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .register-img .video {
    height: 328px;
    width: 145px;
    top: 12px;
    left: 67px;
    border-radius: 20px;
  }

  .trading-img {
    margin-top: 20px;
  }

  .hero-title {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .details-row {
    gap: 25px;
  }

  .details-row .details-col {
    flex: 0 0 calc((100% - 25px) / 2);
    max-width: calc((100% - 25px) / 2);
  }

  .details-col .name {
    margin-top: 10px;
    font-size: 20px;
  }

  .details-col .d-icon img {
    width: 50px;
    max-height: 50px;
    object-fit: contain;
  }

  .trading-sec .sec-head {
    margin-bottom: 10px;
  }

  .platform-head {
    margin-bottom: 30px;
  }

  .register-con .btn {
    width: fit-content;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .exchanges-one-platform .platform-box {
    height: 100%;
  }

  .platform-box-img img {
    max-width: 130px;
  }

  .register-con .sec-head {
    margin-bottom: 10px;
  }

  .register-con p {
    margin-bottom: 15px;
  }

  .hero-con p {
    font-size: 16px;
  }

  .hero-sec {
    padding: 40px 0;
  }

  .why-sec .sec-head {
    margin-bottom: 25px;
  }

  .why-box-img img {
    height: 80px;
    margin-bottom: 14px;
  }

  .why-box .why-box-con .why-box-title {
    margin-bottom: 5px;
  }

  .why-box .why-box-con .why-box-title {
    font-size: 25px;
  }

  .btn+.btn {
    margin-top: 10px;
    margin-left: 0;
  }

  .hero-btn .btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
  }

  .box-name {
    margin-bottom: 10px;
  }

  .apk-sticky-btns {
    padding: 20px 10px 20px 10px;
  }

  .apk-sticky-btn .icon svg {
    width: 30px;
    height: 30px;
  }

  .apk-sticky-btns {
    padding: 12px 10px 12px 10px;
  }

  .trading-platform-con p {
    max-width: 100%;
    font-size: 18px;
  }

  .download-now .btn.btn-green {
    max-width: 70%;
    margin: 0 auto;
  }

  .download-now .sec-sub-title {
    font-size: 30px;
    margin-bottom: 21px;
  }

  .header-btn .btn {
    font-size: 13px;
  }

  .header-btn .btn.out-line {
    border: none;
    padding: 8px 8px;
  }
}

@media screen and (max-width: 335px) {
  .header-logo img {
    max-height: 29px;
  }
}

.hero-sec::before {
  content: '';
  position: absolute;
  background: rgb(0 0 0 / 70%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-sec video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 90%;
}