@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&family=Quicksand&family=Roboto&family=Titillium+Web&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=DM+Sans:opsz,wght@9..40,300;9..40,400&display=swap");
:root {
  --foreground-rgb: #f2f2f2;
  --background-wt: #f7f7f7;
  --txt-bk: #24282f;
  --txt-lt: #ffffff;
  --background-bk: #121212;
  --header-scroll: #131316;
  --txt-wt: hsl(252, 30%, 100%);
  --background-green: #4ccf7f;
  --purple: hsl(273, 90%, 48%);
  --depp-blue: #2f3493;
  --blue-crayola: hsl(222, 100%, 61%);
  --presian-red: hsl(0, 64%, 52%);
  /* --txt-lt: hsl(227, 13%, 73%); */
  --txt-ltb: #6e6e6e;
  --footer-bg: #000026;
  --input: #1c1c1e;
  --gold: #ffd700;
  --orange: #ff7b25;
  --ibox: #ffffff13;
  --eerie-black-2: hsla(0, 8%, 81%, 0.22);
  --t-speed: 0.25s ease;
  --fos: 14px;
  --fos-1: 3.6rem;
  --btn-shadow: 0px 4px 20px rgba(0, 0, 0, 0.7);
  --card-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.4);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
/* general */

html,
body {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  font-family: "Quicksand", sans-serif;
}
body {
  line-height: 1.4;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: hsl(220, 4%, 5%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(220, 5%, 20%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(220, 5%, 30%);
}

:focus-visible {
  outline-offset: 4px;
}
button {
  cursor: pointer;
  border: none;
  outline: none;
}
a {
  text-decoration: none;
}
input[type="checkbox"]:checked {
  accent-color: var(--background-green);
}
.label-e9c6dycV .logoWrap-e9c6dycV svg path,
.label-e9c6dycV .svgTextWrap-e9c6dycV svg,
.label-dzbd7lyV.snap-dzbd7lyV.end-dzbd7lyV {
  display: none !important;
}
hr {
  background: #ffffff13;
  height: 1px;
  border: none;
  width: 100%;
  margin: 4rem 0;
}

#google-element {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 900;
}
body {
  top: 0 !important;
}
body > .skiptranslate {
  display: none;
}
/*loader*/
.loader {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--background-bk);
  z-index: 20000000;
}
.loader h2 {
  position: relative;
  font-size: 35px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: var(--background-bk);
  -webkit-text-stroke: 0.3vw var(--ibox);
  text-transform: uppercase;
}
.loader h2::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  color: var(--background-green);
  -webkit-text-stroke: 0 var(--ibox);
  border-right: 2px solid var(--background-green);
  overflow: hidden;
  animation: anime 6s linear infinite;
}
@keyframes anime {
  0%,
  10%,
  100% {
    width: 0;
  }
  70%,
  90% {
    width: 100%;
  }
  0% {
    width: 0;
  }
}
@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.loader::after {
  animation-delay: 1s;
}
select,
input {
  border: none;
  outline: none;
}
a {
  color: var(--background-green);
}
/* general end */
/* main */
main {
  width: 100%;
  background: var(--background-bk);
  background-blend-mode: overlay, overlay, normal;
}
/* Header */
header {
  position: relative;
  width: 100%;
  background: transparent;
  color: var(--txt-wt);
  transition: all 1s ease;
  z-index: 10000;
}
header.scrolling {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  background: var(--header-scroll);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  box-shadow: 0px 4px 8px hsla(0, 0%, 0%, 0.1);
  transition: all 1s ease;
}
header nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}
.logo {
  font-family: "Quicksand", sans-serif;
  display: flex;
  justify-content: center;
  align-items: baseline;
  text-transform: uppercase;
  z-index: 1;
}
.logo span {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--background-green);
}
.logo strong {
  font-weight: 700;
}
header nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.6rem;
  transition: transform 600ms ease;
  transform-origin: top right;
  font-family: "Quicksand", sans-serif;
}
header nav ul li {
  list-style: none;
}
header nav ul li .nav-link {
  font-weight: 600;
  font-size: var(--fos);
  transition: var(--t-speed);
  text-decoration: none;
  color: var(--txt-wt);
  text-transform: uppercase;
}
header nav ul li .nav-link:hover {
  border-block-end: 1px solid var(--background-wt);
}
header nav ul li .nav-link.here {
  color: var(--background-green);
  border-block-end: 1px solid var(--background-green);
}
header nav ul li .nav-link.here:hover {
  border-block-end: 1px solid var(--background-green);
}
header nav ul.active {
  position: fixed;
  width: 100%;
  right: 0;
  top: 0;
  height: 100vh;
  display: block;
  padding-top: 20%;
  background: var(--header-scroll);
  gap: 0;
  transform: scale(1);
  transition: transform 600ms ease;
  transform-origin: top right;
}
header nav ul.active li {
  position: relative;
  width: 100%;
}
header nav ul.active li a {
  display: block;
  padding: 1.2rem;
  width: 100%;
  font-size: 500;
  text-transform: capitalize;
  text-align: left;
  border-block-end: 1px solid var(--eerie-black-2);
}
.call-to {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  transition: transform 800ms ease;
  transform-origin: bottom right;
  font-family: "Quicksand", sans-serif;
}
.call-to.active {
  position: fixed;
  top: 400px;
  left: 0;
  right: 0;
  display: flex;
  width: 100%;
  transform: scale(1);
  transition: transform 800ms ease;
  transform-origin: bottom right;
}
.call-to .btn {
  padding: 0.75rem 2rem;
  font-weight: 700;
  transition: var(--t-speed);
  border-radius: 30px;
  color: var(--txt-wt);
  border: none;
  outline: none;
}
.call-to .register {
  background: #ffffff13;
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
}
.call-to .login {
  border: 1px solid var(--background-wt);
  background: transparent;
}
.call-to .btn:hover {
  background: var(--txt-lt);
  color: var(--txt-bk);
}
header .menu-bar {
  display: none;
  background-color: var(--background-green);
  padding: 4px;
  cursor: pointer;
  z-index: 1;
}
.bar1,
.bar2,
.bar3 {
  position: relative;
  width: 30px;
  height: 3px;
  background-color: var(--background-wt);
  margin: 6px 0;
  transition: 0.4s;
  transform-origin: center;
}
.bar2 {
  width: 20px;
}
.toggle .bar1 {
  transform: translate(0, 9px) rotate(-45deg);
  background-color: var(--background-wt);
  z-index: 3;
}
.toggle .bar3 {
  transform: translate(0, -9px) rotate(45deg);
  background-color: var(--background-wt);
  z-index: 3;
}
.toggle .bar2 {
  opacity: 0;
}
/* Header end */
/* Pager */
.pager {
  position: relative;
  padding-inline: 15px;
  width: 100%;
  z-index: 1;
}
/* pager end */
/* home section */
#home {
  position: relative;
  padding-block: 30px 100px;
  z-index: 1;
}
.home {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--txt-wt);
  gap: 1.5rem;
}
.home h1 {
  font-size: var(--fos-1);
  text-align: center;
  font-weight: 800;
  max-width: 80%;
  background: linear-gradient(
    to right,
    var(--background-green) 10%,
    var(--txt-wt) 80%
  );
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
}
.home p {
  max-width: 60%;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-align: center;
  color: var(--txt-wt);
}
.get-started {
  padding: 10px 2.5rem;
  background-color: var(--background-green);
  color: var(--txt-lt);
  font-weight: 600;
  font-size: 18px;
  transition: var(--t-speed);
  border-radius: 30px;
  border: none;
  outline: none;
}
.get-started:hover {
  transform: scale(1.1);
  -webkit-box-shadow: 1px -3px 51px -4px var(--background-green);
  -moz-box-shadow: 1px -3px 51px -4px var(--background-green);
  box-shadow: 1px -3px 51px -4px var(--background-green);
}
.star {
  height: 100%;
}
.vision {
  width: 100%;
  height: auto;
}
.mini-chart {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}
.mini-chart .tradingview-widget-container {
  -webkit-box-shadow: 1px -3px 10px -4px var(--background-bk);
  -moz-box-shadow: 1px -3px 10px -4px var(--background-bk);
  box-shadow: 1px -3px 10px -4px var(--background-bk);
  pointer-events: none;
}
.embed-widget-tickers {
  height: 250px;
  width: 250px;
  background: transparent;
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-radius: 0;
}
.ticker-area {
  width: 100%;
  display: flex;
  gap: 0.5rem;
}
.ticker-area .tradingview-widget-container {
  width: 100%;
}

