*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  background-color: #fff;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 15px;
}

p:last-child {
  margin-bottom: 0;
}

a, a:hover, a:focus {
  text-decoration: none;
}

ol,
ul,
dl {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  max-width: 1440px;
  padding: 0 32px;
}

nav.nareContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
}

.footerBrand,
.navbrand {
  transition: .3s;
}

.footerBrand:hover,
.navbrand:hover {
  filter: brightness(0);
  opacity: .6;
}

.joinUs {
  display: block;
  background: transparent;
  border: 0;
  outline: none;
  box-shadow: none;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
}

.joinUs:hover {
  background: #F5F5F7;
}

.joinUs:active {
  background: #e6e6e8;
  
}

section.heroArea {
  padding: 76px 0 125px;
}

video.loopVideo {
  display: block;
  width: 104px;
  margin: 0 auto 40px auto;
  pointer-events: none;
}

.heroContent {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.heroContent h1 {
  font-weight: 500;
  font-size: 55px;
}

.heroContent p {
  font-size: 21px;
  line-height: 1.45;
  margin: 24px 0 30px 0;
}

.blackBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 48px;
  text-align: center;
  background: #000;
  color: #fff;
  transition: .3s ease all;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.blackBtn:hover {
  color: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.01);
}

.blackBtn::after {
  position: absolute;
  content: "";
  top: 70%;
  left: 15%;
  right: 0;
  z-index: -1;
  height: 70%;
  width: 70%;
  transform: scale(0.9) translateZ(0);
  filter: blur(15px);
  background: linear-gradient(
    to left,
    #ff5770,
    #e4428d,
    #c42da8,
    #9e16c3,
    #6501de,
    #9e16c3,
    #c42da8,
    #e4428d,
    #ff5770
  );
  background-size: 200% 200%;
  animation: animateGlow 1.25s linear infinite;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}


@keyframes animateGlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.no_animation:after {
    display: none;
}

.blackBtn:hover:after {
  opacity: 1;
  visibility: visible;
}

section.tradingArea {
  padding: 190px 0 100px;
}

.titleContent {
  text-align: center;
  max-width: 930px;
  margin: 0 auto 50px auto;
}

