@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
body {
  background-color: #f3f2f1;
  color: #362B48;
}

.m-1 {
  margin: 1rem;
}

.my-1 {
  margin: 1rem 0;
}

.mx-1 {
  margin: 0 1rem;
}

.p-1 {
  padding: 1rem;
}

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

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

.m-2 {
  margin: 2rem;
}

.my-2 {
  margin: 2rem 0;
}

.mx-2 {
  margin: 0 2rem;
}

.p-2 {
  padding: 2rem;
}

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

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

.m-3 {
  margin: 3rem;
}

.my-3 {
  margin: 3rem 0;
}

.mx-3 {
  margin: 0 3rem;
}

.p-3 {
  padding: 3rem;
}

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

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

.m-4 {
  margin: 4rem;
}

.my-4 {
  margin: 4rem 0;
}

.mx-4 {
  margin: 0 4rem;
}

.p-4 {
  padding: 4rem;
}

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

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

.m-5 {
  margin: 5rem;
}

.my-5 {
  margin: 5rem 0;
}

.mx-5 {
  margin: 0 5rem;
}

.p-5 {
  padding: 5rem;
}

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

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

.bg-info {
  background-color: rgba(82, 82, 209, 0.85);
  color: #fff;
}

#completion {
  background: #fafafa;
  aspect-ratio: 1/1;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#completion circle {
  stroke-width: 20;
  stroke-dasharray: 314.16;
  fill: none;
  stroke: rgba(89, 39, 229, 0.2);
}
#completion text {
  fill: rgba(54, 43, 72, 0.7);
  text-anchor: middle;
  font-size: 1.6rem;
  font-weight: bold;
}
#completion #pie {
  stroke-width: 20;
  stroke-dasharray: 314.16;
  fill: none;
  stroke: rgba(89, 39, 229, 0.5);
  animation: strokeIn 3.5s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}
@keyframes strokeIn {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: auto;
  }
}

#sum_canvas {
  background: rgba(89, 39, 229, 0.03);
  padding-top: 1em;
  width: 100%;
  height: 100px;
  display: flex;
  flex-grow: 1;
}

g {
  animation: loaded 1.5s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}
g line {
  stroke: rgba(89, 39, 229, 0.05);
}

#bar-chart line {
  stroke-width: 40px;
  stroke: rgba(89, 39, 229, 0.3);
  animation: loaded 1.5s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
  animation-delay: 150ms;
}
@keyframes loaded {
  0% {
    transform: translateY(200%);
  }
  100% {
    transform: translateY(0);
  }
}

#graph-line {
  width: 100%;
  height: 120px;
  padding-top: 1em;
  animation: strokeLine 1s ease-in forwards;
}
#graph-line line {
  stroke: rgba(89, 39, 229, 0.3);
  stroke-width: 2;
}
@keyframes strokeLine {
  0% {
    stroke-dasharray: 0;
  }
  100% {
    stroke-dasharray: 0;
  }
}

.files-up button, div.add-info button, .disp-info button, .contact-section input[type=submit], .left-col .get-started {
  width: unset;
  padding: 1.1em 3em;
  font-weight: 600;
  margin: 0.25rem;
  border: none;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
.files-up button:hover, div.add-info button:hover, .disp-info button:hover, .contact-section input[type=submit]:hover, .left-col .get-started:hover {
  transform: scale(1.02);
}

section.signup-section .signup-div form button[type=submit],
section.signup-section .signup-div form input[type=submit], section.signup-section .signup-div form > div.input-div div:not(div.input-stack) select, section.signup-section .signup-div form > div.input-div div:not(div.input-stack) input, section.login-section .login-div form input[type=submit], section.login-section .login-div form > div div input, form input[type=submit], form div.input-form div:not(div.input-stack) select, form div.input-form div:not(div.input-stack) input {
  width: auto;
  padding: 0.8em 1.5em;
  line-height: 2;
  border-radius: 0.25em;
  border: 0;
}
section.signup-section .signup-div form button[type=submit]:focus,
section.signup-section .signup-div form input[type=submit]:focus, section.signup-section .signup-div form > div.input-div div:not(div.input-stack) select:focus, section.signup-section .signup-div form > div.input-div div:not(div.input-stack) input:focus, section.login-section .login-div form input[type=submit]:focus, section.login-section .login-div form > div div input:focus, form input[type=submit]:focus, form div.input-form div:not(div.input-stack) select:focus, form div.input-form div:not(div.input-stack) input:focus {
  border: none;
  outline: none;
}

.dd-btn {
  width: unset;
  border: none;
  background-color: unset;
  color: inherit;
  margin: 0;
  cursor: pointer;
}

.txt-centered {
  text-align: center;
  text-decoration: none;
}

.txt-small {
  font-size: 0.75rem;
}

.txt-large {
  font-size: 1.25rem;
}

.txt-xlarge {
  font-size: 1.5rem;
}

.centered {
  display: flex;
  place-content: center;
}

.m-left {
  margin-left: 1rem;
}

.width-full {
  width: 100%;
}

.flexxy {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.flexxy > * {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 1;
}

.fx {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.fx-row {
  display: flex;
  flex-direction: row;
}

.fx-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fx-aln-cent {
  align-items: center;
}

.fx-aln-self-cent {
  align-self: center;
}

.fx-sb {
  justify-content: space-between;
}

.fx-end {
  justify-content: flex-end;
}

.fx-center {
  justify-content: center;
}

.fx-self-center {
  place-self: center;
  justify-self: center;
}

.fx-self-end {
  place-self: center;
  justify-self: center;
}

.fx-gap {
  gap: 1rem;
}

.img-sm {
  height: 60px;
  width: auto;
}

.img-md {
  height: 90px;
  width: auto;
}

.img-lg {
  height: 120px;
  width: auto;
}

.input-txt {
  padding: 1em 1.25em;
  border: 0;
  background-color: #e5e3e1;
  color: #362B48;
}
.input-txt::-moz-placeholder {
  color: rgba(82, 82, 209, 0.85);
}
.input-txt::placeholder {
  color: rgba(82, 82, 209, 0.85);
}

.input-long {
  width: min(600px, 100%);
}

.fnt-large {
  font-size: 1.25rem;
}

.padd-xs {
  padding: 0.75em;
}

form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
form div.required-input label::after {
  content: "*";
  color: #5927e5;
  font-size: 1.15rem;
}
form div.input-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
form div.input-form label {
  font-weight: bold;
  font-size: 1.1em;
  background-color: unset;
}
form div.input-form .input-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
form div.input-form div:not(div.input-stack) {
  background-color: #f2f2f2;
  display: flex;
  border-radius: 0.35rem;
}
form div.input-form div:not(div.input-stack) input {
  background-color: unset;
  width: 100%;
}
form div.input-form div:not(div.input-stack) input:focus {
  background-color: #e6e6e6;
}
form div.input-form div:not(div.input-stack) input:focus ~ i {
  background-color: #e6e6e6;
}
form div.input-form div:not(div.input-stack) select {
  background-color: unset;
  width: 100%;
}
form div.input-form div:not(div.input-stack) select option {
  padding: 0.8em 1.5em;
}
form div.input-form div:not(div.input-stack) select:focus {
  background-color: #e6e6e6;
}
form div.input-form div:not(div.input-stack) > * {
  flex-grow: 1;
}
form div.input-form div:not(div.input-stack) i {
  padding: 0.8em 1em;
}
form .hyper-signup {
  background-color: #e7e5e3;
  padding: 1em;
  border-radius: 3rem;
  font-weight: 600;
}
form input[type=submit] {
  background-color: #362B48;
  color: #fff;
  border-radius: 0.35rem;
  font-weight: 600;
  cursor: pointer;
}
form input[type=submit]:hover {
  background-color: #3c15ab;
}

div.pin-group {
  display: flex;
  gap: 1rem;
}
div.pin-group input.with-pin {
  width: 4rem;
  aspect-ratio: 1/1;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  border: 0;
  background-color: #e5e3e1;
  color: #362B48;
}
div.pin-group input.with-pin::-moz-placeholder {
  color: rgba(82, 82, 209, 0.85);
}
div.pin-group input.with-pin::placeholder {
  color: rgba(82, 82, 209, 0.85);
}

.input-grp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  background-color: #f1f1f1;
  color: #333;
  padding: 0.3em;
  border: 1px solid #dbdbdb;
}
.input-grp:focus-within {
  outline: 1px solid #362B48;
}
.input-grp small, .input-grp p {
  font-weight: bold;
  color: rgba(82, 82, 209, 0.85);
}
.input-grp input {
  outline: 0;
  padding: 0;
  font-size: 1rem;
  background-color: transparent;
  color: inherit;
}
.input-grp button {
  background-color: #dbdbdb;
  color: #333;
  font-weight: bold;
  font-size: 0.85em;
  width: -moz-fit-content;
  width: fit-content;
  flex-basis: 100%;
}

span.error-info {
  display: flex;
  justify-content: flex-end;
  font-size: 0.9rem;
  border-left: 2px solid rgba(209, 82, 82, 0.85);
  background-color: rgba(246, 223, 223, 0.85);
  color: #362B48;
  vertical-align: middle;
}
span.error-info i {
  margin-left: 0.25em;
  margin-right: 0.5em;
  font-size: 1.2rem;
  color: rgba(209, 82, 82, 0.85);
}
span.error-info span {
  text-align: right;
  padding: 0.25em;
  animation-fill-mode: both;
}
@keyframes slideLeft {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 100;
  }
}

span.success-info {
  display: flex;
  justify-content: flex-end;
  font-size: 1rem;
  border-right: 2px solid rgba(82, 209, 82, 0.85);
  background-color: rgba(223, 246, 223, 0.85);
  color: #362B48;
  vertical-align: middle;
}
span.success-info i {
  margin-left: 0.25em;
  margin-right: 0.5em;
  font-size: 1.2rem;
  color: rgba(82, 209, 82, 0.85);
}
span.success-info span {
  text-align: right;
  padding: 0.25em;
  animation-fill-mode: both;
}
@keyframes slideLeft {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 100;
  }
}

.form-message {
  justify-self: center;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 1rem auto;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 5rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.2em 2em;
  z-index: 99999;
  opacity: 0;
}
.form-message.error-inf {
  background-color: rgba(209, 82, 82, 0.85);
  color: #fff;
  animation: slideDown 2s ease-in-out;
}
@keyframes slideDown {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  20% {
    transform: translateY(-15px);
    opacity: 0.5;
  }
  30% {
    transform: translateY(0);
    opacity: 1;
  }
  80% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(50px);
    opacity: 0;
  }
}
.form-message.success-inf {
  background-color: rgba(82, 209, 82, 0.85);
  color: #fff;
  animation: slideDown 2s ease-in-out;
}
@keyframes slideDown {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  20% {
    transform: translateY(-15px);
    opacity: 0.5;
  }
  30% {
    transform: translateY(0);
    opacity: 1;
  }
  80% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(50px);
    opacity: 0;
  }
}

.msg-important {
  padding: 1em 1em;
  font-size: 0.9em;
  display: flex;
  border-radius: 0.35rem;
  background-color: #362B48;
  color: #fff;
  color: #fce2c1;
  margin: 1rem 0;
}

input[type=submit]:disabled, button:disabled {
  cursor: default;
  opacity: 0.5;
}
input[type=submit]:disabled:hover, button:disabled:hover {
  cursor: default;
  pointer-events: none;
}

.btn-func {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em 1em;
  border-radius: 0.25rem;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

.btn-submit {
  min-width: 200px;
  width: min(300px, 80%);
  background-color: #5927e5;
  color: #fff;
  padding: 1em;
  border-radius: 0.25rem;
  border: 0;
  cursor: pointer;
}

.input-error {
  outline: 2px solid #f7685b !important;
}

.input-success {
  outline: 2px solid #29cc97 !important;
}

div#loader {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  background: transparent url(../images/loading-buffering.gif) no-repeat center center;
  background-size: max(3%, 25px);
}