/* home section end */

/* Market data */
#market {
  position: relative;
  margin-top: 50px;
  padding-block: 30px 100px;
}
#market-data {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#market-data h2 {
  font-size: var(--fos-1);
  color: var(--txt-wt);
  margin-top: 2rem;
  font-weight: 800;
  font-family: "Quicksand", sans-serif;
}
#market-data p {
  max-width: 60%;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--txt-wt);
}
.market-data {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow-x: scroll;
  scrollbar-width: 0;
  margin-top: 2rem;
}
.market-data::-webkit-scrollbar {
  width: 0;
}

.market-data::-webkit-scrollbar-track {
  background-color: unset;
}

.market-data::-webkit-scrollbar-thumb {
  background-color: unset;
}

.market-data::-webkit-scrollbar-thumb:hover {
  background-color: unset;
}
/* Market data end*/

/* About section */
#about {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  padding-block: 30px 100px;
}
#about .about-us-section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
#about .about-us-section .about-us {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
#about h1 {
  font-size: var(--fos-1);
  font-weight: 800;
  color: var(--txt-wt);
  font-family: "Quicksand", sans-serif;
}
#about p {
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--txt-lt);
}
#about .about-us-section .about-img {
  max-width: 45%;
  width: 100%;
  height: 600px;
  border-radius: 12px;
  overflow: hidden;
}
#about .about-us-section .about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--t-speed);
}
@keyframes transX {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-20px);
  }
}
#about .why-us {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#about .why-us .active-tools {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 2.5rem;
}
#about .why-us .active-tools .tools-area {
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#about .why-us .active-tools .tools-area .tool-img {
  width: 60px;
  height: 60px;
  overflow: hidden;
}
#about .why-us .active-tools .tools-area .tool-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#about .why-us .active-tools .tools-area:hover .tool-img img {
  animation: shake 500ms;
}
.how-to-invest {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
}
.how-to-invest h1 {
  text-align: center;
}
.how-to-invest .guide {
  max-width: 70%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
  margin-top: 4rem;
}
.how-to-invest .guide .guide-div {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  z-index: 1;
}
.how-to-invest .guide .guide-div::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  left: 25px;
  bottom: -30px;
  background: var(--background-green);
  z-index: -1;
}
.how-to-invest .guide .guide-div:last-child::before {
  display: none;
}
.how-to-invest .guide .guide-div .step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--background-green);
  color: var(--txt-lt);
  font-size: 30px;
  font-weight: 800;
  font-family: "Quicksand", sans-serif;
}
.how-to-invest .guide .guide-div .steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.how-to-invest .guide .guide-div .steps h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--txt-wt);
}
#about .how-to-invest .guide .guide-div .steps p {
  text-align: left;
}
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-5px);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(-5px);
  }
  80% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