.titleContent h2 {
  font-size: 55px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.titleContent p {
  font-size: 21px;
  line-height: 1.45;
}

.row {
  margin: 0 -15px;
  gap: 30px 0px;
}

.row> div {
  padding: 0 15px;
}

.featureTradCol {
  text-align: center;
  background: #FAFAFA;
  padding: 56px 32px;
  height: 100%;
}

.featureTradCol img {
  display: block;
  margin: 0 auto 32px auto;
}

.featureTradCol h3 {
  font-size: 34px;
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.featureTradCol p {
  font-size: 19px;
  line-height: 1.5;
}

.performanceWidget {
  padding: 24px 32px;
  background: #fff;
  border-radius: 8px;
  height: 100%;
}

.performanceWidget h3 {
  font-size: 21px;
  line-height: 1.5;
  margin: 0 0 12px 0;
  font-weight: 600;
}

.performanceWidget p {
  font-size: 15px;
  line-height: 1.5;
}

span.up_percent {
  color: #3EAF4D;
}

.performanceWidget.green h3 {
  color: #3EAF4D;
}

.chartBox {
  background: #fff;
  border-radius: 8px;
  height: 100%;
  padding: 24px;
}

.chartBox h3 {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.5;
}

.footerWidget {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 30px;
}

p.copyright {
  margin: 0;
  font-size: 13px;
  line-height: 24px;
}

a.policy {
  font-size: 13px;
  line-height: 24px;
  color: #000;
}

.footerWidget.footerLinks {
  justify-content: flex-end;
}

ul.socialLinks {
  display: flex;
  align-items: center;
  gap: 30px;
}

ul.socialLinks li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: .3s ease all;
  border-radius: 4px;
}

ul.socialLinks li a:hover {
  background: #F5F5F7;
}

ul.socialLinks li a:active {background: #E6E6E8;}

footer.footerArea {
  padding: 100px 0px 30px 0px;
  background: #fff;
}

section.performanceArea {
  padding: 88px 0 100px;
  background: #F7F7F7;
}

.joinusModal {
  position: fixed;
  z-index: 1111;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: .5s;
  display: block;
}

.backModal {
  display: block;
  background: transparent;
  border: 0;
  outline: none;
  box-shadow: none;
  padding: 0;
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 99;
}

.joinFormContainer {
  width: 100%;
  max-width: 1440px;
  padding: 100px 100px 100px 100px;
  max-height: 100vh;
  overflow: auto;
  position: relative;
  z-index: 3;
}

.joinForm {
  max-width: 480px;
}

.joinForm> h2 {
  font-size: 55px;
  line-height: 1.2;
}

.joinForm> p {
  font-size: 21px;
  line-height: 1.5;
  margin: 24px 0 32px 0;
}

.joinForm form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.inputCol {
  position: relative;
  z-index: 1;
  width: 100%;
}

.inputCol input {
  border: 1px solid #CCCCCC;
  display: block;
  width: 100%;
  height: 64px;
  border-radius: 8px;
  outline: none;
  box-shadow: none;
  padding-left: 56px;
  padding-right: 20px;
  color: #000;
}

.inputCol.error_input input {
  border-color: #E41B1B;
}

.inputCol ::placeholder {
  color: #9A9A9A;
}

img.formIcon {
  display: block;
  position: absolute;
  z-index: 1;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s;
  filter: brightness(0);
  opacity: .3;
}

.inputCol input:focus {
  border-color: #2698F7;
}

.inputCol input:focus + img {
  filter: unset;
  opacity: 1;
}

.joinSidebar {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
  width: 50%;
  max-width: 550px;
  height: 100%;
  padding: 30px;
}

.joinSidebar> img {
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a.confirmLogo {
  display: inline-block;
}

body.joinFormActive {
  overflow: hidden;
  padding-right: 17px;
}

body.joinFormActive .joinusModal {
  opacity: 1;
  visibility: visible;
}

.tryagain_pop,
.confarmationPop {
  position: fixed;
  z-index: 111;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  padding: 70px 30px;
  max-height: 100vh;
  overflow: auto;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: .5s;
}

.tryagain_pop a.confirmLogo, 
.confarmationPop a.confirmLogo {
  position: absolute;
  z-index: 1;
  left: 30px;
  top: 30px;
}

.confirmationCont {
  max-width: 608px;
  margin: 0 auto;
  background: #fff;
  text-align: center;
  padding: 55px;
  border-radius: 24px;
}

.confirmationCont h2 {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.5;
}

.confirmationCont p {
  font-size: 21px;
  line-height: 1.5;
  margin: 16px 0 32px 0;
}

button.blackBtn {
  border: 0;
}

button.blackBtn[disabled] {
  background: #D6D6D6;
  pointer-events: none;
}

body.tryagain_popActive,
body.confarmationPopActive {
  overflow: hidden;
  padding-right: 17px;
}

body.tryagain_popActive .tryagain_pop,
body.confarmationPopActive .confarmationPop {
  opacity: 1;  
  visibility: visible;
}

.confirmationCont> img {
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
}

.apexcharts-legend-marker {
  transform: scale(.6);
  margin-left: -5px;
}

div#Holdings .apexcharts-canvas, div#Holdings .apexcharts-canvas svg, div#Holdings .apexcharts-canvas svg foreignObject {
  width: 100% !important;
}

div#Holdings .apexcharts-canvas .apexcharts-legend.apexcharts-align-center {
  width: 200px;
  gap: 18px;
}

div#Holdings .apexcharts-canvas .apexcharts-legend.apexcharts-align-center .apexcharts-legend-series {
  width: 100%;
  margin: 0 !important;
}

div#Holdings .apexcharts-canvas .apexcharts-legend.apexcharts-align-center .apexcharts-legend-series .apexcharts-legend-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 15px !important;
}

div#Holdings {
  padding-top: 30px;
}

.button-container {
  display: flex;
  justify-content: flex-end;
  background: #F7F7F7;
  max-width: fit-content;
  margin-left: auto;
  padding: 4px;
  border-radius: 4px;
  gap: 3px;
}

.button-container button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 44px;
  border: 0;
  background: transparent;
  border-radius: 4px;
  transition: .3s;
  font-size: 15px;
  font-weight: 500;
}

.button-container button.active,
.button-container button:hover {
  background: #fff;
}

img.donut_chart {
  display: block;
  width: 100%;
  margin-top: 30px;
}

img.line_chart {
  display: block;
  width: 100%;
  margin-top: -40px;
}

section.performanceArea .titleContent {
    margin-bottom: 40px;
}

.joinContent.titleContent {
    margin-bottom: 100px;
    max-width: 760px;
}

.joinContent.titleContent p {
  margin-bottom: 32px;
}

.errorMessage {
    display: block;
    position: absolute;
    z-index: 1;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #E41B1B;
    right: auto;
    width: auto;
    white-space: nowrap;
    margin-left: 16px;
    display: none;
}

.error_input .errorMessage {
  display: block;
}