.modal-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(68, 68, 68, 0.7);
  padding: 2em;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  display: none;
}
.modal-wrapper .modal-container {
  display: flex;
  flex-direction: column;
  background-color: #3f3260;
  color: #fff;
  padding: 1.4em;
  border-radius: 1em;
  min-width: 300px;
  width: min(400px, 100%);
  gap: 1rem;
  margin: 0 auto;
  border-radius: 1rem;
  box-shadow: 1px 2px 10px 6px rgba(255, 255, 255, 0.05);
}
.modal-wrapper .modal-container .btn-func {
  background-color: #382d56;
  color: #fff;
}
.modal-wrapper .modal-container .header {
  text-align: center;
  font-weight: 600;
  margin-bottom: 1rem;
}
.modal-wrapper .modal-container .modal-inputs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 4em;
  border-bottom: 1px dashed #bdbdbd;
}
.modal-wrapper .modal-container .modal-inputs input, .modal-wrapper .modal-container .modal-inputs select {
  background-color: #4a3b71;
  color: #fff;
  width: 100%;
  border-radius: 0.25rem;
  padding: 1em;
  outline: none;
}
.modal-wrapper .modal-container .modal-inputs input:focus-visible, .modal-wrapper .modal-container .modal-inputs select:focus-visible {
  background-color: #34294f;
  color: #fff;
}
.modal-wrapper .modal-container .modal-inputs input::-moz-placeholder, .modal-wrapper .modal-container .modal-inputs select::-moz-placeholder {
  color: #bdbdbd;
}
.modal-wrapper .modal-container .modal-inputs input::placeholder, .modal-wrapper .modal-container .modal-inputs select::placeholder {
  color: #bdbdbd;
}
.modal-wrapper .modal-container .modal-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: slideFx 0.35s ease-in-out;
}
.modal-wrapper .modal-container .modal-content p.title {
  margin: 0;
  color: #dbdbdb;
}
.modal-wrapper .modal-container .modal-content small.desc {
  color: grey;
}
.modal-wrapper .modal-container .modal-content p.value {
  color: #ffffff;
  font-weight: 500;
  text-align: right;
  line-break: anywhere;
}
@keyframes slideFx {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.modal-wrapper .modal-container a.a-button {
  display: block;
  width: 100%;
  align-self: center;
  border-radius: 0.25em;
  padding: 1em;
  margin-top: 1rem;
  background-color: #29cc97;
  color: #fff;
  color: #333;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.scroll-fx-container {
  transform-style: preserve-3d;
}

.loader {
  position: relative;
  width: 75px;
  height: 100px;
}

.loader__bar {
  position: absolute;
  bottom: 0;
  width: 10px;
  height: 50%;
  background: #fce2c1;
  transform-origin: center bottom;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.loader__bar:nth-child(1) {
  left: 0px;
  transform: scale(1, 0.2);
  animation: barUp1 4s infinite;
}

.loader__bar:nth-child(2) {
  left: 15px;
  transform: scale(1, 0.4);
  animation: barUp2 4s infinite;
}

.loader__bar:nth-child(3) {
  left: 30px;
  transform: scale(1, 0.6);
  animation: barUp3 4s infinite;
}

.loader__bar:nth-child(4) {
  left: 45px;
  transform: scale(1, 0.8);
  animation: barUp4 4s infinite;
}

.loader__bar:nth-child(5) {
  left: 60px;
  transform: scale(1, 1);
  animation: barUp5 4s infinite;
}

.loader__ball {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  background: rgb(44, 143, 255);
  border-radius: 50%;
  animation: ball624 4s infinite;
}

@keyframes ball624 {
  0% {
    transform: translate(0, 0);
  }
  5% {
    transform: translate(8px, -14px);
  }
  10% {
    transform: translate(15px, -10px);
  }
  17% {
    transform: translate(23px, -24px);
  }
  20% {
    transform: translate(30px, -20px);
  }
  27% {
    transform: translate(38px, -34px);
  }
  30% {
    transform: translate(45px, -30px);
  }
  37% {
    transform: translate(53px, -44px);
  }
  40% {
    transform: translate(60px, -40px);
  }
  50% {
    transform: translate(60px, 0);
  }
  57% {
    transform: translate(53px, -14px);
  }
  60% {
    transform: translate(45px, -10px);
  }
  67% {
    transform: translate(37px, -24px);
  }
  70% {
    transform: translate(30px, -20px);
  }
  77% {
    transform: translate(22px, -34px);
  }
  80% {
    transform: translate(15px, -30px);
  }
  87% {
    transform: translate(7px, -44px);
  }
  90% {
    transform: translate(0, -40px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes barUp1 {
  0% {
    transform: scale(1, 0.2);
  }
  40% {
    transform: scale(1, 0.2);
  }
  50% {
    transform: scale(1, 1);
  }
  90% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 0.2);
  }
}
@keyframes barUp2 {
  0% {
    transform: scale(1, 0.4);
  }
  40% {
    transform: scale(1, 0.4);
  }
  50% {
    transform: scale(1, 0.8);
  }
  90% {
    transform: scale(1, 0.8);
  }
  100% {
    transform: scale(1, 0.4);
  }
}
@keyframes barUp3 {
  0% {
    transform: scale(1, 0.6);
  }
  100% {
    transform: scale(1, 0.6);
  }
}
@keyframes barUp4 {
  0% {
    transform: scale(1, 0.8);
  }
  40% {
    transform: scale(1, 0.8);
  }
  50% {
    transform: scale(1, 0.4);
  }
  90% {
    transform: scale(1, 0.4);
  }
  100% {
    transform: scale(1, 0.8);
  }
}
@keyframes barUp5 {
  0% {
    transform: scale(1, 1);
  }
  40% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1, 0.2);
  }
  90% {
    transform: scale(1, 0.2);
  }
  100% {
    transform: scale(1, 1);
  }
}
.card {
  transform: translateX(-150px);
  opacity: 0;
  transition: ease-in-out 0.5s;
}

.card.show {
  transform: translateX(0);
  opacity: 1;
}

.switch input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}

.switch {
  width: 4em;
  height: 2em;
  display: block;
  position: relative;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: grey;
  transition: 0.3s;
  border-radius: 1.5em;
  cursor: pointer;
}

.slider:after {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0.2em;
  width: 1.6em;
  height: 1.6em;
  background-color: white;
  border-radius: 0.8em;
  transition: 0.25s;
}

input:checked + .slider {
  background: #5927e5;
}

input:checked + .slider:after {
  left: calc(100% - 0.2em);
  transform: translateX(-100%);
}

.slider:active:after {
  width: 2.5em;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: "Roboto", "Poppins", "Nunito";
  margin: 0;
}

html {
  font-size: 13.5px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

body {
  top: 0 !important;
}

div#preloader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999999;
  background-color: #292b2c;
}

div.skiptranslate {
  display: none;
}

.translate-div {
  background-color: #222;
  color: #fff;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 1em;
  text-align: center;
  gap: 0.5rem;
}
.translate-div #language-div .goog-te-gadget {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: inherit;
  gap: 0.5rem;
  content: "";
}
.translate-div #language-div .goog-te-gadget span {
  display: none;
}
.translate-div select {
  padding: 0.5em 1em;
  background-color: transparent;
  color: inherit;
  border: 1px solid #ffffff;
  border-radius: 0.2rem;
  cursor: pointer;
}
.translate-div select option {
  background-color: #f1f1f1;
  color: #333;
}

.donate-div {
  background-color: #5927e5;
  color: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 1em;
  text-align: center;
  gap: 0.5rem;
}
.donate-div img {
  height: 2rem;
}
.donate-div button {
  padding: 0.5em 3em;
  background-color: transparent;
  color: inherit;
  border: 1px solid #ffffff;
  border-radius: 0.5rem;
  cursor: pointer;
}
.donate-div button:hover {
  background-color: #ffffff;
  color: #5927e5;
}

#main_body {
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
}

body {
  display: block;
  position: relative;
  height: auto;
  margin: 0;
  font-family: "Roboto", "Poppins", "Nunito";
}

button,
input {
  font-family: "Roboto", "Poppins", "Nunito";
}

.main {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #212224;
}