#about .why-us .active-tools .tools-area h4 {
  width: 100%;
  color: var(--txt-wt);
  font-weight: 600;
  font-size: 1.5em;
}
#about .why-us .active-tools .tools-area p {
  max-width: 100%;
}
#about .why-us p {
  text-align: center;
  max-width: 60%;
}

/* video */
.video-exp {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.video-container {
  position: relative;
  max-width: 800px;
  width: 100%;
  height: 100%;
  margin: 1rem auto;
  background: #fff;
  box-shadow: -5px -5px 10px rgba(0, 0, 0, 0.1), 5px 5px 10px rgba(0, 0, 0, 0.1);
}
.controls button {
  background: none;
  border: none;
}
.video-container.full-screen {
  position: fixed;
  top: 0;
  max-width: 100%;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

video {
  width: 100%;
  height: 100%;
}
.controls input,
.controls select {
  outline: none;
}

.controls {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
  padding: 10px;
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 500;
  gap: 10px;
  bottom: 0;
  left: 0;
  right: 0;
  transition: opacity 1s ease;
}
.controls i {
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
}

.progress-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.progress-bar {
  flex: 1;
  height: 6px;
  background-color: #ddd;
  position: relative;
  cursor: pointer;
  border-radius: 15px;
}
.progress-bar:hover .progress::after {
  opacity: 1;
}

.progress {
  position: relative;
  height: 100%;
  width: 0;
  background-color: var(--background-green);
}
.progress::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: var(--background-green);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #fff;
  opacity: 0;
  transition: var(--t-speed);
}

.speed-control {
  position: absolute;
  right: 10px;
  bottom: 70px;
  background: #fff;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  gap: 15px;
  color: black;
  display: none;
}
.speed-control span {
  padding: 8px;
  background: var(--background-green);
  font-weight: 600;
  box-shadow: -5px -5px 10px rgba(0, 0, 0, 0.1), 5px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: inherit;
  cursor: pointer;
}
.simple-control {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
.func-control {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.play-control {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.play-control .play-pause {
  font-size: 25px;
}
.volume {
  width: 40%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.controls input[type="range"] {
  height: 4px;
  max-width: 45px;
  accent-color: var(--background-green);
  cursor: grab;
  transform: scale(0);
  transform-origin: left;
  transition: all 500ms ease;
}
.controls .volume:hover input[type="range"] {
  transform: scale(1);
}
.controls input[type="range"]:focus {
  cursor: grabbing;
}
/* video end */
/* about end */

/* plan */
#plan {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  padding-block: 30px 100px;
}
#plan h1 {
  width: 100%;
  text-align: center;
  font-size: var(--fos-1);
  font-weight: 800;
  color: var(--txt-wt);
  font-family: "Quicksand", sans-serif;
  text-transform: uppercase;
}
#plan p {
  text-align: center;
  font-size: 18px;
  max-width: 60%;
  font-weight: 600;
  color: var(--txt-lt);
}
#plan .plans {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}
#plan .plans .plan {
  position: relative;
  max-width: 360px;
  width: 100%;
  padding: 30px 20px;
  background: var(--header-scroll);
  border-radius: 8px;
  transition: var(--t-speed);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--ibox);
  /* font-family: "Roboto", sans-serif; */
}
#plan .plans .plan .details {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
#plan .plans .plan .details .amount {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
#plan .plans .plan .details .amount .p-data {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  gap: 0.2rem;
  padding: 0 10px;
}
#plan .plans .plan .details .amount .p-data.max {
  justify-content: flex-end;
}
#plan .plans .plan .details .amount .p-data sup {
  color: var(--txt-ltb);
}
#plan .plans .plan .details .amount .p-data .min-step,
#plan .plans .plan .details .amount .p-data .max-step {
  font-size: 1.7em;
  font-weight: 900;
  font-family: "Quicksand", sans-serif;
  color: var(--txt-wt);
}
#plan .plans .plan .details .duration {
  width: 100%;
  text-align: left;
  font-weight: 700;
  font-size: 1.3em;
  color: var(--txt-wt);
}
#plan .plans .plan .details h2 {
  font-size: 1.3em;
  font-weight: 800;
  color: var(--background-green);
}
#plan .plans .plan .infos {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2rem;
  gap: 1rem;
}
#plan .plans .plan .infos .info {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
#plan .plans .plan .infos .info b {
  min-width: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(0, -50%);
  color: var(--txt-lt);
}
#plan .plans .plan .infos .info .check {
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-weight: 700;
  font-size: 8px;
  color: var(--txt-wt);
  background: var(--background-green);
  padding: 6px;
}
#plan .plans .plan .infos .info .times {
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-weight: 700;
  font-size: 10px;
  background: var(--presian-red);
  color: var(--txt-wt);
  padding: 6px;
}
#plan .plans .plan .infos .info p {
  color: var(--txt-wt);
  font-weight: 600;
  font-size: 14px;
  max-width: 100%;
}
#plan .plans .plan button {
  margin-top: 1rem;
  width: 100%;
  padding: 0.75em 10px;
  background: transparent;
  color: var(--txt-wt);
  background: var(--background-green);
  border: 1px solid var(--background-green);
  outline: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t-speed);
}
#plan .plans .plan button:hover {
  letter-spacing: 1.5px;
  transform: scale(1.1);
  -webkit-box-shadow: 1px -3px 51px -4px var(--background-green);
  -moz-box-shadow: 1px -3px 51px -4px var(--background-green);
  box-shadow: 1px -3px 51px -4px var(--background-green);
}
.calculate-invest {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}
.calculate-invest .calc-text {
  max-width: 50%;
  width: 100%;
}
#plan .calculate-invest .calc-text h1 {
  text-transform: capitalize;
}
.calculate-invest .calc-form {
  max-width: 35%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.calculate-invest .calc-form form {
  width: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--txt-wt);
  background: var(--header-scroll);
  gap: 1rem;
  border-radius: 4px;
  box-shadow: var(--btn-shadow);
}
.calculate-invest .calc-form form label {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  align-items: flex-start;
  gap: 0.5rem;
}
.calculate-invest .calc-form form label h4 {
  color: var(--txt-wt);
  font-weight: 800;
  font-size: 1.1em;
}
.calculate-invest .calc-form form label input,
.calculate-invest .calc-form form label select {
  width: 100%;
  border: 1px solid #ffffff13;
  outline: none;
  height: 40px;
  border-radius: 4px;
  padding: 10px;
  font-weight: 700;
  font-size: 14px;
  transition: var(--t-speed);
}
.calculate-invest .calc-form form label input {
  color: var(--blue-crayola);
  background: var(--input);
  height: 45px;
  border-radius: 4px;
}
.calculate-invest .calc-form form label input:focus,
.calculate-invest .calc-form form label select:focus {
  border: 1px solid var(--blue-crayola);
}
.calculate-invest .calc-form form .irates {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
#plan .calculate-invest .calc-form form p {
  color: var(--txt-ltb);
  max-width: 100%;
}
/* plan end */

