*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  outline: none;
  text-transform: capitalize;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media only screen and (max-width: 64em) {
  html {
    font-size: 55%;
  }
}
@media only screen and (max-width: 35.9375em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (max-width: 30em) {
  html {
    font-size: 45%;
  }
}

body {
  font-family: "Muli", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #fff;
  overflow-x: hidden;
}

.main {
  background-color: #050510;
}

@media only screen and (max-width: 48em) {
  section {
    padding: 10rem !important;
  }
}
@media only screen and (max-width: 30em) {
  section {
    padding: 10rem 2rem !important;
  }
}

.btn-scrollToTop {
  position: fixed;
  bottom: 4rem;
  right: 2rem;
  height: 6rem;
  width: 6rem;
  background-color: #1aafe9;
  border-radius: 50%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(200%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.btn-scrollToTop .icon {
  fill: white;
  transition: all 0.5s;
}
.btn-scrollToTop:hover .icon {
  fill: black;
}

.show-btn {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

h1.heading {
  font-size: 4.5rem;
  text-align: left;
  font-weight: 700;
  color: #fff;
}

h2.heading {
  font-size: 2.67em;
  text-align: left;
  font-weight: 700;
  color: #fff;
}

h5.heading {
  font-size: 1rem;
  font-family: "Muli", sans-serif;
  font-weight: 900;
  color: #fff;
}

h4.heading {
  font-size: 1.333em;
  font-weight: 700;
  color: #fff;
  font-family: "Muli", sans-serif;
}

h3.heading {
  font-size: 1.333em;
  font-weight: 700;
  color: #fff;
  font-family: "Muli", sans-serif;
}

h6.heading {
  font-size: 0.8rem;
  font-family: "Muli", sans-serif;
  color: #fff;
}

.p__text {
  font-size: 1.6rem;
  color: #533b7a;
}

.color-gray {
  color: #607290;
}

.bold {
  font-weight: 700;
}

.center {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.icon {
  height: 2.7rem;
  width: 3.1rem;
}

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;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

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;
}

a:hover {
  text-decoration: none;
}

.white {
  color: #fff;
}

.laptop-land-show {
  display: none !important;
}
@media only screen and (max-width: 75em) {
  .laptop-land-show {
    display: block !important;
  }
}

@media only screen and (max-width: 75em) {
  .laptop-land-hide {
    display: none;
  }
}

.laptop-port-show {
  display: none;
}
@media only screen and (max-width: 64em) {
  .laptop-port-show {
    display: block;
  }
}

@media only screen and (max-width: 64em) {
  .laptop-port-hide {
    display: none;
  }
}

.tablet-land-show {
  display: none !important;
}
@media only screen and (max-width: 62em) {
  .tablet-land-show {
    display: block !important;
  }
}

@media only screen and (max-width: 62em) {
  .tablet-land-hide {
    display: none !important;
  }
}

.tablet-port-show {
  display: none !important;
}
@media only screen and (max-width: 48em) {
  .tablet-port-show {
    display: block !important;
  }
}

@media only screen and (max-width: 48em) {
  .tablet-port-hide {
    display: none !important;
  }
}

@media only screen and (max-width: 35.9375em) {
  .mbl-land-hide {
    display: none;
  }
}

.mbl-land-show {
  display: none;
}
@media only screen and (max-width: 35.9375em) {
  .mbl-land-show {
    display: block;
  }
}

.hide {
  opacity: 0;
  visibility: hidden;
}

.m--1 {
  margin: 0.5rem !important;
}

.m-1 {
  margin: 1rem !important;
}

.m-2 {
  margin: 2rem !important;
}

.m-3 {
  margin: 3rem !important;
}

.m-3 {
  margin: 3rem !important;
}

.m-4 {
  margin: 4rem !important;
}

.m-5 {
  margin: 5rem !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mt-4 {
  margin-top: 4rem !important;
}

.mt-5 {
  margin-top: 5rem !important;
}

.mt-6 {
  margin-top: 6rem !important;
}

.mt-7 {
  margin-top: 7rem !important;
}

.mt-8 {
  margin-top: 8rem !important;
}

.mt-9 {
  margin-top: 9rem !important;
}

.mt-10 {
  margin-top: 10rem !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.mb-4 {
  margin-bottom: 4rem !important;
}

.mb-5 {
  margin-bottom: 5rem !important;
}

.mb-6 {
  margin-bottom: 6rem !important;
}

.mb-7 {
  margin-bottom: 7rem !important;
}

.mb-8 {
  margin-bottom: 8rem !important;
}

.mb-9 {
  margin-bottom: 9rem !important;
}

.mb-10 {
  margin-bottom: 10rem !important;
}

.mr-1 {
  margin-right: 1rem !important;
}

.mr-2 {
  margin-right: 2rem !important;
}

.mr-3 {
  margin-right: 3rem !important;
}

.mr-4 {
  margin-right: 4rem !important;
}

.mr-5 {
  margin-right: 5rem !important;
}

.mr-6 {
  margin-right: 6rem !important;
}

.mr-7 {
  margin-right: 7rem !important;
}

.mr-8 {
  margin-right: 8rem !important;
}

.mr-9 {
  margin-right: 9rem !important;
}

.mr-10 {
  margin-right: 10rem !important;
}

.ml-1 {
  margin-left: 1rem !important;
}

.ml-2 {
  margin-left: 2rem !important;
}

.ml-3 {
  margin-left: 3rem !important;
}

.ml-4 {
  margin-left: 4rem !important;
}

.ml-5 {
  margin-left: 5rem !important;
}

.ml-6 {
  margin-left: 6rem !important;
}

.ml-7 {
  margin-left: 7rem !important;
}

.ml-8 {
  margin-left: 8rem !important;
}

.ml-9 {
  margin-left: 9rem !important;
}

.ml-10 {
  margin-left: 10rem !important;
}

.p-1 {
  padding: 1rem !important;
}

.p-2 {
  padding: 2rem !important;
}

.p-3 {
  padding: 3rem !important;
}

.p-4 {
  padding: 4rem !important;
}

.p-5 {
  padding: 5rem !important;
}

.px-1 {
  padding: 0 1rem !important;
}

.px-2 {
  padding: 0 2rem !important;
}

.px-3 {
  padding: 0 3rem !important;
}

.px-4 {
  padding: 0 4rem !important;
}

.px-5 {
  padding: 0 5rem !important;
}

.py-1 {
  padding: 1rem 0 !important;
}

.py-2 {
  padding: 2rem 0 !important;
}

.py-3 {
  padding: 3rem 0 !important;
}

.py-4 {
  padding: 4rem 0 !important;
}

.py-5 {
  padding: 5rem 0 !important;
}

.pt-1 {
  padding-top: 1rem !important;
}

.pt-2 {
  padding-top: 2rem !important;
}

.pt-3 {
  padding-top: 3rem !important;
}

.pt-4 {
  padding-top: 4rem !important;
}

.pt-5 {
  padding-top: 5rem !important;
}

.pt-6 {
  padding-top: 6rem !important;
}

.pt-7 {
  padding-top: 7rem !important;
}

.pt-8 {
  padding-top: 8rem !important;
}

.pt-9 {
  padding-top: 9rem !important;
}

.pt-10 {
  padding-top: 10rem !important;
}

.pb-1 {
  padding-bottom: 1rem !important;
}

.pb-2 {
  padding-bottom: 2rem !important;
}

.pb-3 {
  padding-bottom: 3rem !important;
}

.pb-4 {
  padding-bottom: 4rem !important;
}

.pb-5 {
  padding-bottom: 5rem !important;
}

.pb-6 {
  padding-bottom: 6rem !important;
}

.pb-7 {
  padding-bottom: 7rem !important;
}

.pb-8 {
  padding-bottom: 8rem !important;
}

.pb-9 {
  padding-bottom: 9rem !important;
}

.pb-10 {
  padding-bottom: 10rem !important;
}

.ch-1 {
  max-width: 1ch;
}

.ch-2 {
  max-width: 2ch;
}

.ch-3 {
  max-width: 3ch;
}

.ch-4 {
  max-width: 4ch;
}

.ch-5 {
  max-width: 5ch;
}

.ch-6 {
  max-width: 6ch;
}

.ch-7 {
  max-width: 7ch;
}

.ch-8 {
  max-width: 8ch;
}

.ch-9 {
  max-width: 9ch;
}

.ch-10 {
  max-width: 10ch;
}

.ch-11 {
  max-width: 11ch;
}

.ch-12 {
  max-width: 12ch;
}

.ch-13 {
  max-width: 13ch;
}

.ch-14 {
  max-width: 14ch;
}

.ch-15 {
  max-width: 15ch;
}

.ch-16 {
  max-width: 16ch;
}

.ch-17 {
  max-width: 17ch;
}

.ch-18 {
  max-width: 18ch;
}

.ch-19 {
  max-width: 19ch;
}

.ch-20 {
  max-width: 20ch;
}

.ch-21 {
  max-width: 21ch;
}

.ch-22 {
  max-width: 22ch;
}

.ch-23 {
  max-width: 23ch;
}

.ch-24 {
  max-width: 24ch;
}

.ch-25 {
  max-width: 25ch;
}

.ch-26 {
  max-width: 26ch;
}

.ch-27 {
  max-width: 27ch;
}

.ch-28 {
  max-width: 28ch;
}

.ch-29 {
  max-width: 29ch;
}

.ch-30 {
  max-width: 30ch;
}

.ch-31 {
  max-width: 31ch;
}

.ch-32 {
  max-width: 32ch;
}

.ch-33 {
  max-width: 33ch;
}

.ch-34 {
  max-width: 34ch;
}

.ch-35 {
  max-width: 35ch;
}

.ch-36 {
  max-width: 36ch;
}

.ch-37 {
  max-width: 37ch;
}

.ch-38 {
  max-width: 38ch;
}

.ch-39 {
  max-width: 39ch;
}

.ch-40 {
  max-width: 40ch;
}

.ch-41 {
  max-width: 41ch;
}

.ch-42 {
  max-width: 42ch;
}

.ch-43 {
  max-width: 43ch;
}

.ch-44 {
  max-width: 44ch;
}

.ch-45 {
  max-width: 45ch;
}

.ch-46 {
  max-width: 46ch;
}

.ch-47 {
  max-width: 47ch;
}

.ch-48 {
  max-width: 48ch;
}

.ch-49 {
  max-width: 49ch;
}

.ch-50 {
  max-width: 50ch;
}

.ch-51 {
  max-width: 51ch;
}

.ch-52 {
  max-width: 52ch;
}

.ch-53 {
  max-width: 53ch;
}

.ch-54 {
  max-width: 54ch;
}

.ch-55 {
  max-width: 55ch;
}

.ch-56 {
  max-width: 56ch;
}

.ch-57 {
  max-width: 57ch;
}

.ch-58 {
  max-width: 58ch;
}

.ch-59 {
  max-width: 59ch;
}

.ch-60 {
  max-width: 60ch;
}

.ch-61 {
  max-width: 61ch;
}

.ch-62 {
  max-width: 62ch;
}

.ch-63 {
  max-width: 63ch;
}

.ch-64 {
  max-width: 64ch;
}

.ch-65 {
  max-width: 65ch;
}

.ch-66 {
  max-width: 66ch;
}

.ch-67 {
  max-width: 67ch;
}

.ch-68 {
  max-width: 68ch;
}

.ch-69 {
  max-width: 69ch;
}

.ch-70 {
  max-width: 70ch;
}

.ch-71 {
  max-width: 71ch;
}

.ch-72 {
  max-width: 72ch;
}

.ch-73 {
  max-width: 73ch;
}

.ch-74 {
  max-width: 74ch;
}

.ch-75 {
  max-width: 75ch;
}

.ch-76 {
  max-width: 76ch;
}

.ch-77 {
  max-width: 77ch;
}

.ch-78 {
  max-width: 78ch;
}

.ch-79 {
  max-width: 79ch;
}

.ch-80 {
  max-width: 80ch;
}

.ch-81 {
  max-width: 81ch;
}

.ch-82 {
  max-width: 82ch;
}

.ch-83 {
  max-width: 83ch;
}

.ch-84 {
  max-width: 84ch;
}

.ch-85 {
  max-width: 85ch;
}

.ch-86 {
  max-width: 86ch;
}

.ch-87 {
  max-width: 87ch;
}

.ch-88 {
  max-width: 88ch;
}

.ch-89 {
  max-width: 89ch;
}

.ch-90 {
  max-width: 90ch;
}

.ch-91 {
  max-width: 91ch;
}

.ch-92 {
  max-width: 92ch;
}

.ch-93 {
  max-width: 93ch;
}

.ch-94 {
  max-width: 94ch;
}

.ch-95 {
  max-width: 95ch;
}

.ch-96 {
  max-width: 96ch;
}

.ch-97 {
  max-width: 97ch;
}

.ch-98 {
  max-width: 98ch;
}

.ch-99 {
  max-width: 99ch;
}

.ch-100 {
  max-width: 100ch;
}

.btn {
  padding: 1rem 3rem;
  border: 2px solid #fff;
  font-weight: 700;
  color: #fff;
  border-radius: 10rem;
  font-size: 1.6rem;
}
.btn:hover {
  background-color: #fff;
  color: #000;
}

.nav {
  padding: 3rem 4rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
@media only screen and (max-width: 48em) {
  .nav {
    padding: 2rem 2rem;
  }
}
.nav__logo {
  max-height: 4.5em;
  height: 8rem;
}
.nav__logo img {
  height: 100%;
  width: 100%;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  padding: 2rem 4rem;
}
.sticky .nav__logo {
  height: 5rem;
}

.header {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("../img/bg-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  height: auto;
  position: relative;
}
@media only screen and (max-width: 62em) {
  .header {
    background-position: center;
  }
}
@media only screen and (max-width: 62em) {
  .header {
    padding: 0 5rem;
  }
}
@media only screen and (max-width: 62em) {
  .header {
    padding: 0 2rem;
  }
}
.header .content-wrapper {
  color: #fff;
  max-width: 80rem;
  width: 100%;
  padding: 18.7em 12% 4em 0;
  margin-left: 16%;
}
@media only screen and (max-width: 48em) {
  .header .content-wrapper {
    margin-left: 0;
  }
}
.header .content-wrapper h1 {
  color: #fff;
}
.header .content-wrapper h3 {
  font-size: 3rem;
  color: #fff;
}
.header .content-wrapper .btn__trading {
  background-image: linear-gradient(160deg, #017bfd 0%, #20bfe1 100%);
  color: #fff;
  border: none;
  padding: 1.5rem 3.5rem;
  display: inline-block;
  transition: all 0.1s ease;
}
.header .content-wrapper .btn__trading:hover {
  background-image: linear-gradient(160deg, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%);
  color: #fff;
}
.header .content-wrapper .btn__trading .icon {
  fill: #fff;
}
.experience-section {
  padding: 10rem 0 10rem 0;
  background-image: url("https://binarystars.cc/wp-content/uploads/2018/03/home-1.png?id=842");
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
}
@media only screen and (max-width: 62em) {
  .experience-section {
    background-image: none !important;
  }
}

.experience {
  max-width: 65rem;
  margin-left: auto;
  width: 50%;
}
@media only screen and (max-width: 62em) {
  .experience {
    width: 100%;
    margin-left: 0;
  }
}
.experience h2 {
  color: #fff;
}

.work {
  margin-top: 10rem;
  position: relative;
}
@media only screen and (max-width: 62em) {
  .work {
    margin-top: 15rem;
  }
}
.work .icon-circle {
  height: 5rem;
  width: 5rem;
  background-image: linear-gradient(#017bfd, #20bfe1);
  color: #1aafe9;
  border-radius: 50%;
  margin-left: -2.5rem;
  position: relative;
  margin-right: 2rem;
}
.work .icon-circle::before {
  content: "";
  display: block;
  height: 3rem;
  width: 3rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #050510;
  border-radius: 50%;
}
.work__list {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 62em) {
  .work__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 5rem 0;
  }
}
.work__list h2 {
  font-size: 1.8em;
}
.work__line {
  height: 4rem;
  margin-top: 1rem;
  margin-bottom: 3rem;
  position: relative;
}
.work__line::after {
  width: 100%;
  content: "";
  display: block;
  height: 20%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #d2538a;
}
.work .item--2 .work__line::after {
  height: 40% !important;
}
.work .item--3 .work__line::after {
  height: 60% !important;
}
.work .item--4 .work__line::after {
  height: 80% !important;
}

.platform-section {
  padding: 6rem 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("../img/platform-bg.jpg");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 62em) {
  .platform-section {
    background-image: none !important;
  }
}
.platform-section h2 {
  text-align: center !important;
}
.platform-section .platform__title {
  margin-bottom: 15rem;
}

.platform__item {
  text-align: center;
}
.platform__item:hover .icon {
  fill: #fff;
  height: 100%;
  width: 100%;
}
.platform__img {
  height: 6rem;
  width: 6rem;
  margin: 0 auto;
}
.platform__img .icon {
  fill: #1aafe9;
  height: 100%;
  width: 100%;
  transition: all 0.5s;
}

.footer {
  padding: 12rem 5rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("../img/footer_bg.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 62em) {
  .footer {
    padding: 5rem;
  }
}
@media only screen and (max-width: 30em) {
  .footer {
    padding: 5rem 2rem;
  }
}
.footer__link {
  text-decoration: none;
}
.footer__link:hover {
  color: #fff;
}

.signup-page .header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("../img/bg-blur.jpg");
}
.signup-page .sign {
  background-color: rgba(13, 14, 22, 0.6);
  max-height: 56rem;
  max-width: 45rem;
  width: 100%;
  padding: 3rem;
  border-radius: 0.75rem;
}
.signup-page .sign__logo {
  height: 10rem;
}
.signup-page .sign h2 {
  font-size: 1.875rem;
  line-height: 2.25rem;
  text-align: center;
}
.signup-page .sign__inputs label {
  clip: rect(0, 0, 0, 0);
  border-width: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.signup-page .sign__inputs .input-primary {
  background-color: rgba(28, 30, 47, 0.6);
  border-radius: 1rem;
  border: 1px solid rgba(209, 213, 219, 0.1);
  display: block;
  font-size: 1.6rem;
  line-height: 1.25rem;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  padding: 1.2rem 1rem;
  position: relative;
  width: 100%;
  color: #fff;
  transition: all 0.5s;
}
.signup-page .sign__inputs .input-primary:focus {
  border: 1px solid rgba(194, 90, 236, 0.6);
}
.signup-page .sign .tarms a {
  color: #b821c4;
  text-decoration: none;
}
.signup-page .sign .btn-submit {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #b821c4;
  background-color: #b821c4;
  position: relative;
  transition: all 0.5s;
}
.signup-page .sign .btn-submit:hover {
  filter: drop-shadow(0px 0px 5px #c25aec);
  color: #fff;
}
.signup-page .sign .btn-submit .icon {
  height: 2rem;
  width: 2rem;
  vertical-align: middle;
  margin-right: auto;
}
.signup-page .sign .btn-submit p {
  align-self: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*# sourceMappingURL=style.css.map */