.sidekick {
  position: relative;
  width: 100%;
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  flex-direction: column;
  margin: 0;
  padding: 0;
  background-color: #333;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-blend-mode: luminosity;
  background-repeat: stretch;
  background-attachment: fixed;
  -webkit-backdrop-filter: opacity(0.15);
          backdrop-filter: opacity(0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.vid-overlay {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: overlay;
  filter: grayscale(1);
}

nav.head-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #362B48;
  color: #fff;
}
nav.head-nav ul {
  display: flex;
  gap: 0.25rem;
}
nav.head-nav ul li {
  padding: 0.5em 0.75em;
}
nav.head-nav ul li.btn-li {
  margin: 0.5rem;
  background-color: #423558;
  color: #fff;
  border-radius: 0.25em;
}
nav.head-nav ul li.btn-li:nth-child(even) {
  background-color: transparent;
  border: 2px solid #5a4878;
}
nav.head-nav ul li.btn-li a {
  display: inline-block;
  padding: 0.25em 1.5em;
  cursor: pointer;
  text-decoration: none;
}

.rest {
  position: relative;
}

.box-sh {
  box-shadow: 0px 2px 15px rgba(51, 51, 51, 0.15);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
}

.navbar {
  z-index: 999;
  padding: 0.75rem 1.5rem;
  transition: all 150ms ease-in-out;
}
.navbar .logo-type {
  aspect-ratio: 4/1;
  height: 3rem;
}
.navbar .container {
  display: flex;
  place-content: space-between;
  align-items: center;
}
.navbar .mobile-menu {
  cursor: pointer;
  font-size: 1.5rem;
  color: #ffffff;
}
.navbar .mobile-menu-exit {
  font-size: 1.5rem;
  margin: 0.75em;
  cursor: pointer;
}

.land-nav {
  position: fixed;
  z-index: 999;
  width: 100vw;
  right: 0;
  top: 0;
  background-color: #ffffff;
  color: #333;
  height: 100vh;
  padding: 1rem;
  pointer-events: none;
  opacity: 0;
  transform: translateX(4rem);
  transition: all 150ms ease-in-out;
  flex-direction: column;
  white-space: nowrap;
}
.land-nav > * {
  flex-grow: 0;
  flex-basis: 0;
}

.dropdown {
  position: relative;
}

.dropdown.active > .dropdown-link + .dropdown-menu {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.dropdown-link {
  display: flex;
  align-items: center;
}

.primary-nav {
  text-transform: capitalize;
  display: flex;
  flex-direction: column;
  border-top: 1px dashed #bdbdbd;
  margin-top: 3rem;
}
.primary-nav li.active > a {
  display: block;
  padding: 1.5em 1em;
  background-color: white;
  color: #333;
  border-radius: 0.5rem;
}
.primary-nav li > a {
  display: block;
  padding: 1.5em 1em;
  background-color: white;
  color: #333;
  border-radius: 0.5rem;
}
.primary-nav li a {
  text-decoration: none;
  position: relative;
  font-size: 1rem;
  transition: all 150ms ease-in-out;
}
.primary-nav li.get-started-form {
  display: flex;
  gap: 1rem;
  padding: 2rem 0;
  justify-content: space-evenly;
}
.primary-nav li.get-started-form a {
  text-align: center;
  border-radius: 4rem;
  padding: 1.6rem 4rem;
}
.primary-nav li.get-started-form .login {
  background-color: #2f253e;
  color: #fff;
}

.section-title {
  text-transform: capitalize;
  font-size: 2.2rem;
  text-align: center;
  color: #362B48;
  margin-bottom: 4rem;
  position: relative;
}

.section-title:after {
  position: absolute;
  display: flex;
  left: 50%;
  bottom: -0.5rem;
  height: 1rem;
  transform: translateX(-50%);
}

a {
  color: inherit;
}

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

section {
  padding: 4em 2em;
}

section.hero {
  display: flex;
  flex-direction: row;
  flex-basis: 100%;
  justify-content: center;
  flex-grow: 1;
  height: 100%;
  padding: 2em 2em;
}
section.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

#demo span {
  color: #5927e5;
}

.subhead {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1rem;
  color: #5927e5;
  letter-spacing: 0.3em;
  width: 100%;
  text-align: left;
}
.subhead::after {
  content: "";
  width: 4px;
  height: 1rem;
  background-color: grey;
  animation: blink 0.3s ease infinite;
}
@keyframes blink {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.left-col > div {
  justify-content: center;
  margin-top: 2rem;
}
.left-col h1 {
  text-align: center;
  font-size: 2.25em;
  font-weight: 900;
  line-height: 1em;
}
.left-col h1 span {
  color: #fce2c1;
}
.left-col p.desc {
  text-align: center;
}
.left-col h3 {
  font-size: 1.2rem;
  font-weight: normal;
}
.left-col ul {
  display: flex;
  padding-top: 2em;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
  text-align: center;
}
.left-col ul li h3.countup {
  color: #fce2c1;
  font-size: 1.8rem;
  font-weight: normal;
}
.left-col ul li div {
  display: flex;
  flex-direction: column;
}
.left-col .get-started {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #5927e5;
  color: #fff;
  padding: 1.8em 4.8em;
  align-items: center;
  border-radius: 5em;
  font-size: 1rem;
  font-weight: 400;
  white-space: nowrap;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.left-col .get-started:nth-child(even) {
  border: 2px solid #fce2c1;
  padding: 1em 1.75em;
  background-color: transparent;
  color: #ffffff;
}
.left-col .get-started:hover {
  background-color: #5927e5;
  color: #fff;
}
.left-col .get-started i, .left-col .get-started i::before {
  line-height: 0;
}

.hero-img {
  width: 100%;
}

#scron {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 9;
  overflow: hidden;
  transform: translateX(-50%);
}
#scron p {
  font-weight: 900;
  font-size: 1em;
  padding: 1em 0;
  animation: slide 2s ease-in-out infinite reverse;
}

.sliding-background {
  position: absolute;
  left: 35%;
  transform: translateX(-50%);
  width: 1.75em;
  height: auto;
  animation: slide 2s ease-in-out infinite;
}

@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
  25% {
    transform: translate3d(0, -1em, 0);
    opacity: 0.6;
  }
  75% {
    transform: translate3d(0, 4em, 0);
    opacity: 0.4;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
}
.about-section {
  background-color: #292b2c;
  color: #fff;
  text-align: center;
}
.about-section .section-title {
  color: inherit;
}

.centers-section {
  background-color: #ffffff;
  color: #333;
}
.centers-section .section-title {
  margin-bottom: 3rem;
}
.centers-section p {
  font-size: 1.1rem;
}

section.offer-section {
  background-color: #ffffff;
  color: #333;
  padding: 0;
}
section.offer-section ul {
  display: flex;
  flex-direction: column;
}
section.offer-section ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 8em 1.4em;
  background-color: #f6f4fe;
  color: #333;
}
section.offer-section ul li img {
  height: auto;
  padding: 2em;
  width: 300px;
}
section.offer-section ul li:nth-child(even) {
  background-color: #ffffff;
  color: #333;
  text-align: right;
}
section.offer-section ul li:nth-child(even) > div {
  display: flex;
  justify-content: flex-end;
}
section.offer-section ul li:nth-child(even) > div div {
  justify-content: center;
}
section.offer-section ul li > div {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
}
section.offer-section ul li > div .header {
  font-size: 2rem;
}
section.offer-section ul li > div div {
  display: flex;
  justify-content: center;
}
section.offer-section ul li > div a.a-link {
  display: flex;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1em 3em;
  margin-top: 2rem;
  background-color: #5927e5;
  color: #fff;
}