/* contact */
#contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 30px 100px;
  margin-top: 2rem;
}
#contact .contact-header {
  max-width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#contact h1 {
  color: var(--txt-wt);
  font-size: var(--fos-1);
  text-align: left;
}
#contact p {
  color: var(--txt-lt);
  font-size: 18px;
  font-weight: 600;
}
.map-location {
  max-width: 60%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}
#contact .map-location p {
  font-size: 16px;
}
.map-location .map-head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.map-location h4 {
  font-size: 1.3em;
  color: var(--background-green);
}
.map-location .main-map {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
}
.map-location .main-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.map-location .map-address {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.contact-form {
  max-width: 80%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  font-family: "Roboto", sans-serif;
}
.contact-form .left {
  max-width: 45%;
}
.contact-form .right {
  flex: 1;
}
.contact-form .right form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 15px;
  background: var(--header-scroll);
  gap: 1rem;
  border-radius: 8px;
  /* box-shadow: var(--btn-shadow); */
}
.contact-form .right form .form-control {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.contact-form .right form .form-control.double {
  flex-wrap: nowrap;
}
.contact-form .right form .form-control .ep {
  width: 48%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.contact-form .right form .form-control label {
  width: 100%;
  text-align: left;
  color: var(--txt-wt);
  font-weight: 700;
  font-size: 16px;
}
.contact-form .right form .form-control input {
  width: 100%;
  height: 50px;
  background: var(--input);
  color: var(--txt-wt);
  border: none;
  border-radius: 6px;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ffffff13;
  outline: none;
  font-family: "Roboto", sans-serif;
}
.contact-form .right form .form-control textarea {
  width: 100%;
  height: 135px;
  background: var(--input);
  color: var(--txt-wt);
  border: none;
  border-radius: 6px;
  padding: 10px;
  font-size: 14px;
  outline: none;
  resize: none;
  border: 1px solid var(--ibox);
  font-family: "Roboto", sans-serif;
}
.contact-form .right form button {
  width: 40%;
  padding: 0.75rem 6px;
  border-radius: 6px;
  background: var(--background-green);
  color: var(--txt-wt);
  font-weight: 600;
  font-size: 16px;
  border: none;
  outline: none;
  transition: var(--t-speed);
}
.contact-form .right form button:hover {
  -webkit-box-shadow: 1px -3px 51px -4px var(--depp-blue);
  -moz-box-shadow: 1px -3px 51px -4px var(--depp-blue);
  box-shadow: 1px -3px 51px -4px var(--depp-blue);
  transform: scale(1.1);
}

.contact-form .left .form-head {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.contact-form .left .contact-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
}
.contact-form .left .contact-info .info-box {
  position: relative;
  padding: 15px;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--header-scroll);
  border-radius: 10px;
}
.contact-form .left .contact-info .info-box h4 {
  color: var(--txt-wt);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.2px;
}
.contact-form .left .contact-info .info-box i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  color: #d2cbf0;
  animation: transX 5s ease-in-out infinite;
}
.contact-form .left .contact-info .info-box:hover i {
  animation-play-state: paused;
}
.contact-form .left h3 {
  font-size: 2em;
  color: var(--txt-wt);
}
/* contact end */