.features-section {
  background-color: #ffffff;
  color: #333;
}
.features-section .features-list {
  margin: 2rem 0;
  display: grid;
  flex-direction: column;
  gap: 3rem;
}
.features-section .features-list li {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: min(800px, 100%);
  gap: 1rem;
}
.features-section .features-list li:nth-child(even) {
  flex-direction: column;
  align-items: center;
}
.features-section .features-list li:nth-child(even) div {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.features-section .features-list li img {
  filter: grayscale(1);
  padding: 0;
  width: min(100px, 100%);
}
.features-section .features-list li div {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0.5rem;
}
.features-section .features-list li h3 {
  text-transform: uppercase;
  line-height: 1rem;
  margin: 0;
  color: #5927e5;
}
.features-section .features-list li p {
  color: #9b89b3;
}

.display-section {
  background-color: #362B48;
  color: #fff;
}
.display-section .wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.display-section .container {
  position: relative;
  display: block;
}
.display-section .container .img-illust {
  width: min(700px, 100%);
}
.display-section .sect-title {
  color: #5927e5;
  font-size: 2em;
  margin: 0;
}
.display-section .sect-msg {
  padding: 0.5em;
}
.display-section .sect-msg p:before {
  content: "";
  width: 1rem;
  height: 1rem;
  display: inline-block;
  position: relative;
  margin-right: 0.5rem;
  background-color: #9b89b3;
}

.instruct-section {
  background-color: #fff;
  color: #333;
}
.instruct-section ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.instruct-section ul li {
  width: min(300px, 100%);
  border: 1px dashed #dbdbdb;
  padding: 2em;
}
.instruct-section ul li p {
  color: #777;
  padding: 1em 0;
}

.plans-section {
  background-color: #ffffff;
  color: #333;
}
.plans-section div.info-div {
  background-color: #5927e5;
  color: #fff;
  padding: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.plans-section div.info-div button {
  padding: 0;
  border: 1.5px solid #f3f2f1;
  border-radius: 0.3em;
  width: -moz-fit-content;
  width: fit-content;
  background-color: transparent;
  white-space: nowrap;
}
.plans-section div.info-div button a {
  display: block;
  text-decoration: none;
  padding: 1em 2.5em;
  color: #fff;
}
.plans-section div.info-div button:hover {
  background-color: #fff;
}
.plans-section div.info-div button:hover a {
  color: #5927e5;
}
.plans-section .plans-ul {
  display: flex;
  flex: 1;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 2rem;
}
.plans-section .plans-ul li {
  display: flex;
  flex-direction: column;
  width: min(320px, 100%);
  border: 1px solid #f1f1f1;
  border-radius: 1rem;
  height: auto;
  padding: 1.5em 1em 1em 1em;
  justify-content: center;
  text-align: center;
  position: relative;
}
.plans-section .plans-ul li.most-pop {
  background-color: #d3c6f8;
  color: #333;
}
.plans-section .plans-ul li.most-pop::before {
  content: "Most Popular";
  position: absolute;
  top: -1.5rem;
  left: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  transform: translateX(-50%);
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  padding: 0.75em 2em;
  outline: 6px solid #ffffff;
  background-color: #fce2c1;
  color: #333;
  border-radius: 2rem;
}
.plans-section .plans-ul li div.title {
  text-align: center;
  margin: 1rem 0;
  font-size: 1.6rem;
  font-weight: bold;
  color: #362B48;
}
.plans-section .plans-ul li p.profit {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  margin: 1rem 0;
  align-items: center;
  padding: 0.5em 1.5em;
  font-weight: bold;
  border-radius: 3rem;
  align-self: center;
  background-color: #e5ddfb;
  color: #5927e5;
}
.plans-section .plans-ul li .duration {
  color: rgba(82, 82, 209, 0.85);
  font-weight: 600;
  margin: 0.3rem 0;
}
.plans-section .plans-ul li > h1 {
  font-size: 1.8rem;
  display: flex;
  font-weight: 800;
  justify-content: center;
  align-items: flex-end;
  color: #555;
}
.plans-section .plans-ul li > h1 small {
  font-weight: lighter;
  font-size: 1.3rem;
  margin-right: 0.1rem;
  line-height: 1.8;
  color: #777;
}
.plans-section .plans-ul li div.feats {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  margin-top: 1rem;
  gap: 2rem;
  border-top: 1px dashed #bdbdbd;
  padding: 1em;
}
.plans-section .plans-ul li div.feats p {
  position: relative;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.plans-section .plans-ul li div.feats p::before {
  display: inline;
  width: 0.75rem;
  height: 0.75rem;
  background-color: grey;
  border-radius: 50%;
  position: relative;
  content: "";
}
.plans-section .plans-ul li button {
  margin-top: 4rem;
  padding: 0;
  width: 100%;
  border-radius: 0.5rem;
  border: none;
  background-color: transparent;
  cursor: pointer;
  background-color: #5927e5;
  color: #fff;
}
.plans-section .plans-ul li button .a-link {
  text-decoration: none;
  display: block;
  padding: 1.2em 3rem;
  width: 100%;
}
.plans-section .plans-ul li button:hover {
  background-color: #5927e5;
  color: #fff;
}

.market-section {
  background-color: #1D2330;
  color: #fff;
}
.market-section h2 {
  color: inherit;
}
.market-section .mk {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.market-section .mk > div {
  width: min(500px, 100%);
}
.market-section .mk > div h1 {
  font-size: 3rem;
  font-weight: 400;
  color: #9b89b3;
}
.market-section .mk > div p {
  font-size: 1.2rem;
  font-weight: lighter;
}
.market-section .mk iframe {
  flex-grow: 0;
}

.testimonials-section {
  background-color: #362B48;
  color: #fff;
}
.testimonials-section h2 {
  margin-bottom: 4rem;
  color: inherit;
}
.testimonials-section ul {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.testimonials-section ul > * {
  flex-shrink: 1;
  flex-grow: 1;
  flex-basis: 100%;
}
.testimonials-section li {
  background-color: #2e243d;
  display: flex;
  flex-direction: column;
  border: 1px dashed #5927e5;
  gap: 1rem;
  margin-top: 5rem;
  text-align: center;
  box-shadow: 6px 6px #b099f3;
}
.testimonials-section li > * {
  align-self: center;
}
.testimonials-section li img {
  width: 120px;
  height: auto;
  border-radius: 50%;
  outline: 1px dashed #5927e5;
  border: 12px solid;
  border-color: #362B48;
  margin-top: -10%;
}
.testimonials-section li cite {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: bold;
  position: relative;
}
.testimonials-section li cite::before {
  position: absolute;
  width: 2rem;
  border: 2px dotted grey;
  top: 50%;
  content: "";
  margin-left: -3rem;
}
.testimonials-section li cite::after {
  position: absolute;
  width: 2rem;
  border: 2px dotted grey;
  top: 50%;
  right: 0;
  content: "";
  margin-right: -3rem;
}
.testimonials-section li div {
  padding: 1em 2em;
}
.testimonials-section li div p {
  background-image: url(../images/icons/5f8ec4f9337cf7116bbe66fb_subtitles.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: #b3b3b3;
  padding: 0.5em;
}
.testimonials-section li div div.rate {
  padding: 0;
}
.testimonials-section li div div.rate i {
  color: #fce2c1;
}

.contact-section {
  background-color: #f3f2f1;
  color: #333;
}
.contact-section .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-section label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid lightgrey;
  box-sizing: border-box;
}
.contact-section input[type=submit] {
  background-color: #333;
  color: #fff;
  font-size: 1.1rem;
}
.contact-section iframe {
  width: 100%;
  height: auto;
}

section.more-section {
  padding: 1em;
}
section.more-section > div {
  display: flex;
  flex-wrap: wrap;
}
section.more-section .about-div {
  display: flex;
  justify-content: space-between;
}
section.more-section article {
  width: min(500px, 100%);
}
section.more-section article > div {
  background-color: #ffffff;
  color: #333;
  padding: 3em 1.5em;
  border-radius: 1em;
}
section.more-section .cert-sect {
  border: 1px dashed #bdbdbd;
  padding: 1em;
}
section.more-section .cert-sect img {
  display: block;
  width: min(500px, 100%);
}

footer {
  width: 100%;
  background-color: #f1f1f1;
  color: #333;
  text-align: left;
  height: auto;
  font-weight: 300;
}
footer .foot-title {
  color: #362B48;
  text-transform: uppercase;
}
footer .foot-section {
  padding: 4em 2em;
}
footer .sponsors {
  background-color: #bdbdbd;
  color: #333;
  display: block;
  padding: 2em 1em;
}
footer .sponsors ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 2rem;
}
footer .sponsors ul li {
  list-style: none;
  display: flex;
}
footer .sponsors ul li img {
  height: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  filter: grayscale(100%);
}
footer .container {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
footer .container ul {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
footer .container ul li {
  flex-grow: 1;
  margin: 0.5em 0;
  padding: 0;
}
footer .container ul li a {
  text-decoration: none;
}
footer .container ul li a:hover {
  color: #5927e5;
  font-weight: bold;
  cursor: pointer;
}
footer .container ul li span,
footer .container ul li i {
  color: #5927e5;
}
footer .child-ul {
  margin: 0;
}
footer .end-footer {
  background-color: #4f4063;
  color: #fff;
  display: flex;
  font-size: 1rem;
  place-content: center;
  padding: 5em auto;
}
footer .end-footer p {
  color: lightgrey;
  text-align: center;
  padding: 2em 0;
}

section.div-sect {
  display: block;
  padding: 3em 1.5em;
}
section.div-sect .plans-grid {
  display: flex;
  flex: 1;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 2rem;
}
section.div-sect .plans-grid li {
  display: flex;
  flex-direction: column;
  width: min(320px, 100%);
  background-color: #ffffff;
  border: 1px solid #f1f1f1;
  border-radius: 1rem;
  height: auto;
  padding: 1.5em 1em 1em 1em;
  justify-content: center;
  text-align: center;
  position: relative;
}
section.div-sect .plans-grid li.most-pop {
  background-color: #d3c6f8;
  color: #333;
}
section.div-sect .plans-grid li.most-pop::before {
  content: "Most Popular";
  position: absolute;
  top: -1.5rem;
  left: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  transform: translateX(-50%);
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  padding: 0.75em 2em;
  outline: 6px solid #ffffff;
  background-color: #fce2c1;
  color: #333;
  border-radius: 2rem;
}
section.div-sect .plans-grid li div.title {
  text-align: center;
  margin: 1rem 0;
  font-size: 1.6rem;
  font-weight: bold;
  color: #362B48;
}
section.div-sect .plans-grid li p.profit {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  margin: 1rem 0;
  align-items: center;
  padding: 0.5em 1.5em;
  font-weight: bold;
  border-radius: 3rem;
  align-self: center;
  background-color: #e5ddfb;
  color: #5927e5;
}
section.div-sect .plans-grid li .duration {
  color: rgba(82, 82, 209, 0.85);
  font-weight: 600;
  margin: 0.3rem 0;
}
section.div-sect .plans-grid li > h1 {
  font-size: 1.8rem;
  display: flex;
  font-weight: 800;
  justify-content: center;
  align-items: flex-end;
  color: #555;
}
section.div-sect .plans-grid li > h1 small {
  font-weight: lighter;
  font-size: 1.3rem;
  margin-right: 0.1rem;
  line-height: 2;
  color: #777;
}
section.div-sect .plans-grid li div.feats {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  margin-top: 1rem;
  gap: 2rem;
  border-top: 1px dashed #bdbdbd;
  padding: 1em;
}
section.div-sect .plans-grid li div.feats p {
  position: relative;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
section.div-sect .plans-grid li div.feats p::before {
  display: inline;
  width: 0.75rem;
  height: 0.75rem;
  background-color: grey;
  border-radius: 50%;
  position: relative;
  content: "";
}
section.div-sect .plans-grid li button {
  margin-top: 4rem;
  padding: 0;
  width: 100%;
  border-radius: 0.5rem;
  border: none;
  background-color: transparent;
  cursor: pointer;
  background-color: #5927e5;
  color: #fff;
}
section.div-sect .plans-grid li button .a-link {
  text-decoration: none;
  display: block;
  padding: 1.2em 3rem;
  width: 100%;
}
section.div-sect .plans-grid li button:hover {
  background-color: #5927e5;
  color: #fff;
}

div.info-div {
  background-color: #5927e5;
  color: #fff;
  padding: 2em 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
div.info-div button {
  padding: 0;
  border: 2px solid #ffffff;
  border-radius: 0.3em;
  width: -moz-fit-content;
  width: fit-content;
  background-color: transparent;
  white-space: nowrap;
  color: #ffffff;
}
div.info-div button:hover {
  background-color: #ffffff;
  color: #362B48;
}
div.info-div button a {
  display: block;
  text-decoration: none;
  padding: 1em 2.5em;
}

.centers-grid {
  display: flex;
  flex-direction: column;
}
.centers-grid .loc-tag {
  display: flex;
  flex-direction: row;
  padding: 1em 0.5em;
  gap: 0.5em;
}
.centers-grid .map-loc {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1em;
  text-align: center;
  width: 120px;
  max-width: 120px;
  border: 1px dashed #9b89b3;
}
.centers-grid .map-loc i {
  color: #5927e5;
}
.centers-grid .map-loc h3 {
  text-transform: uppercase;
  margin: 0;
}

.map-grid {
  padding: 1em;
  position: relative;
}
.map-grid .loc-marker {
  position: absolute;
  padding: 0.35em 0.65em;
  border-radius: 1em;
  transition: all 0.25s ease-in-out;
  display: block;
  cursor: pointer;
}
.map-grid .loc-marker small {
  opacity: 0;
  font-size: 1rem;
  padding-left: 0.5em;
}
.map-grid .loc-marker:hover {
  background-color: #5927e5;
  color: #fff;
}
.map-grid .loc-marker:hover small {
  opacity: 1;
}
.map-grid .loc-marker:before {
  content: "";
  display: inline-block;
  background: url(../images/icons/points.svg) center center no-repeat;
  width: 14px;
  height: 14px;
  animation: pulse 300ms infinite alternate;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.map-grid .san-jose-loc {
  top: 38%;
  left: 17%;
}
.map-grid .london-loc {
  top: 30%;
  left: 46%;
}
.map-grid .cape-town-loc {
  top: 72%;
  left: 52%;
}

img.center-map {
  width: 100%;
  filter: grayscale(1);
}

.faq-div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}
.faq-div > * {
  flex-grow: 1;
  flex-basis: 50%;
}
.faq-div .accordion {
  position: relative;
  width: min(500px, 100%);
}
.faq-div .accordion .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5em 1em;
  border: 1px dotted #9b89b3;
  cursor: pointer;
}
.faq-div .accordion .head i {
  padding: 0.5em 1em;
  background-color: #f1f1f1;
  display: block;
}
.faq-div .accordion .body {
  display: none;
  overflow-y: hidden;
  padding: 0.5em 1em;
  background-color: #f1f1f1;
  color: #333;
}

.main-page {
  display: block;
  position: relative;
  padding: 1em 1em;
  z-index: 4;
  background-color: #ffffff;
}

ul.active-page-nav {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  text-transform: uppercase;
  align-items: center;
}
ul.active-page-nav li {
  color: #aaa;
}
ul.active-page-nav li:last-child {
  color: #5927e5;
  font-weight: bold;
}

section.login-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3em 1em;
  gap: 1rem;
}
section.login-section div.illust {
  display: none;
}
section.login-section .login-div h2 {
  font-weight: 900;
}
section.login-section .login-div form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: min(500px, 100%);
}
section.login-section .login-div form div.required-input label::after {
  content: "*";
  color: #5927e5;
  font-size: 1.15rem;
}
section.login-section .login-div form > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
section.login-section .login-div form > div div {
  background-color: #dbd9d6;
  outline: 1px solid #111;
  display: flex;
  border-radius: 0.35rem;
}
section.login-section .login-div form > div div input {
  background-color: unset;
  width: 100%;
}
section.login-section .login-div form > div div input:focus {
  background-color: #d0ccc8;
}
section.login-section .login-div form > div div input:focus ~ i {
  background-color: #d0ccc8;
}
section.login-section .login-div form > div div > * {
  flex-grow: 1;
}
section.login-section .login-div form > div div i {
  padding: 0.8em 1.5em;
}
section.login-section .login-div form .hyper-signup {
  background-color: #e7e5e3;
  padding: 1em;
  border-radius: 3rem;
  font-weight: 600;
}
section.login-section .login-div form input[type=submit] {
  background-color: #5927e5;
  color: #fff;
  border-radius: 0.35rem;
  font-weight: 600;
  cursor: pointer;
}
section.login-section .login-div form input[type=submit]:hover {
  background-color: #3c15ab;
}

section.signup-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 1em 1em;
}
section.signup-section div.illust {
  display: none;
}
section.signup-section .signup-div h1 {
  font-weight: 900;
  font-size: 1.5rem;
}
section.signup-section .signup-div form {
  display: flex;
  flex-direction: column;
  width: min(500px, 100%);
  gap: 2rem;
  margin-top: 2rem;
}
section.signup-section .signup-div form div.required-input label::after {
  content: "*";
  color: #5927e5;
  font-size: 1.15rem;
}
section.signup-section .signup-div form > div.input-div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
section.signup-section .signup-div form > div.input-div label {
  font-weight: bold;
  font-size: 1.1em;
  background-color: unset;
}
section.signup-section .signup-div form > div.input-div .input-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
section.signup-section .signup-div form > div.input-div div:not(div.input-stack) {
  background-color: #f1efee;
  outline: 1px solid #111;
  display: flex;
  border-radius: 0.35rem;
}
section.signup-section .signup-div form > div.input-div div:not(div.input-stack) input {
  background-color: unset;
  width: 100%;
}
section.signup-section .signup-div form > div.input-div div:not(div.input-stack) input:focus {
  background-color: #e7e5e3;
}
section.signup-section .signup-div form > div.input-div div:not(div.input-stack) input:focus ~ i {
  background-color: #e7e5e3;
}
section.signup-section .signup-div form > div.input-div div:not(div.input-stack) select {
  background-color: unset;
  width: 100%;
  font-size: 1.1em;
}
section.signup-section .signup-div form > div.input-div div:not(div.input-stack) select:focus {
  background-color: #e7e5e3;
}
section.signup-section .signup-div form > div.input-div div:not(div.input-stack) > * {
  flex-grow: 1;
}
section.signup-section .signup-div form > div.input-div div:not(div.input-stack) i {
  color: #5927e5;
  padding: 0.8em 1.5em;
}
section.signup-section .signup-div form .hyper-signup {
  background-color: #e7e5e3;
  padding: 1em;
  border-radius: 3rem;
  font-weight: 600;
}
section.signup-section .signup-div form .hyper-signup:hover {
  background-color: #fce2c1;
}
section.signup-section .signup-div form button[type=submit],
section.signup-section .signup-div form input[type=submit] {
  background-color: #362B48;
  color: #fff;
  position: relative;
  border-radius: 0.35rem;
  font-weight: 600;
  cursor: pointer;
}
section.signup-section .signup-div form button[type=submit]:hover,
section.signup-section .signup-div form input[type=submit]:hover {
  background-color: #3c15ab;
}

div.main-dashboard {
  display: flex;
  min-height: 100vh;
  width: 100%;
}
div.main-dashboard aside.side-bar {
  display: none;
}
div.main-dashboard main {
  width: 100%;
  background-color: #f3f2f1;
}
div.main-dashboard main div.sect {
  padding: 1rem;
  border-bottom: 1px dotted lightgrey;
}
div.main-dashboard main div.sect small {
  color: grey;
}
div.main-dashboard main div.sect h1.page-title {
  font-size: 2rem;
  text-transform: uppercase;
  color: #5927e5;
  margin: 0;
}
div.main-dashboard main div.sect .sect-title {
  font-size: 2rem;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 2rem;
  color: #5927e5;
}
div.main-dashboard main .top-nav {
  top: 0;
  background-color: #f3f2f1;
  color: #333;
  z-index: 90;
}
div.main-dashboard main button.notif-btn {
  display: none;
}
div.main-dashboard main .card-ish {
  display: none;
}
div.main-dashboard main div.header-profile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2em 1em;
}
div.main-dashboard main div.header-profile .dropdown .mobile-menu,
div.main-dashboard main div.header-profile .dropdown .mobile-menu-exit {
  font-size: 1.5rem;
}
div.main-dashboard main div.header-profile .dashboard-nav {
  position: fixed;
  z-index: 9;
  width: 100vw;
  left: 0;
  top: 0;
  background-color: #362B48;
  color: #fff;
  height: auto;
  max-height: 100vh;
  overflow-y: scroll;
  padding: 2em 1em;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-4rem);
  transition: all 150ms ease-in-out;
  flex-direction: column;
}
div.main-dashboard main div.header-profile .dashboard-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
div.main-dashboard main div.header-profile .dashboard-nav ul li {
  overflow-x: hidden;
}
div.main-dashboard main div.header-profile .dashboard-nav ul li a {
  padding: 1em 0.75em;
  width: 100%;
  display: block;
  transition: all 0.15s ease-in-out;
  text-decoration: none;
  border-radius: 0.35rem;
  background-color: #342945;
  color: #fff;
}
div.main-dashboard main div.header-profile .dashboard-nav ul li a i {
  border-radius: 0.45rem;
  background-color: #2f253e;
  color: #fff;
  padding: 1em;
  margin-right: 1rem;
  width: -moz-fit-content;
  width: fit-content;
}
div.main-dashboard main div.header-profile .dashboard-nav ul li a:hover {
  cursor: pointer;
  background-color: white;
  color: #333;
  transform: translateX(1em);
}
div.main-dashboard main div.header-profile .dashboard-nav ul li a:hover i {
  border-radius: 0.45rem;
  background-color: #e7e5e3;
  color: #333;
  padding: 1em;
  margin-right: 1rem;
  width: -moz-fit-content;
  width: fit-content;
}
div.main-dashboard main div.header-profile .dashboard-nav ul li a.active {
  transform: translateX(1em);
  border-radius: 0.35rem;
  background-color: #4e3e68;
  color: #fff;
  font-size: 1.1rem;
}
div.main-dashboard main div.header-profile .dashboard-nav ul li a.active i {
  border-radius: 0.45rem;
  background-color: #e7e5e3;
  color: #333;
  padding: 1em;
  margin-right: 1rem;
  width: -moz-fit-content;
  width: fit-content;
}
div.main-dashboard main div.header-profile .logo-type {
  height: 2rem;
  width: auto;
}
div.main-dashboard main div.header-profile div.prf {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  align-items: center;
  text-align: right;
}
div.main-dashboard main div.header-profile div.prf h3 {
  margin: 0;
}
div.main-dashboard main div.header-profile div.prf img {
  border-radius: 50%;
  height: 3rem;
  width: 3rem;
  -o-object-fit: cover;
     object-fit: cover;
}
div.main-dashboard main ul.griddy {
  display: flex;
  flex-wrap: wrap;
  padding: 0.8em;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
  background-color: #ffffff;
  color: #333;
  box-shadow: 2px 2px 10px 2px rgba(51, 51, 51, 0.05);
  border-radius: 0.5rem;
  flex: 1;
}
div.main-dashboard main ul.griddy li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}
div.main-dashboard main ul.griddy li > * {
  flex-grow: 1;
}
div.main-dashboard main ul.griddy li .none {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
div.main-dashboard main ul.griddy li .none .icon {
  border-radius: 0.45rem;
  padding: 1em 1em 0.25em 1em;
  width: -moz-fit-content;
  width: fit-content;
  filter: opacity(40%);
}
div.main-dashboard main ul.griddy li .none p {
  font-size: 0.9rem;
  padding: 0 1em;
  font-weight: 600;
  color: #9b89b3;
  text-align: center;
}
div.main-dashboard main ul.griddy li .none button {
  width: 100%;
  padding: 0;
}
div.main-dashboard main ul.griddy li .none button a {
  display: block;
  text-decoration: none;
  padding: 0.7em;
}
div.main-dashboard main ul.griddy li > div, div.main-dashboard main ul.griddy li > div > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
div.main-dashboard main ul.griddy li > div p, div.main-dashboard main ul.griddy li > div > div p {
  color: #838383;
  font-size: 0.85rem;
}
div.main-dashboard main ul.griddy li small.active {
  background-color: #29cc97;
  color: #fff;
  padding: 0.25rem 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.25rem;
}
div.main-dashboard main ul.griddy li div.percent {
  width: 100%;
  background-color: lightgrey;
  height: 0.5rem;
  border-radius: 1rem;
  overflow: hidden;
}
div.main-dashboard main ul.griddy li div.percent p {
  height: 0.5rem;
  background-color: #5927e5;
  transition: all 0.3s ease-in-out;
}
div.main-dashboard main ul.griddy li button {
  padding: 0;
  width: 100%;
  background-color: transparent;
  border: 1px solid #555;
  border-radius: 0.25rem;
}
div.main-dashboard main ul.griddy li button a {
  display: block;
  text-decoration: none;
  padding: 1em 0.7em;
}
div.main-dashboard main ul.griddy li button:disabled {
  opacity: 0.7;
  cursor: default;
}
div.main-dashboard main ul.griddy li button:disabled a {
  cursor: default;
}
div.main-dashboard main ul.griddy li button:enabled {
  cursor: pointer;
  background-color: #29cc97;
  color: #fff;
}
div.main-dashboard main ul.griddy li button:enabled:is(:hover, :focus) {
  background-color: rgba(63, 50, 96, 0.8);
  color: #fff;
}
div.main-dashboard main .tr-body {
  width: 100%;
}
div.main-dashboard main .tr-body div {
  display: flex;
  padding: 1em 0;
}
div.main-dashboard main .tr-body div a.button {
  display: block;
  background-color: #362B48;
  color: #fff;
  text-decoration: none;
  border-radius: 0.25rem;
  padding: 0.7em 2.5em;
  font-size: 0.85rem;
}
div.main-dashboard main .tr-body div.tbl-container {
  overflow-x: auto;
  overflow-y: hidden;
  height: -moz-fit-content;
  height: fit-content;
}
div.main-dashboard main .tr-body table.transact-table {
  margin-left: 2rem;
  text-align: left;
  position: relative;
  width: 100%;
  font-size: 0.95rem;
  border-spacing: 0;
}
div.main-dashboard main .tr-body table.transact-table::before {
  content: "";
  width: 1px;
  height: 100%;
  border: 1.5px dotted #5927e5;
  background-color: #f1f1f1;
  position: absolute;
  left: -10px;
  top: 20px;
}
div.main-dashboard main .tr-body table.transact-table td,
div.main-dashboard main .tr-body table.transact-table th {
  padding: 0.25em 0.45em;
}
div.main-dashboard main .tr-body table.transact-table thead {
  position: relative;
  font-size: 1.12rem;
  background-color: #fafafa;
  text-transform: uppercase;
}
div.main-dashboard main .tr-body table.transact-table thead::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 4px solid #5927e5;
  background-color: #f1f1f1;
  position: absolute;
  left: -20px;
  border-radius: 50%;
  top: calc(50% - 10px);
}
div.main-dashboard main .tr-body table.transact-table tbody tr:nth-child(even) {
  background-color: #fff;
  box-shadow: 1px 2px 6px 3px rgba(51, 51, 51, 0.02);
}
div.main-dashboard main .tr-body table.transact-table tbody td:first-child {
  position: relative;
}
div.main-dashboard main .tr-body table.transact-table tbody td:first-child::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #5927e5;
  position: absolute;
  left: -16px;
  border-radius: 50%;
  top: calc(50% - 5px);
}
div.main-dashboard main .tr-body table.transact-table tbody td:last-child {
  display: flex;
  place-self: center;
}
div.main-dashboard main .tr-body table.transact-table tbody td:last-child span {
  padding: 0.5em 0.5em;
  border-radius: 0.3em;
  color: white;
  margin: 0.25rem;
}
div.main-dashboard main .tr-body table.transact-table tbody td:last-child span.success {
  background-color: #29cc97;
}
div.main-dashboard main .tr-body table.transact-table tbody td:last-child span.pending {
  background-color: #FEC400;
}
div.main-dashboard main .tr-body table.transact-table tbody td:last-child span.failed {
  background-color: #f7685b;
}
div.main-dashboard main .tr-body table.transact-table tbody td.condition {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
div.main-dashboard main .tr-body table.transact-table tbody td.condition button.accept {
  background-color: rgba(82, 209, 82, 0.85);
  color: #fff;
}
div.main-dashboard main .tr-body table.transact-table tbody td.condition button.reject {
  background-color: rgba(209, 82, 82, 0.85);
  color: #fff;
}
div.main-dashboard main .tr-body table.transact-table tbody td.condition button.pend {
  background-color: rgba(209, 209, 82, 0.85);
  color: #fff;
}
div.main-dashboard main .tr-body .no-transact .title {
  color: #5927e5;
}
div.main-dashboard main .tr-body .no-transact h2,
div.main-dashboard main .tr-body .no-transact h3,
div.main-dashboard main .tr-body .no-transact h4,
div.main-dashboard main .tr-body .no-transact p {
  margin: 0;
}
div.main-dashboard main .tr-body .no-transact p {
  color: grey;
}
div.main-dashboard main .tr-body .no-transact .img-illust {
  opacity: 0.25;
  padding: 1em;
}
div.main-dashboard main .wallet {
  gap: 1rem;
}
div.main-dashboard main .wallet > div {
  align-items: center;
}
div.main-dashboard main .wallet li {
  background-color: white;
  color: #333;
  border-radius: 0.5rem;
  box-shadow: 1px 2px 12px rgba(51, 51, 51, 0.05);
  padding: 1.5em;
}
div.main-dashboard main .wallet li h3 {
  margin: 0;
}
div.main-dashboard main .wallet li:nth-child(even) {
  background-color: white;
  color: #333;
}
div.main-dashboard main .trading-sect {
  display: block;
  padding-top: 2em;
  overflow-x: auto;
  overflow-y: hidden;
}
div.main-dashboard main .new-sect {
  margin: 1rem;
  background-color: #ffffff;
  border: 1px dashed #9b89b3;
}
div.main-dashboard main .new-sect a {
  color: rgba(82, 82, 209, 0.85);
  text-decoration: none;
  font-weight: bold;
}
div.main-dashboard main div.news-sect {
  padding: 1em;
  height: 450px;
  display: block;
  overflow-y: hidden;
}

.refer-sect {
  display: block;
  margin: 2rem;
  background-color: #fff;
  color: #333;
  outline: 1px dashed #5927e5;
  width: -moz-fit-content;
  width: fit-content;
}
.refer-sect h2 {
  font-size: 1rem;
  margin-bottom: 3rem;
}
.refer-sect div.fx {
  display: flex;
  flex-wrap: wrap;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em;
  background-color: #fafafa;
  color: #333;
  border: 1px solid #f1f1f1;
}
.refer-sect div.fx .btn-func {
  background-color: #333;
  color: #fff;
  width: 100%;
}

.div-forg_pass img {
  width: min(200px, 100%);
}
.div-forg_pass h2 {
  color: #5927e5;
}
.div-forg_pass h1,
.div-forg_pass h2,
.div-forg_pass h3,
.div-forg_pass p {
  margin: 0;
}
.div-forg_pass form {
  width: min(500px, 100%);
}

.div-verify img {
  width: min(600px, 100%);
}
.div-verify h1 {
  font-size: 2rem;
  text-transform: uppercase;
  color: #5927e5;
  margin: 0.5rem;
}
.div-verify h3 {
  margin: 0.25rem;
  font-weight: 300;
}
.div-verify i {
  color: rgba(82, 82, 209, 0.85);
  font-weight: bold;
}

.disp-info img {
  width: min(350px, 100%);
  justify-self: center;
}
.disp-info button {
  border: 0;
  padding: 0;
  width: -moz-max-content;
  width: max-content;
  border-radius: 0.25rem;
  background-color: #fce2c1;
  margin-top: 1rem;
}
.disp-info button .a-link {
  text-decoration: none;
  display: block;
  padding: 1rem 3rem;
}

section.log {
  display: flex;
  gap: 2rem;
  padding: 0;
  flex-wrap: wrap;
  margin: 2rem 1rem;
}

div.summary {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  border: 1px solid #f1f1f1;
  border-radius: 0.4rem;
  background-color: #fff;
  padding: 1em;
  width: -moz-fit-content;
  width: fit-content;
}
div.summary p {
  color: #5927e5;
}
div.summary ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 1rem;
  border-top: 1px dashed lightgrey;
  position: relative;
  padding: 0.5em;
}
div.summary li {
  display: block;
}
div.summary li p {
  font-size: 1rem;
  font-weight: 600;
}

ul.token-card {
  gap: 1rem;
  justify-content: center;
  padding: 1em 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 40vw));
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
ul.token-card li {
  padding: 1.2em 1.2em;
  border-radius: 1rem;
  background-size: cover;
  background-position: 0% 75%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
ul.token-card li * {
  margin: 0;
  margin-block: 0;
}
ul.token-card li > div {
  display: flex;
  flex-direction: column;
}
ul.token-card li > div p {
  font-weight: normal;
  font-size: 0.9rem;
  color: #838383;
}
ul.token-card li > div small {
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0.25rem;
}
ul.token-card li > div small::before {
  width: -moz-fit-content;
  width: fit-content;
  content: "";
  border: 6px solid transparent;
  border-bottom: 6px solid #29cc97;
}
ul.token-card li > div div {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
ul.token-card li > div div p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
ul.token-card li img {
  height: 1.5rem;
  aspect-ratio: 1/1;
}
ul.token-card li.btc-token {
  background-color: #fdefdb;
  color: #333;
}
ul.token-card li.eth-token {
  background-color: #D9E0E4;
  color: #333;
}
ul.token-card li.ltc-token {
  background-color: #CBECFD;
  color: #333;
}
ul.token-card li.usdt-token {
  background-color: #CAEFD4;
  color: #333;
}

div.my-plan {
  position: sticky;
  top: 0;
  background-color: #f3f2f1;
  color: #333;
  z-index: 7;
}
div.my-plan > div:not(.no-plan) {
  display: flex;
  background-color: #3f3260;
  color: #fff;
  width: min(400px, 100%);
  padding: 2em 1.7em;
  border-radius: 1rem;
}
div.my-plan > div:not(.no-plan) .plans-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.5rem;
}
div.my-plan > div:not(.no-plan) .plans-body > div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 1fr;
  gap: 0.5rem;
}
div.my-plan > div:not(.no-plan) .plans-body > div:last-child {
  margin-top: 1rem;
}
div.my-plan > div:not(.no-plan) .plans-body div.percent {
  width: 100%;
  background-color: #604c92;
  height: 0.35rem;
  border-radius: 2rem;
  margin-top: 1rem;
}
div.my-plan > div:not(.no-plan) .plans-body div.percent p {
  height: 0.5rem;
  background-color: #fce2c1;
  transition: all 0.3s ease-in-out;
  position: relative;
  border-radius: 2rem;
}
div.my-plan > div:not(.no-plan) .plans-body div.percent p::after {
  content: "";
  width: 0.5rem;
  aspect-ratio: 1/1;
  position: absolute;
  border-radius: 50%;
  right: 0;
  transform: translateX(50%);
  transform: translateY(0%);
  outline: 0.35rem solid #ffffff;
  background-color: #fce2c1;
}
div.my-plan > div:not(.no-plan) .plans-body span {
  color: #ffffff;
  font-weight: bold;
}
div.my-plan > div:not(.no-plan) .plans-body p.duration {
  font-weight: 700;
}
div.my-plan > div:not(.no-plan) .plans-body p.duration small {
  font-weight: normal;
  color: #ffffff;
}
div.my-plan > div:not(.no-plan) .plans-body p.profit {
  font-size: 0.8rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.8em;
  border-radius: 2rem;
  background-color: #554382;
  color: #fff;
}
div.my-plan > div:not(.no-plan) img {
  width: auto;
  padding: 1rem;
  -o-object-fit: contain;
     object-fit: contain;
  border-right: 1px solid #dbdbdb;
}
div.my-plan > div:not(.no-plan) p,
div.my-plan > div:not(.no-plan) h1,
div.my-plan > div:not(.no-plan) h2,
div.my-plan > div:not(.no-plan) h3 {
  margin: 0;
}
div.my-plan > div:not(.no-plan) .title {
  color: #ffffff;
  text-transform: capitalize;
}
div.my-plan > div:not(.no-plan) .pin {
  font-size: 0.75rem;
  border-radius: 6rem;
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgba(82, 82, 209, 0.85);
  padding: 0.5rem 1rem;
  color: #f1f1f1;
  text-align: center;
}
div.my-plan .no-plan .title {
  color: #5927e5;
}
div.my-plan .no-plan h2,
div.my-plan .no-plan h3,
div.my-plan .no-plan h4 {
  margin: 0;
}
div.my-plan .no-plan .img-illust {
  opacity: 0.5;
}