/* minimal action */
.minimal-content {
  background: radial-gradient(
      79.69% 102.24% at 100% 100.11%,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(
      89.7% 115.09% at 3.43% 2.75%,
      rgba(255, 255, 255, 0.7),
      rgba(255, 255, 255, 0)
    ),
    var(--background-green);
  background-blend-mode: overlay, overlay, normal;
  color: var(--txt-bk);
  max-width: 100%;
  width: 100%;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 3.5rem auto;
  margin-bottom: 0px;
  font-family: "Quicksand", sans-serif;
}
.minimal-content .minimal-txt,
.minimal-content .minimal-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
}
.minimal-content .minimal-txt h4 {
  font-size: 25px;
  font-weight: 800;
  color: var(--txt-lt);
}
.minimal-content p {
  font-weight: 600;
  font-size: 16px;
  color: var(--txt-lt);
}
.minimal-content button {
  padding: 0.75rem 10px;
  border-radius: 6px;
  background: var(--txt-lt);
  color: var(--background-green);
  font-weight: 600;
  font-size: 16px;
  border: none;
  outline: none;
  transition: var(--t-speed);
}
.minimal-content button:hover {
  -webkit-box-shadow: 1px -3px 51px -4px var(--background-bk);
  -moz-box-shadow: 1px -3px 51px -4px var(--background-bk);
  box-shadow: 1px -3px 51px -4px var(--background-bk);
  transform: scale(1.1);
}
/* minimal end */