#complete-modal .modal-container {
  background-color: #362B48;
  color: #fff;
  padding: 1em 1.6em;
  gap: 0.5rem;
  border-radius: 0.7rem;
  text-align: center;
}
#complete-modal .modal-container .img-title {
  margin: 0 auto;
  width: 25%;
  padding-top: 2em;
}
#complete-modal .modal-container .header {
  color: #fce2c1;
  text-align: center;
  font-weight: 700;
  margin-bottom: 0;
}
#complete-modal .modal-container .note {
  padding: 1em;
  background-color: #3d3152;
  color: #fff;
  border-radius: 0.4rem;
  margin-top: 4rem;
}
#complete-modal .modal-container .note h4 {
  color: #ffffff;
}
#complete-modal .modal-container .note p, #complete-modal .modal-container .note small {
  text-align: center;
  color: #dbdbdb;
  font-size: 0.9rem;
}
#complete-modal .modal-container a.a-button {
  background-color: #29cc97;
  color: #fff;
  margin-bottom: 1rem;
}
#complete-modal .modal-container h4,
#complete-modal .modal-container p {
  margin: 0;
}

#order-modal .modal-container {
  background-color: #362B48;
  color: #fff;
  padding: 1em 1.6em;
  gap: 0.5rem;
  border-radius: 0.7rem;
  text-align: center;
}
#order-modal .modal-container .img-title {
  margin: 0 auto;
  width: 25%;
  padding-top: 2em;
}
#order-modal .modal-container .header {
  color: #fce2c1;
  text-align: center;
  font-weight: 700;
  margin-bottom: 0;
}
#order-modal .modal-container .note {
  padding: 1em;
  background-color: #3d3152;
  color: #fff;
  border-radius: 0.4rem;
  margin-top: 4rem;
}
#order-modal .modal-container .note h4 {
  color: #ffffff;
}
#order-modal .modal-container .note p, #order-modal .modal-container .note small {
  text-align: center;
  color: #dbdbdb;
  font-size: 0.9rem;
}
#order-modal .modal-container a.a-button {
  background-color: #29cc97;
  color: #fff;
  margin-bottom: 1rem;
}
#order-modal .modal-container h4,
#order-modal .modal-container p {
  margin: 0;
}

.deposit-pg {
  display: flex;
  flex-direction: column;
}
.deposit-pg .trans-med {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.deposit-pg .trans-med img {
  width: 100px;
  height: 100px;
  border-radius: 0.2rem;
  border: 1px solid #dbdbdb;
  background-color: #fff;
  padding: 1em;
  cursor: pointer;
}
.deposit-pg .trans-med img:hover {
  box-shadow: 2px 2px 12px rgba(51, 51, 51, 0.1);
  border-color: #5927e5;
}

.with-sect {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.with-sect .with-form-div {
  background-color: #ffffff;
  color: #333;
  padding: 2em 1em;
  box-shadow: 1px 2px 10px rgba(51, 51, 51, 0.05);
  border: 1px dashed #9b89b3;
}
.with-sect .with-faq {
  background-color: #ffffff;
  border: 1px solid #f4e1f7;
  box-shadow: 1px 2px 10px rgba(51, 51, 51, 0.05);
  padding: 1.5em;
}
.with-sect .with-faq h1 {
  color: rgba(82, 82, 209, 0.85);
}
.with-sect .with-faq > div {
  margin: 1rem 0;
}
.with-sect .with-faq h3,
.with-sect .with-faq p {
  margin: 0;
}

.dep-sect {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.dep-sect .with-faq {
  background-color: #fafafa;
  border: 1px solid #f4e1f7;
  border-radius: 0.5rem;
  padding: 1.5em;
}
.dep-sect .with-faq h1 {
  color: rgba(82, 82, 209, 0.85);
}
.dep-sect .with-faq > div {
  margin: 1rem 0;
}
.dep-sect .with-faq h3,
.dep-sect .with-faq p {
  margin: 0;
}

.wit-his {
  display: flex;
  width: 100%;
  justify-items: stretch;
}

.dep-his {
  display: flex;
  width: 100%;
  justify-items: stretch;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  border: 1px dashed #aaa;
}
.form-wrapper .deposit-form {
  width: min(400px, 100%);
  background-color: #ffffff;
  color: #333;
  padding: 1em;
}
.form-wrapper .withdrawal-form {
  width: 100%;
}
.form-wrapper [data-method] {
  display: none;
}

div.add-info {
  padding: 1em 1em;
}
div.add-info > p,
div.add-info h2,
div.add-info h3 {
  margin: 0;
}
div.add-info h3 {
  font-weight: 400;
}
div.add-info button {
  background-color: #9b89b3;
  font-weight: normal;
  padding: 0.75em 2em;
}
div.add-info div#wallet_add {
  gap: 0.25rem;
  color: #fce2c1;
  word-wrap: break-word;
  word-break: break-all;
  text-align: center;
}

img.qr-code {
  width: 200px;
  height: 200px;
  padding: 0.1rem;
  outline: 0;
}

.files-up img {
  min-height: 300px;
  min-width: 100%;
  background-color: #f1f1f1;
}
.files-up input {
  cursor: pointer;
}
.setting-sect {
  gap: 0;
}
.setting-sect h2,
.setting-sect h5 {
  margin: 0.25rem;
}
.setting-sect .desc {
  position: relative;
  font-weight: normal;
}
.setting-sect .desc:before {
  content: "*";
  font-size: 1rem;
  color: #5927e5;
}
.setting-sect .sett-field {
  width: -moz-fit-content;
  width: fit-content;
}
.setting-sect .sett-field > * {
  align-self: flex-end;
}
.setting-sect .sett-field > input,
.setting-sect .sett-field select {
  min-width: 200px;
  width: min(300px, 100%);
  border: 0;
  background-color: #f1f1f1;
  color: #333;
  text-align: right;
}
.setting-sect .sett-field > button {
  border: 0;
  border-radius: 0.25em;
  text-transform: uppercase;
  padding: 0.75em 1.75em;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  background-color: #362B48;
  color: #fff;
}

.kyc-div {
  padding: 1.4em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.kyc-div .kyc-approval {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(251, 254, 251, 0.85);
  color: #333;
  color: #555;
  width: min(400px, 100%);
  aspect-ratio: 2/1;
  padding: 2em 0;
  border-radius: 0.7em;
  box-shadow: 1px 2px 5px 1px rgba(51, 51, 51, 0.05);
}
.kyc-div .kyc-approval img {
  width: 25%;
  aspect-ratio: 1/1;
  padding: 0.5em;
}
.kyc-div .kyc-approval p {
  color: #838383;
}
.kyc-div .kyc-await {
  background-color: #ffffff;
  color: #333;
  padding: 1em;
  width: min(400px, 100%);
  aspect-ratio: 2/1;
  border-radius: 0.7em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.kyc-div .kyc-await img {
  width: 30%;
  aspect-ratio: 1/1;
  padding: 1em;
}
.kyc-div .kyc-await .group {
  display: flex;
  justify-content: flex-end;
}
.kyc-div .kyc-await p {
  color: #838383;
}
.kyc-div .kyc-await button {
  padding: 0.4em 1em;
  border-radius: 0.35em;
  border: 1px solid #D9E0E4;
  outline: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background-color: #fafafa;
  color: #5927e5;
}
.kyc-div .header-title {
  background-color: #fff;
  color: #333;
  padding: 0.4em;
  margin-bottom: 1rem;
}
.kyc-div .crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  padding: 0.4em 0;
}
.kyc-div .crumbs li {
  background-color: #f7f6f9;
  border-radius: 1em;
  padding: 0.4em 1em;
}
.kyc-div #kyc-form {
  border: 1px solid #f1f1f1;
  border-radius: 1em;
  background-color: #fff;
  padding: 1em 0.4em;
  width: -moz-fit-content;
  width: fit-content;
}
.kyc-div #kyc-form .sett-field {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.kyc-div #kyc-form .sett-field input, .kyc-div #kyc-form .sett-field select {
  flex: 1;
  border-radius: 0.4em;
  background-color: rgba(51, 51, 51, 0.05);
  width: 160px;
}
.kyc-div #kyc-form .kyc-doc {
  background-color: #f1f1f1;
  color: #333;
  cursor: pointer;
  gap: 0;
}
.kyc-div #kyc-form .kyc-doc input[type=file] {
  display: none;
}
.kyc-div #kyc-form .kyc-doc input {
  outline: 0;
  background-color: inherit;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.kyc-div #kyc-form .kyc-doc button {
  background-color: #dbdbdb;
  color: #333;
  cursor: pointer;
  margin: 0;
  padding: 1em 1.25em;
}
.kyc-div #kyc-form button {
  padding: 1em;
  background-color: #240c67;
  color: #fff;
  font-weight: bold;
  border: 0;
  border-radius: 0.4rem;
  cursor: pointer;
  margin: 0 1em;
}