/* footer */
footer {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: radial-gradient(
      79.69% 102.24% at 100% 100.11%,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(
      89.7% 115.09% at 3.43% 2.75%,
      rgba(255, 255, 255, 0.7),
      rgba(255, 255, 255, 0)
    ),
    var(--header-scroll);
  background-blend-mode: overlay, overlay, normal;
  padding: 50px;
  z-index: 1;
  font-family: "Quicksand", sans-serif;
}
footer .logo strong {
  color: var(--txt-wt);
}
footer .footer-contents {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
}
footer .footer-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}
footer .footer-right {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 70%;
  width: 100%;
}
footer .footer-right p,
footer .footer-right a {
  color: var(--txt-lt);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--t-speed);
}
footer .footer-right a:hover {
  color: var(--txt-wt);
  letter-spacing: 1.2px;
}
footer .footer-right p:hover {
  color: var(--txt-wt);
}
footer .footer-right .imp-links {
  max-width: 48%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
footer .footer-right .contact-details {
  max-width: 48%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
footer .footer-right .contact-details .c-d {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
footer .footer-right .contact-details .c-d i {
  color: var(--txt-wt);
}
footer .footer-right h4 {
  text-transform: uppercase;
  color: var(--background-green);
  font-size: 20px;
}
footer .footer-right .imp-links .i-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
footer hr {
  margin: 1rem 0;
}
footer .copy-right {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}
footer .copy-right p,
footer .copy-right small {
  color: var(--txt-lt);
  font-size: 16px;
}
footer .copy-right h4 {
  font-weight: 700;
  color: var(--txt-wt);
}
footer .copy-right .c-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer .copy-right .c-right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
}
/* footer end */
/* account form */
.account-registration-area {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  z-index: 10002;
  overflow-x: hidden;
  overflow-y: scroll;
  font-family: "Quicksand", sans-serif;
  scrollbar-width: 0;
}
.account-registration-area::-webkit-scrollbar {
  width: 0;
}
.account-registration-area .close-area {
  position: fixed;
  right: 10px;
  top: 10px;
  background: var(--background-wt);
  color: var(--background-green);
  font-size: 20px;
  font-weight: 800;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 10;
}
.account-registration-area .account-form {
  max-width: 480px;
  width: 100%;
}
.account-registration-area .account-form form {
  width: 100%;
  display: none;
  flex-direction: column;
  gap: 2rem;
  background: var(--header-scroll);
  padding: 15px;
  border-radius: 8px;
}
.account-registration-area .account-form form .inputs,
.account-registration-area .account-form form .form-head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.account-registration-area .account-form form h2 {
  width: 100%;
  text-align: left;
  font-size: 40px;
  color: var(--txt-wt);
}
.account-registration-area .account-form form p {
  font-size: 18px;
  color: var(--txt-lt);
  font-weight: 600;
}
.account-registration-area .account-form form .input-area {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.account-registration-area .account-form form .input-area label {
  font-size: var(--fos);
  color: var(--txt-lt);
  width: 100%;
  text-align: left;
}
.account-registration-area .account-form form .input-area .label {
  position: absolute;
  left: 12px;
  top: 5px;
  color: var(--txt-ltb);
}
.account-registration-area .account-form form .input-area input,
.account-registration-area .account-form form .input-area select {
  width: 100%;
  height: 55px;
  border: 1px solid var(--ibox);
  padding: 15px;
  color: var(--txt-wt);
  background: var(--input);
  font-size: 16px;
  border-radius: 6px;
  font-family: "Quicksand", sans-serif;
}
.account-registration-area .account-form form .input-area input {
  background: var(--input);
}
.account-registration-area .account-form form .input-area input[type="text"],
.account-registration-area
  .account-form
  form
  .input-area
  input[type="password"] {
  padding: 30px 15px 15px 15px;
}
.account-registration-area .account-form .showpass {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.account-registration-area .account-form .showpass {
  font-size: 16px;
  color: var(--txt-ltb);
}
.account-registration-area .account-form .showpass input {
  accent-color: var(--background-green);
  width: 20px;
  height: 20px;
}
.account-registration-area .account-form button {
  padding: 0.75rem 10px;
  padding: 0.75rem 6px;
  border-radius: 6px;
  background: var(--background-green);
  color: var(--txt-wt);
  font-weight: 600;
  font-size: 16px;
  border: none;
  outline: none;
  transition: var(--t-speed);
  font-family: "Quicksand", sans-serif;
}
.account-registration-area .account-form button:hover {
  -webkit-box-shadow: 1px -3px 51px -4px var(--background-green);
  -moz-box-shadow: 1px -3px 51px -4px var(--background-green);
  box-shadow: 1px -3px 51px -4px var(--background-green);
}
.account-registration-area .account-form a {
  color: var(--background-green);
  text-decoration: none;
}
.account-registration-area .account-form img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
  object-position: top;
  display: none;
}
.accept-terms {
  color: var(--txt-wt);
  font-weight: 500;
  font-size: 16px;
}
/* data section animation */
.data-section > * {
  transform: translateY(50px);
  opacity: 0;
  transition: 1s ease;
}

.data-section.active > * {
  opacity: 1;
  transform: translateY(0);
}
/* data section end */

/* transactions */
.transactions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  padding: 20px;
  font-family: "Quicksand", sans-serif;
}
.transactions .d-table {
  position: relative;
  display: block;
  max-width: 60%;
  width: 100%;
  max-height: 250px;
  height: 100%;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  resize: none;
}
.transactions .d-table::-webkit-scrollbar {
  display: none;
}
.transactions table {
  width: 100%;
  height: 100%;
}
.transactions table thead,
.transactions table tbody {
  width: 100%;
  text-align: left;
}
.transactions table thead th {
  border-top: 0;
  border-color: var(--background-wt);
  border-bottom: 2px solid var(--background-wt);
  padding: 10px;
  color: var(--txt-wt);
  font-size: 18px;
  font-weight: 600;
}
.transactions table tbody td {
  border-top: 0;
  border-color: var(--background-wt);
  border-bottom: 1px solid var(--ibox);
  padding: 10px;
  color: var(--txt-wt);
  font-size: 14px;
  font-weight: 600;
}
.transactions table tbody td.lite {
  font-weight: 500;
}
.transactions h1 {
  font-size: var(--fos-1);
  color: var(--txt-wt);
  font-weight: 800;
  text-align: center;
}
.transactions p {
  color: var(--txt-lt);
  font-weight: 600;
  font-size: 18px;
  text-align: center;
}
/* transaction end */
/* faq */

.faq-page {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Quicksand", sans-serif;
  transition: all 5000s ease-in-out;
  z-index: 1;
}
.faq-page .faq-top {
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/faq.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 20px;
}
.faq-page .faq-top h1 {
  color: var(--txt-wt);
  width: 100%;
  text-align: center;
  font-size: var(--fos-1);
  font-weight: 800;
}
.faq-page .faq-top p {
  width: 100%;
  text-align: center;
  color: var(--txt-lt);
  font-size: 18px;
  font-weight: 500;
}
.faq-page .faq-body {
  width: 100%;
  padding: 20px 20px 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: var(--background-bk);
}
.faq-page .faq-body .faq {
  max-width: 90%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-page .faq-body .faq {
  transition: all 500ms ease-in-out;
}
.faq-page .faq-body .faq hr {
  margin: 10px 0;
  height: 2px;
  background: var(--header-scroll);
}
.faq-page .faq-body .faq.active hr {
  background: var(--background-wt);
}
.faq-page .faq-body .faq .quest-collapse {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-page .faq-body .faq .quest-collapse h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--txt-lt);
  opacity: 0.2;
  transition: all 0.5s;
}
.faq-page .faq-body .faq .quest-collapse h4.active {
  color: var(--txt-wt);
  opacity: 1;
}
.faq-page .faq-body .faq .quest-collapse i {
  transition: all 0.5s;
  color: var(--txt-ltb);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}
.faq-page .faq-body .faq .quest-collapse i:hover {
  color: var(--txt-wt);
}
.faq-page .faq-body .faq p {
  max-height: 0px;
  width: 100%;
  font-size: 18px;
  color: var(--txt-lt);
  font-weight: 600;
  overflow: hidden;
  opacity: 0.2;
  transition: all 0.5s;
}
.faq-page .faq-body .faq p.active {
  max-height: 500px;
  opacity: 1;
}
/* faq end */
/* dotted */
.dotted {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.dotted .dot {
  width: 8px;
  height: 12px;
  background: var(--background-green);
  transform: rotate(10deg);
  /* animation: width 3s linear infinite; */
}
.dotted .dot:nth-child(1) {
  animation-delay: 0.5s;
}
.dotted .dot:nth-child(2) {
  animation-delay: 0.7s;
}
.dotted .dot:nth-child(3) {
  animation-delay: 0.9s;
}
/* password reset */

@keyframes width {
  0%,
  100% {
    height: 0;
  }

  50% {
    height: 12px;
  }
}
.dotted p {
  flex: 1;
}
@keyframes transX {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}
@media screen and (max-width: 900px) {
  header nav ul,
  header nav .call-to {
    display: none;
  }
  header .menu-bar {
    display: block;
  }
  #about .about-us-section .about-img,
  #about .about-us-section .about-us {
    max-width: 100%;
  }
  #about .about-us-section .about-us {
    align-items: center;
  }
  #about p {
    text-align: center;
  }
  #plan p {
    max-width: 100%;
  }

  #about .why-us p {
    text-align: center;
    max-width: 90%;
  }
  .how-to-invest .guide {
    max-width: 100%;
  }
  .calculate-invest .calc-text {
    max-width: 100%;
    text-align: center;
  }
  .calculate-invest .calc-form {
    max-width: 50%;
  }
  .map-location {
    max-width: 100%;
  }
  .contact-form {
    max-width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .home h1,
  .home p {
    max-width: 100%;
  }
  header nav {
    padding: 8px 20px;
  }
  header nav ul,
  header nav .call-to {
    display: none;
  }
  :root {
    --fos-1: 3rem;
  }
  #market-data p {
    max-width: 100%;
  }
  .contact-form .left {
    max-width: 100%;
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
  }
  .contact-form .right form .form-control .ep {
    width: 100%;
    flex-wrap: wrap;
  }
  .contact-form .right form .form-control.double {
    flex-wrap: wrap;
  }
  footer .footer-right .imp-links,
  footer .footer-right .contact-details {
    max-width: 100%;
  }
  footer .footer-right {
    max-width: 100%;
    gap: 30px;
  }
  .transactions .d-table {
    max-width: 100%;
  }
  .faq-page .faq-body .faq {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .hero-banner {
    max-width: max-content;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .calculate-invest .calc-form {
    max-width: 70%;
  }
  footer .copy-right {
    justify-content: center;
  }
  footer .copy-right .c-left {
    align-items: center;
  }
}

@media screen and (max-width: 600px) {
  :root {
    --fos-1: 35px;
  }
  .home p {
    font-size: 16px;
  }
  #market-data p {
    font-size: 16px;
  }
  #about p {
    font-size: 16px;
  }
  #plan p {
    font-size: 16px;
  }
  .calculate-invest .calc-form {
    max-width: 100%;
  }
  /* #plan .plans .plan {
    max-width: 300px;
  } */
  #contact .contact-header {
    max-width: 100%;
  }
  #contact p,
  .transactions p,
  .account-registration-area .account-form form p {
    font-size: 16px;
  }
  .contact-form .right form button {
    width: 100%;
  }
  .faq-page .faq-body .faq p {
    font-size: 16px;
  }
  footer {
    padding: 20px;
  }
  footer .copy-right {
    justify-content: center;
  }
}
@media screen and (max-width: 500px) {
  .account-registration-area {
    padding: 0;
  }
  .account-registration-area .account-form {
    max-width: 100%;
  }
}