.prf-img-sect {
  background-color: #fff;
  color: #333;
  padding: 2em 1em;
  width: min(400px, 100%);
  border: 1px solid #f1f1f1;
}

.profile-sect {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1em;
  justify-content: center;
  align-items: flex-start;
}

.my-wal-div > button {
  width: 100%;
  background-color: #362B48;
  color: #fff;
  padding: 1em;
}

div.sect {
  border-bottom: none;
}

.prf-pg h1,
.prf-pg h2,
.prf-pg h3,
.prf-pg h4 {
  margin: 0.25rem;
}

#prf-form {
  background-color: #fff;
  color: #333;
}
#prf-form > p {
  font-weight: bold;
  font-size: 1.2rem;
  padding: 2rem 1rem;
}
#prf-form .sett-field {
  padding: 0.5em;
  display: flex;
  justify-content: flex-end;
}
#prf-form .conf-btn {
  width: 100%;
  margin-top: 2rem;
}

#pass-form {
  background-color: #fff;
  color: #333;
}
#pass-form > p {
  font-weight: bold;
  font-size: 1.2rem;
  padding: 2rem 1rem;
}

.info-card {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.info-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border: 1px solid #dbdbdb;
  padding: 1em;
  width: min(400px, 100%);
  border-radius: 4px;
  box-shadow: 1px 1px 10px rgba(51, 51, 51, 0.1);
}
.info-card ul li {
  flex-direction: column;
  border-bottom: 1px solid #f1f1f1;
}
.info-card ul li h4 {
  margin: 0.05rem 0;
  color: rgba(82, 82, 209, 0.85);
}

.prf-div {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.prf-div .img-md {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px dotted grey;
}
.prf-div input[type=file]#prf-file {
  display: none;
}
.prf-div button {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateX(-0.25rem);
  width: 3rem;
  height: 3rem;
  border: 0;
  display: block;
  background-color: #9b89b3;
  color: #fff;
  box-shadow: -2px -2px 5px rgba(5, 5, 5, 0.25);
  border-radius: 50%;
  cursor: pointer;
}
.prf-div button:hover {
  background-color: #8b76a7;
}

.notif-ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.notif-ul li.notif {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #ffffff;
  color: #333;
  padding: 1.5em 0.75em;
  border: 1px solid #f1f1f1;
  border-radius: 1rem;
}
.notif-ul li.notif.info .title span {
  background-color: rgba(211, 211, 243, 0.85);
  color: #333;
  color: rgba(82, 82, 209, 0.85);
}
.notif-ul li.notif.error .title span {
  background-color: rgba(243, 211, 211, 0.85);
  color: #333;
  color: rgba(209, 82, 82, 0.85);
}
.notif-ul li.notif.success .title span {
  background-color: rgba(211, 243, 211, 0.85);
  color: #333;
  color: #362B48;
}
.notif-ul li.notif .deets {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.notif-ul li.notif .deets .notif-type-div {
  padding: 0.75em 1.25em;
  border-radius: 1rem;
  place-self: center;
  align-content: center;
  background-color: #f1f1f1;
  color: #333;
}
.notif-ul li.notif .deets .notif-type-div i {
  font-size: 0.8rem;
}
.notif-ul li.notif .deets .notif-msg-board {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}
.notif-ul li.notif .deets .notif-msg-board .title {
  color: #333;
  font-weight: 600;
}
.notif-ul li.notif .deets .notif-msg-board .title span {
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0 0.5rem;
  padding: 0.25em 0.5em;
  border-radius: 0.25rem;
}
.notif-ul li.notif .deets .notif-msg-board p.msg {
  margin: 0;
  color: #838383;
  font-size: 0.9rem;
}
.notif-ul li.notif .deets .notif-msg-board .m-time {
  color: #bdbdbd;
  font-weight: 500;
}
.notif-ul li.notif .deets .notif-msg-board small {
  display: block;
}
.notif-ul li.notif .time {
  display: none;
}

.no-notif {
  background-color: #ffffff;
  color: #333;
  margin: 1rem;
  border-radius: 1rem;
  padding: 3em 1em;
  border: 1px dashed #dbdbdb;
}
.no-notif .title {
  color: #3f3260;
  font-weight: 800;
}
.no-notif h2,
.no-notif h3,
.no-notif h4,
.no-notif p {
  margin: 0;
}
.no-notif p {
  color: rgba(82, 82, 209, 0.85);
}
.no-notif .img-illust {
  width: min(500px, 100%);
  margin-bottom: 1rem;
}

.prices-tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.prices-tab > div {
  width: min(250px, 100%);
}

.asset-sect {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.card-file {
  display: flex;
  flex-direction: column;
  box-shadow: 1px 2px 8px rgba(51, 51, 51, 0.1);
  padding: 1em;
  border: 1px solid #dbdbdb;
  gap: 1rem;
  width: min(350px, 100%);
}
.card-file div.deets {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.card-file div.deets > div {
  max-width: 50%;
}
.card-file input {
  width: 150px;
}
.card-file button {
  width: 100%;
  background-color: rgba(82, 82, 209, 0.85);
  color: #fff;
}

#doc-image {
  display: block;
  width: 100%;
  height: auto;
}

.btc_qr-div img {
  width: 100px;
  height: auto;
  aspect-ratio: 1/1;
}
.btc_qr-div input[type=file], .btc_qr-div button[type=submit] {
  display: none;
}
.btc_qr-div button[type=button] {
  padding: 1em 2em;
  border-radius: 0.3em;
  border: 0;
  outline: 0;
  cursor: pointer;
  background-color: #362B48;
  color: #fff;
}

.hide-mobile {
  visibility: hidden;
}

@media only screen and (min-width: 768px) {
  .land-nav {
    width: 60vw;
  }
  .land-nav > * {
    flex-grow: 0;
    flex-basis: 0;
  }
  .navbar .container {
    display: flex;
    justify-content: space-between;
  }
  .navbar .container {
    width: 100%;
    padding: 1em 2em;
  }
  footer {
    position: sticky;
  }
  section.login-section {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 3em 4em;
  }
  section.login-section div.illust {
    display: block;
    max-width: 40%;
  }
  section.login-section div.illust > img {
    width: 100%;
  }
  section.login-section .login-div {
    min-width: 30%;
  }
  section.signup-section {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 1em 2em;
  }
}
@media only screen and (min-width: 1024px) {
  .card {
    transform: translateY(150px);
    opacity: 0;
    transition: ease-in-out 0.5s;
  }
  .card.show {
    transform: translateY(0);
    opacity: 1;
  }
  .mobile-menu, .mobile-menu-exit {
    display: none;
  }
  .navbar {
    display: block;
    background-color: transparent;
    color: #ffffff;
  }
  .navbar .container {
    width: 100%;
    padding: 1em 1.5em;
    display: flex;
    justify-content: space-between;
  }
  .subhead {
    width: -moz-fit-content;
    width: fit-content;
  }
  section.hero {
    padding: 6em 6em;
  }
  section.hero .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
  section.hero .container .left-col > div {
    justify-content: center;
  }
  section.hero .container .left-col h1 {
    text-align: center;
    font-size: 4rem;
  }
  section.hero .container .left-col h3 {
    text-align: center;
    font-size: 1.2rem;
  }
  section.hero .container .left-col ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    text-align: left;
  }
  section.hero .container .left-col ul li > div {
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
  }
  section.hero .container .left-col ul li > div h3.countup {
    font-size: 2rem;
    font-weight: normal;
  }
  section.hero .container .left-col .get-started {
    padding: 1.4em 4em;
    font-size: 1.4rem;
    border-radius: 4em;
  }
  section.hero .container .hero-img {
    width: 50%;
    height: auto;
    padding: 1em;
  }
  ul.primary-nav {
    text-transform: capitalize;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem;
    border: none;
    margin: 0;
    align-items: center;
  }
  ul.primary-nav .get-started-form {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    border: none;
    padding: 0;
    margin: 0;
  }
  ul.primary-nav .get-started-form a {
    text-align: center;
    padding: 0.75rem 2rem;
  }
  ul.primary-nav .get-started-form .login {
    border-radius: 2em;
    padding: 0.7em 2em;
    color: inherit;
    background-color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
  }
  ul.primary-nav li:not(.get-started-form).active a {
    padding: 0.3em 0;
  }
  ul.primary-nav li:not(.get-started-form) a {
    position: relative;
    padding: 0.75em 1.3rem;
    text-align: center;
    color: #ffffff;
  }
  .land-nav {
    display: flex;
    flex-direction: row;
    opacity: 1;
    pointer-events: auto;
    background-color: transparent;
    color: #ffffff;
    position: relative;
    width: 100%;
    height: auto;
    transform: translateX(0);
    padding: 0;
  }
  .land-nav ul.primary-nav {
    flex-grow: 1;
  }
  .land-nav ul.primary-nav li.active > a {
    display: block;
    background-color: transparent;
    border-radius: 0.5rem;
  }
  .land-nav ul.primary-nav li > a {
    display: block;
    background-color: transparent;
    border-radius: 2rem;
  }
  .land-nav ul.primary-nav li > a:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  .land-nav ul.primary-nav li.active a {
    font-weight: bold;
    font-size: 1.2em;
  }
  .land-nav a {
    font-size: 1em;
    padding: 0;
  }
  section.offer-section ul li {
    flex-direction: row;
  }
  section.offer-section ul li > div {
    width: 40%;
    text-align: left;
  }
  section.offer-section ul li > div div {
    justify-content: flex-start;
  }
  section.offer-section ul li:nth-child(even) {
    background-color: #ffffff;
    color: #333;
    flex-direction: row-reverse;
  }
  section.offer-section ul li:nth-child(even) > div {
    text-align: right;
    display: flex;
    justify-content: flex-end;
  }
  section.offer-section ul li:nth-child(even) > div div {
    justify-content: flex-end;
  }
  .features-section .features-list {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 8rem;
  }
  .features-section .features-list::after {
    content: "";
    position: absolute;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 1px dashed #5927e5;
  }
  .features-section .features-list li {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    place-self: flex-start;
    width: 50%;
    transform: translateX(10px);
  }
  .features-section .features-list li::before {
    content: "";
    height: 20px;
    aspect-ratio: 1/1;
    background-color: #5927e5;
    border: 1px solid #5927e5;
    border-radius: 50%;
  }
  .features-section .features-list li div {
    text-align: right;
    width: 50%;
  }
  .features-section .features-list li:nth-child(even) {
    flex-direction: row;
    place-self: flex-end;
    align-items: center;
    transform: translateX(-10px);
  }
  .features-section .features-list li:nth-child(even) div {
    text-align: left;
    width: 50%;
  }
  .display-section .wrapper {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
  .display-section .container {
    position: relative;
    display: block;
  }
  .display-section .container .img-illust {
    width: min(600px, 100%);
  }
  .testimonials-section {
    padding-top: 15rem;
  }
  .testimonials-section ul {
    display: flex;
    flex-direction: row;
  }
  .testimonials-section ul > * {
    flex-shrink: 1;
    flex-grow: 1;
    flex-basis: 100%;
  }
  .contact-section .container {
    display: flex;
    flex-direction: row;
    gap: 4rem;
  }
  .contact-section .container > * {
    flex-grow: 1;
    flex-basis: 1;
  }
  .contact-section .container .contact-right {
    position: relative;
  }
  .contact-right {
    /*position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;*/
  }
  .contact-right iframe {
    height: 100%;
  }
  .centers-grid {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
  }
  .centers-grid .loc-tag {
    flex-direction: column;
  }
  section.login-section {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8rem;
  }
  section.login-section div.illust {
    display: block;
    max-width: 30%;
  }
  section.login-section div.illust > img {
    filter: grayscale(1);
    width: 100%;
  }
  section.login-section .login-div {
    min-width: 30%;
  }
  section.signup-section {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
  }
  section.signup-section div.illust {
    display: block;
    max-width: 40%;
    padding: 4em 0;
    position: sticky;
    top: 0;
  }
  section.signup-section div.illust > img {
    width: 100%;
    filter: grayscale(1);
  }
  section.signup-section .signup-div {
    min-width: 20%;
  }
  section.signup-section .signup-div div.input-stack {
    display: flex;
    flex-direction: row !important;
    gap: 1rem;
  }
  section.more-section {
    padding: 2em 8em;
  }
  .market-section .container {
    margin: 0 auto;
    background-color: #1D2330;
    width: 75%;
    border-radius: 2rem;
    transform: translateY(25%);
    box-shadow: 2px 2px 12px 4px rgba(241, 241, 241, 0.05);
    z-index: 99;
    padding: 1em;
  }
  ul.token-card {
    gap: 1rem;
    padding: 1em;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 240px));
    justify-content: start;
  }
  div.sect {
    padding: 2rem;
  }
  div.main-dashboard aside.side-bar {
    background-color: #ffffff;
    color: #333;
    display: flex;
    width: 15vw;
    max-width: 15vw;
    flex-direction: column;
    padding: 1em 0;
    max-height: 100vh;
    position: sticky;
    bottom: 0;
    top: 0;
    overflow-x: hidden;
  }
  div.main-dashboard aside.side-bar img.logo-type {
    margin-top: 3rem;
    height: auto;
    width: 80%;
    padding: 1em;
  }
  div.main-dashboard aside.side-bar .side-card {
    display: flex;
    flex-direction: column;
    padding: 1em 0;
  }
  div.main-dashboard aside.side-bar .side-card .prf {
    display: flex;
    flex-direction: row;
    gap: 0.25rem;
    align-items: center;
    padding: 0.4em;
  }
  div.main-dashboard aside.side-bar .side-card .prf img {
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 50%;
    height: 3rem;
    aspect-ratio: 1/1;
  }
  div.main-dashboard aside.side-bar .side-card .card-ish {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.4em;
    margin-left: 1.5rem;
    border-left: 1px dashed #bdbdbd;
  }
  div.main-dashboard aside.side-bar .side-card .card-ish .level {
    border: 1px solid #9b89b3;
    border-radius: 1rem;
    padding: 0.4em 1em;
    width: -moz-fit-content;
    width: fit-content;
  }
  div.main-dashboard aside.side-bar .side-card .card-ish p {
    color: #5927e5;
    font-size: 1.2rem;
    font-weight: bold;
  }
  div.main-dashboard aside.side-bar ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2rem;
  }
  div.main-dashboard aside.side-bar ul li {
    overflow-x: hidden;
  }
  div.main-dashboard aside.side-bar ul li a {
    padding: 1em 0.5em;
    width: 100%;
    display: block;
    transition: all 0.12s ease-in-out;
    text-decoration: none;
  }
  div.main-dashboard aside.side-bar ul li a i {
    border-radius: 0.45rem;
    background-color: #f7f7f7;
    color: #333;
    padding: 0.65em;
    margin-right: 1rem;
    width: -moz-fit-content;
    width: fit-content;
  }
  div.main-dashboard aside.side-bar ul li a:hover {
    cursor: pointer;
    background-color: #f7f7f7;
    color: #333;
    transform: translateX(0.7em);
  }
  div.main-dashboard aside.side-bar ul li a:hover i {
    border-radius: 0.45rem;
    background-color: #7c55ea;
    color: #fff;
    padding: 0.65em;
    margin-right: 1rem;
    width: -moz-fit-content;
    width: fit-content;
  }
  div.main-dashboard aside.side-bar ul li a.active {
    background-color: #f7f7f7;
    color: #333;
    color: #5927e5;
    font-size: 1rem;
  }
  div.main-dashboard aside.side-bar ul li a.active i {
    border-radius: 0.45rem;
    background-color: #5622e4;
    color: #fff;
    padding: 0.65em;
    margin-right: 1rem;
    width: -moz-fit-content;
    width: fit-content;
  }
  div.main-dashboard .notif-msg-board small {
    display: none !important;
  }
  div.main-dashboard li.notif div.time {
    display: flex;
    flex-direction: column;
    place-self: center;
    align-content: center;
    justify-content: flex-end;
    text-align: right;
  }
  div.main-dashboard li.notif div.time small {
    font-weight: 500;
    color: #8d8d8d;
  }
  div.main-dashboard li.notif div.time h4, div.main-dashboard li.notif div.time p {
    margin: 0;
  }
  div.main-dashboard .with-sect {
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
  }
  div.main-dashboard .with-sect > * {
    flex-basis: min(400px, 100%);
  }
  div.main-dashboard .dep-sect {
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
  }
  div.main-dashboard .dep-sect > * {
    flex-basis: min(400px, 100%);
  }
  div.main-dashboard main {
    width: 85vw;
    position: sticky;
    left: 20vw;
  }
  div.main-dashboard main .dash-sect {
    position: sticky;
    top: 0;
    background-color: #f3f2f1;
    color: #333;
    z-index: 8;
  }
  div.main-dashboard main .dash-sect ul.griddy li {
    flex-direction: row;
  }
  div.main-dashboard main button.notif-btn {
    display: block;
    background-color: #f3f2f1;
    color: #333;
    border-radius: 0.5em;
    position: relative;
    font-size: 1.1rem;
    transition: all 0.1s ease-in-out;
  }
  div.main-dashboard main button.notif-btn a {
    text-decoration: none;
  }
  div.main-dashboard main button.notif-btn:active {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  }
  div.main-dashboard main button.notif-btn i:after {
    content: "";
    display: block;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: #5927e5;
    position: absolute;
    bottom: 1.75rem;
    right: 0.75rem;
  }
  div.main-dashboard main .card-ish {
    display: block;
    border-radius: 0.5em;
    background-color: #e7e5e3;
    color: #333;
    padding: 0.5em 1.2em;
  }
  div.main-dashboard main .card-ish a {
    text-decoration: none;
    font-size: 1.4rem;
    position: relative;
  }
  div.main-dashboard main .card-ish a span {
    display: block;
    position: absolute;
    outline: 1px solid white;
    top: 0;
    right: 0;
    width: 0.6rem;
    border-radius: 50%;
    aspect-ratio: 1/1;
    background-color: #5927e5;
  }
  button:active {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  }
  .hide-mobile {
    visibility: visible;
  }
  .hide-desktop {
    visibility: hidden;
  }
}
.miner_animate_spin_linear.miner_animate_spin_speed16 {
  animation-duration: 0.2s;
}

.s-6 .miner_animate_spin_linear {
  animation-name: miner_animate_spin_linear;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform-origin: center;
  transform-box: fill-box;
}

.s-3 .miner_animate_spin_linear {
  animation-name: miner_animate_spin_linear;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform-origin: center;
  transform-box: fill-box;
}

.s-2 .miner_animate_spin_linear {
  animation-name: miner_animate_spin_linear;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform-origin: center;
  transform-box: fill-box;
}

.miner_animate_spin_linear {
  animation-name: miner_animate_spin_linear;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform-origin: center;
  transform-box: fill-box;
}

@keyframes miner_animate_spin_linear {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.miner_animate_levitation_small {
  animation-name: miner_animate_levitation_small;
}

.miner_animate_levitation {
  animation-name: miner_animate_levitation;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

@keyframes miner_animate_levitation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(0);
  }
}
.slide_left {
  animation: slide_left 0.25s ease-in-out;
}

@keyframes slide_left {
  0% {
    transform: translateX(25vw);
  }
  100% {
    transform: translateX(0);
  }
}
.view-sect {
  transform: translateX(100px);
  opacity: 0;
  transition: 5s;
  transition: ease-in-out;
}

.view-sect.show {
  transform: translateX(0);
  opacity: 1;
}

.tilt-in-fwd-tl {
  animation: tilt-in-fwd-tl 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/**
 * ----------------------------------------
 * animation tilt-in-fwd-tl
 * ----------------------------------------
 */
@keyframes tilt-in-fwd-tl {
  0% {
    transform: rotateY(-20deg) rotateX(35deg) translate(-300px, -300px) skew(35deg, -10deg);
    opacity: 0;
  }
  100% {
    transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    opacity: 1;
  }
}
.slide-in-elliptic-top-fwd {
  animation: slide-in-elliptic-top-fwd 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/**
 * ----------------------------------------
 * animation slide-in-elliptic-top-fwd
 * ----------------------------------------
 */
@keyframes slide-in-elliptic-top-fwd {
  0% {
    transform: translateY(-600px) rotateX(-30deg) scale(0);
    transform-origin: 50% 100%;
    opacity: 0;
  }
  100% {
    transform: translateY(0) rotateX(0) scale(1);
    transform-origin: 50% 1400px;
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */