/*========== GOOGLE FONTS ==========*/
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300..700;1,300..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Onest:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/*========== VARIABLES CSS ==========*/
:root {
  /*===== Colors =====*/
  --soft-white: #fbfaf5;
  --soft-black: #181a18;
  --white: #ffffff;
  --black: #0a0a0a;
  --t-black: #1c1d20;
  --vc-black: #141414;
  --vc-blue: #00bbe0;
  --vc-yellow: #ffdb58;
  --vc-green: #18a87c;
  --vc-l-grey: #e9eaec;
  --vc-grey: #708090;
  --t-blue: #023047;
  --tb-dark: #1b263b;
  --tb-light: #1b263b;
  --the-grey: #f6f7f9;
  --text-grey: #444950;
  --success: #13ae8f;
  --error: #ff3333;

  /*===== Font and typography =====*/
  --pri-font: "Poppins", sans-serif;
  --sec-font: "Inter Tight", sans-serif;
  --dms-font: "DM Sans", sans-serif;
  --cor-font: "Cormorant Infant", serif;
  --one-font: "Onest", sans-serif;

  /* .5rem = 8px, 1rem = 16px, 1.5rem = 24px ... */
  --fs-9: 9rem;
  --fs-8-5: 8.5rem;
  --fs-8: 8rem;
  --fs-7-5: 7.5rem;
  --fs-7: 7rem;
  --fs-6-5: 6.5rem;
  --fs-6: 6rem;
  --fs-5-5: 5.5rem;
  --fs-5: 5rem;
  --fs-4-5: 4.5rem;
  --fs-4: 4rem;
  --fs-3-5: 3.5rem;
  --fs-3: 3rem;
  --fs-2-5: 2.5rem;
  --fs-2: 2rem;
  --fs-1-5: 1.5rem;
  --fs-1: 1rem;
  --fs-0-95: 0.95rem;
  --fs-0-85: 0.85rem;
  --fs-0-75: 0.75rem;
  --fs-0-65: 0.65rem;
  --fs-0-5: 0.5rem;
  --fs-0-25: 0.275rem;
  --fs-0-2: 0.2rem;
  /*===== Font weight =====*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*===== Margenes Bottom =====*/
  /* .25rem = 4px, .5rem = 8px, .75rem = 12px ... */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
  --mb-3-5: 3rem;
  --mb-4: 4rem;
  --mb-4-5: 4.5rem;
  --mb-5: 5rem;
  --mb-5-5: 5.5rem;
  --mb-6: 6rem;
  --mb-6-5: 6.5rem;
  --mb-7: 7rem;
  --mb-7-5: 7.5rem;
  --mb-8: 8rem;
  --mb-8-5: 8.5rem;
  --mb-9: 9rem;
  --mb-9-5: 9.5rem;
  --mb-10: 10rem;
}

/*========== BASE SECTION ==========*/

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

html {
  scroll-behavior: smooth;
  overflow: scroll;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

/* Remove default margin */
body,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  font-family: var(--pri-font);
  font-size: var(--fs-1);
  padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-family: var(--pri-font);
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  background-color: var(--white);
  color-scheme: light dark;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

li {
  display: inline;
}

a {
  text-decoration: none;
  color: var(--black);
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

section {
  width: 100%;
  max-width: 1350px;
  padding: var(--mb-6) var(--mb-4);
  z-index: 5;
}

.flex {
  display: flex;
}

.flex-col {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.emp {
  color: var(--vc-blue);
  font-weight: 500;
  font-family: var(--cor-font);
  font-style: italic;
}

button {
  width: auto;
  height: auto;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--body-font);
  color: var(--tb-dark);
  text-align: center;
  outline: none;
  border: none;
  padding: 0.65rem 1.25rem;
  padding-right: var(--mb-0-75);
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: var(--mb-1);
}

button span {
  transition: none;
  transition: all 0.2s ease-in;
}

.pri-btn {
  background-color: var(--tb-dark);
  color: var(--white);
  border: 2px var(--tb-dark) solid;
  border-radius: 30px;
}

.pri-btn span {
  border: 2px var(--vc-yellow) solid;
  border-radius: 50%;
  color: var(--white);
  font-size: var(--fs-1);
  padding: 0.35rem;
}

.pri-btn:hover {
  background-color: var(--vc-yellow);
  color: var(--tb-dark);
  font-weight: 500;
}

.pri-btn:hover span {
  rotate: 45deg;
  background-color: var(--tb-dark);
  border: 2px var(--tb-dark) solid;
  color: var(--white);
}

.sec-btn {
  background-color: transparent;
  color: var(--tb-dark);
  border: 2px var(--vc-grey) solid;
  border-radius: 30px;
  font-weight: 500;
  padding: 0.65rem 1.25rem;
}

.sec-btn:hover {
  background-color: var(--vc-blue);
  border: 2px var(--tb-dark) solid;
}

/* DATABASE BUTTONS */

.db-pri-btn {
  background-color: var(--tb-dark);
  color: var(--white);
  border: 2px var(--tb-dark) solid;
  border-radius: 5px;
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
  line-height: 1.1;
}

.db-pri-btn:hover {
  background-color: var(--vc-yellow);
  color: var(--tb-dark);
  font-weight: 500;
}

.db-sec-btn {
  background-color: transparent;
  color: var(--tb-dark);
  border: 2px var(--vc-grey) solid;
  border-radius: 5px;
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
  line-height: 1.1;
}

.db-sec-btn:hover {
  background-color: var(--vc-blue);
  border: 2px var(--tb-dark) solid;
}

.au-btn {
  width: 100%;
  font-size: var(--fs-1);
  background-color: var(--vc-blue);
  border: 2px var(--vc-blue) solid;
  border-radius: 8px;
  color: var(--white);
}

.au-btn span {
  border: 2px var(--vc-yellow) solid;
  border-radius: 50%;
  color: var(--white);
  font-size: var(--fs-1);
  padding: 0.35rem;
}

.au-btn:hover {
  background-color: var(--t-blue);
  border: 2px var(--t-blue) solid;
  /* color: var(--white); */
  font-weight: 500;
}

.au-btn:hover span {
  rotate: 45deg;
  background-color: var(--tb-dark);
  border: 2px var(--tb-dark) solid;
  color: var(--white);
}

.au-btn-alt {
  width: 100%;
  font-size: var(--fs-1);
  background: rgba(230, 248, 252, 1);
  border: 2px rgba(230, 248, 252, 1) solid;
  border-radius: 8px;
  color: var(--vc-blue);
}

.au-btn-alt span {
  border: 2px var(--vc-yellow) solid;
  border-radius: 50%;
  color: var(--white);
  font-size: var(--fs-1);
  padding: 0.35rem;
}

.au-btn-alt:hover {
  background-color: var(--error);
  border: 2px var(--error) solid;
  color: var(--white);
  font-weight: 500;
}

.au-btn-alt:hover span {
  rotate: 45deg;
  background-color: var(--tb-dark);
  border: 2px var(--tb-dark) solid;
  color: var(--white);
}

.ob-btn {
  padding: var(--mb-0-5) var(--mb-1-5);
  font-size: 0.95rem;
  background-color: var(--vc-blue);
  border: 2px var(--vc-blue) solid;
  border-radius: 5px;
  color: var(--white);
  text-align: center;
}

.ob-btn span {
  border: 2px var(--vc-yellow) solid;
  border-radius: 50%;
  color: var(--white);
  font-size: var(--fs-1);
  padding: 0.35rem;
}

.ob-btn:hover {
  background-color: var(--t-blue);
  border: 2px var(--t-blue) solid;
  /* color: var(--white); */
  font-weight: 500;
}

.ob-btn:hover span {
  rotate: 45deg;
  background-color: var(--tb-dark);
  border: 2px var(--tb-dark) solid;
  color: var(--white);
}

.ob-bck {
  padding: var(--mb-0-5) var(--mb-1-5);
  font-size: 0.95rem;
  background: transparent;
  border: 2px #737373 solid;
  border-radius: 5px;
  color: #737373;
  text-align: center;
}

.ob-bck span {
  border: 2px var(--vc-yellow) solid;
  border-radius: 50%;
  color: var(--white);
  font-size: var(--fs-1);
  padding: 0.35rem;
}

.ob-bck:hover {
  background-color: var(--tb-dark);
  border: 2px var(--tb-dark) solid;
  color: var(--white);
  font-weight: 500;
}

.ob-bck:hover span {
  rotate: 45deg;
  background-color: var(--tb-dark);
  border: 2px var(--tb-dark) solid;
  color: var(--white);
}

.pri-alt-btn {
  background-color: var(--vc-yellow);
  color: var(--t-blue);
  border: 2px var(--vc-yellow) solid;
  border-radius: 30px;
  font-weight: 500;
}

.pri-alt-btn span {
  border: 2px var(--tb-dark) solid;
  border-radius: 50%;
  color: var(--tb-dark);
  font-size: var(--fs-1);
  padding: 0.35rem;
}

.pri-alt-btn:hover {
  background-color: var(--tb-dark);
  border: 2px var(--tb-dark) solid;
  color: var(--white);
  font-weight: 500;
}

.pri-alt-btn:hover span {
  border: 2px var(--vc-yellow) solid;
  background-color: var(--vc-yellow);
}

.alt-btn {
  background-color: var(--white);
  color: var(--tb-dark);
  border: 2px var(--white) solid;
  border-radius: 30px;
  font-weight: 500;
}

.alt-btn span {
  border: 1px var(--tb-dark) solid;
  border-radius: 50%;
  color: var(--tb-dark);
  font-size: var(--fs-1);
  padding: 0.35rem;
  /* font-weight: 600; */
}

.alt-btn:hover {
  background-color: var(--vc-yellow);
  border: 2px var(--vc-yellow) solid;
  color: var(--tb-dark);
}

.alt-btn:hover span {
  background-color: var(--tb-dark);
  color: var(--white);
}

.more-btn {
  background: transparent;
  color: var(--tb-dark);
  border: 1px var(--tb-dark) solid;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 400;
  text-align: center;
  padding: var(--mb-0-5) var(--mb-1);
  column-gap: var(--mb-0-75);
}

.more-btn span {
  color: var(--tb-dark);
  border: 1px var(--vc-yellow) solid;
  border-radius: 50%;
  font-size: 0.9rem;
  padding: 0.35rem;
}

.more-btn:hover {
  background-color: var(--vc-yellow);
  color: var(--tb-dark);
}

.more-btn:hover span {
  rotate: 45deg;
  background-color: var(--tb-dark);
  border: 1px var(--tb-dark) solid;
  color: var(--white);
}

.db-fund {
  background-color: var(--vc-blue);
  color: var(--white);
  border: 2px var(--vc-blue) solid;
  border-radius: 8px;
  padding: var(--mb-0-5) var(--mb-0-75);
  column-gap: 0.35rem;
}

.db-fund p {
  font-size: 0.8rem;
  font-weight: 400;
  text-align: center;
  color: var(--white);
}

.db-fund span {
  color: var(--white);
  font-size: 1rem;
}

.db-fund:hover {
  background-color: var(--white);
  border: 2px var(--white) solid;
}

.db-fund:hover p {
  color: var(--tb-dark);
}

.db-fund:hover > span {
  color: var(--tb-dark);
  font-weight: 600;
}

.db-withdraw {
  background-color: transparent;
  color: var(--vc-blue);
  border: 2px var(--vc-blue) solid;
  border-radius: 8px;
  padding: 0.35rem var(--mb-0-75);
  column-gap: var(--mb-0-5);
}

.db-withdraw p {
  font-size: 0.8rem;
  font-weight: 400;
  text-align: center;
  color: var(--vc-blue);
}

.db-withdraw span {
  color: var(--vc-blue);
  font-size: 1rem;
}

.db-withdraw:hover {
  background-color: var(--white);
  border: 2px var(--white) solid;
}

.db-withdraw:hover p {
  color: var(--tb-dark);
  font-weight: 500;
}

.db-withdraw:hover > span {
  color: var(--tb-dark);
  font-weight: 600;
}

.db-view {
  font-size: 0.7rem;
  font-weight: 400;
  text-align: center;
  color: #737373;
  line-height: 1.2;
  padding: 0.3rem 0.7rem;
  border: 1px #737373 solid;
  background-color: transparent;
  border-radius: 30px;
}

.db-view:hover {
  background-color: var(--vc-yellow);
  color: var(--tb-dark);
  border: 1px var(--tb-dark) solid;
}

/*========== MEDIA (ANIMATIONS, TRNASITIONS AND SMOOTH SCROLL) ==========*/
/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*========== ANIMATIONs (FADE, SCROLL) ==========*/
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeY {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes fadeYrev {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes fadeX {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

/* Keyframes for vertical scroll animation  */
@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%); /* Move up by full height of container */
  }
}

/* Keyframe animation to move the wrapper from right to left */
@keyframes nav-left {
  0% {
    transform: translateX(100%); /* Start from right outside the container */
  }
  100% {
    transform: translateX(-100%); /* Move to the left end of the wrapper */
  }
}

/* --------------- ========== PROMPT CARDS ========== ---------------*/
.prompt {
  position: fixed;
  top: var(--mb-1);
  right: var(--mb-1);
  z-index: 5;
}

.prp {
  width: auto;
  padding: var(--mb-0-5) var(--mb-0-75);
  border-radius: 8px;
  column-gap: 0.4rem;
  animation: fade 0.3s ease-in-out;
  display: none;
}

.prp.active {
  display: flex;
}

.prp span {
  font-size: 1.2rem;
  cursor: pointer;
}

.prp i {
  font-size: 1.1rem;
}

.prp p {
  font-size: 0.8rem;
  font-weight: 500;
  text-align: left;
  line-height: 1.1;
}

#prp-close {
  padding-left: var(--mb-0-5);
  cursor: pointer;
}

.prp-fail {
  /* border: 1px var(--error) solid; */
  background-color: #ffd7ca;
}

.prp-fail span,
.prp-fail i {
  color: var(--error);
}

.prp-fail p {
  color: var(--error);
}

.prp-success {
  /* border: 1px var(--error) solid; */
  background-color: #daf4ec;
}

.prp-success span,
.prp-success i {
  color: #18a87c;
}

.prp-success p {
  color: #18a87c;
}

.prp-pending {
  /* border: 1px var(--error) solid; */
  background-color: rgba(230, 248, 252, 1);
  /* background-color: #fff9e6; */
}

.prp-pending span,
.prp-pending i {
  color: var(--vc-blue);
  /* color: #ffc70b; */
}

.prp-pending p {
  color: var(--vc-blue);
  /* color: #ffc70b; */
}

/* --------------- ========== INPUT ERROR MESSAGES ========== ---------------*/
.input-err {
  width: 100%;
  justify-content: flex-start;
  column-gap: var(--mb-0-25);
  animation: fade 0.3s ease;
  /* padding-left: var(--mb-0-25); */
  margin-top: var(--mb-0-25);
  /* border: 1px teal solid; */
  display: none;
}

.input-err.active {
  display: flex;
}

.input-err > span {
  font-size: 0.8rem;
  color: var(--error);
  font-weight: 600;
  margin: 0;
  padding: 0;
  /* transform: translateY(0.25px); */
}

.input-err > p {
  font-size: 0.72rem;
  font-weight: 500;
  text-align: left;
  color: var(--error);
  line-height: 1;
}

/* --------------- ========== ONBOARDING (ALERTS) ========== ---------------*/
.alert {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 0.35rem;
  padding: var(--mb-0-5);
  margin-top: var(--mb-0-25);
  border-radius: 5px;
}

.alert > span {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  padding: 0;
  transform: translateY(0.5px);
}

.alert > p {
  font-size: 0.65rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.35;
}

.alert.yes {
  color: #18a87c;
  background: #daf4ec;
}

.alert.yes span {
  color: #18a87c;
}

.alert.yes p {
  color: #18a87c;
}

.alert.high {
  color: #f0573c;
  background: #ffd7ca;
}

.alert.high span {
  color: #f0573c;
}

.alert.high p {
  color: #f0573c;
}

.alert.med {
  color: #ffc70b;
  background: #fff9e6;
}

.alert.med span {
  color: #ffc70b;
}

.alert.med p {
  color: #ffc70b;
}

.alert.low {
  color: #3454d1;
  background: #e1e6f8;
}

.alert.low span {
  color: #3454d1;
}

.alert.low p {
  color: #3454d1;
}

/* --------------- ========== STATUS ========== ---------------*/
.status {
  flex: 0 0 auto;
  width: auto;
  padding: 0.4rem 0.7rem;
  border-radius: 30px;
}

.status p {
  font-size: 0.6rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.1;
}

.status.complete {
  background: rgba(240, 246, 255, 1);
}

.status.complete p {
  color: dodgerblue;
}

.status.active {
  background: rgba(231, 247, 239, 1);
}

.status.active p {
  color: limegreen;
}

.status.pending {
  background-color: #fff9e6;
}

.status.pending p {
  color: #ffc70b;
}

.status.fail {
  background: rgba(231, 247, 239, 1);
}

.status.fail p {
  color: limegreen;
}

.stat {
  flex: 0 0 auto;
  width: auto;
  padding: 0.4rem 0.7rem;
  border-radius: 30px;
  font-size: 0.6rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.1;
}

.stat.grn {
  background: #daf4ec;
  color: #18a87c;
}

.stat.blu {
  background: #e1e6f8;
  color: #3454d1;
}

.stat.org {
  background-color: #fff9e6;
  color: #ffc70b;
}

.stat.red {
  background: #ffd7ca;
  color: #f0573c;
}

.stat.grey {
  background: #f6f7f9;
  color: #737373;
}

/* --------------- ========== DB - TOGGLE BUTTON ========== ---------------*/
.db-toggle {
  width: 100%;
  justify-content: flex-start;
  column-gap: var(--mb-0-75);
}

.db-tg {
  flex: 0 0 40px;
  height: 22px;
  justify-content: flex-start;
  border-radius: 30px;
  padding: var(--mb-0-25);
  background: #dfeaf2;
  cursor: pointer;
}

.db-toggle.active .db-tg {
  background-color: var(--vc-blue);
  justify-content: flex-end;
}

.db-tg span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--white);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
}

.db-toggle p {
  flex: 0 0 auto;
  font-size: 0.8rem;
  font-weight: 400;
  text-align: left;
  color: #545454;
}

/* ------ >>>>>> ========== HEADER ========== <<<<<< ------ */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  padding: 0;
  z-index: 50;
  /* border: 2px red solid; */
  justify-content: flex-start;
}

.header.active {
  background-color: rgba(250, 250, 250, 0.9);
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

.header.active:hover {
  background-color: var(--white);
}

.nav {
  width: 100%;
  justify-content: space-between;
  /* border: 1px dodgerblue solid; */
  padding: 1rem var(--mb-2);
  border-bottom: 1px #e5e5e5 solid;
}

.nav-logo {
  flex: 0 0 auto;
  justify-content: flex-start;
  overflow: hidden;
  /* border: 1px limegreen solid; */
}

.nav-logo img {
  width: 100px;
  object-fit: cover;
}

.nm-header,
#nm-open {
  display: none;
}

.nav-menu {
  justify-content: flex-end;
  column-gap: var(--mb-1-5);
}

.nm-ul {
  flex: 0 0 auto;
  justify-content: flex-end;
  column-gap: var(--mb-1);
}

.nml {
  position: relative;
}

.nml a {
  font-size: var(--fs-1);
  font-weight: 400;
  text-align: center;
  color: var(--vc-black);
  opacity: 0.85;
}

.nml span {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--vc-blue);
}

.nml:hover a {
  opacity: 1;
}

.nml:hover span {
  width: 100%;
}

.nm-bar {
  width: 1px;
  height: 30px;
  background-color: #737373;
}

.nm-actions {
  justify-content: flex-end;
  column-gap: var(--mb-1);
}

.nm-actions > button {
  font-size: 0.9rem;
}

.nm-actions > button:nth-child(2) {
  padding: 0.75rem 1.25rem;
}

.nb {
  display: none;
}

/* ------ >>>>>> ========== FOOTER ========== <<<<<< ------ */
.footer {
  width: 100%;
  padding: var(--mb-4);
  padding-bottom: var(--mb-2);
  overflow: hidden;
}

.fo-container {
  width: 100%;
  background-color: var(--tb-dark);
  border-radius: 20px;
  justify-content: flex-start;
  /* row-gap: var(--mb-3); */
  padding: var(--mb-3);
  /* border: 1px orange solid; */
  overflow: hidden;
}

.fo-title {
  width: 100%;
  justify-content: center;
  /* border: 1px lime solid; */
}

.fo-title h5 {
  margin: 0;
  padding: 0;
  font-size: 18.5rem;
  font-weight: 400;
  color: var(--vc-yellow);
  text-align: center;
  letter-spacing: -0.1em;
  line-height: 1.1;
}

.fo-links {
  width: 100%;
  justify-content: space-between;
  margin-top: var(--mb-1);
  padding-bottom: var(--mb-1);
  border-bottom: 1px var(--white) solid;
}

.fol {
  flex: 0 0 auto;
  justify-content: flex-start;
  column-gap: var(--mb-1-5);
}

.fol li {
  position: relative;
}

.fol li a {
  font-size: 0.9rem;
  font-weight: 300;
  text-align: center;
  color: var(--white);
  opacity: 0.8;
}

.fol li span {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--vc-yellow);
}

.fol li:hover a {
  opacity: 1;
}

.fol li:hover span {
  width: 100%;
}

.fols {
  flex: 0 0 auto;
  justify-content: flex-end;
  column-gap: var(--mb-1);
}

.fols a {
  flex: 0 0 auto;
  overflow: hidden;
}

.fols a i {
  font-size: 1rem;
  color: var(--white);
  border: 1px var(--vc-yellow) solid;
  padding: var(--mb-0-5);
  border-radius: 50%;
  opacity: 0.8;
  transition: none;
}

.fols a:hover i {
  background-color: var(--vc-yellow);
  color: var(--tb-dark);
  opacity: 1;
}

.fo-base {
  width: 100%;
  padding-top: var(--mb-1);
  justify-content: space-between;
  align-items: flex-start;
}

.fo-base p {
  font-size: 0.8rem;
  font-weight: 300;
  text-align: left;
  color: var(--white);
  opacity: 0.8;
}

.fob {
  flex: 0 0 auto;
  justify-content: flex-end;
  column-gap: var(--mb-1);
}

.fob a {
  font-size: 0.8rem;
  font-weight: 300;
  text-align: center;
  color: var(--white);
  opacity: 0.8;
}

.fob a:hover {
  color: var(--vc-yellow);
  opacity: 1;
}

/*===== MEDIA QUERIES =====*/
/* Media query for screens with a maximum width of 500px */
@media screen and (max-width: 500px) {
  section {
    width: 100%;
    max-width: 1350px;
    padding: var(--mb-4-5) var(--mb-1-5);
    z-index: 5;
  }

  .au-btn {
    width: 100%;
    font-size: 0.9rem;
    border-radius: 5px;
  }

  .au-btn-alt {
    width: 100%;
    font-size: 0.9rem;
    border-radius: 5px;
  }

  .ob-btn {
    font-size: 0.9rem;
    border-radius: 5px;
  }

  /* Buttons - Consistent styling */
  .ob-btn,
  .ob-bck {
    flex: 0 0 48%;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    border-radius: 8px;
  }

  /* --------------- ========== ONBOARDING (ALERTS) ========== ---------------*/
  .alert {
    width: 100%;
    column-gap: 0.5rem;
    padding: var(--mb-0-75);
    margin-top: var(--mb-0-25);
  }

  .alert > span {
    font-size: 0.9rem;
    transform: translateY(0.5px);
  }

  .alert > p {
    font-size: 0.65rem;

    line-height: 1.35;
  }

  /* --------------- ========== INPUT ERROR MESSAGES ========== ---------------*/
  .input-err {
    width: 100%;
    justify-content: center;
    column-gap: var(--mb-0-25);
    margin-top: 0.15rem;
    display: none;
  }

  .input-err.active {
    display: flex;
  }

  .input-err > span {
    font-size: 0.75rem;
    color: var(--error);
    font-weight: 600;
  }

  .input-err > p {
    font-size: 0.65rem;
    font-weight: 500;
    line-height: 1;
  }

  /* ------ >>>>>> ========== HEADER ========== <<<<<< ------ */
  .header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    padding: 0;
    z-index: 50;
    /* border: 2px red solid; */
    justify-content: flex-start;
  }

  .header.active {
    background-color: rgba(250, 250, 250, 0.9);
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
  }

  .header.active:hover {
    background-color: var(--white);
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    /* border: 1px dodgerblue solid; */
    padding: var(--mb-1);
    border-bottom: 1px #e5e5e5 solid;
  }

  .nav-logo img {
    width: 75px;
    object-fit: cover;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    padding: var(--mb-1-5);
    padding-bottom: var(--mb-2);
    background-color: var(--white);
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    row-gap: var(--mb-1-5);
    column-gap: var(--mb-1-5);
    z-index: 55;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    /* border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px; */
    animation: fadeY 0.3s ease-in;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .nm-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    /* border: 1px red solid; */
  }

  .nm-logo {
    flex: 0 0 auto;
    justify-content: flex-start;
    overflow: hidden;
  }

  .nm-logo img {
    width: 70px;
    object-fit: cover;
  }

  #nm-close {
    font-size: 1.5rem;
    color: var(--error);
    /* font-weight: 600; */
  }

  .nm-ul {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    row-gap: var(--mb-0-5);
    column-gap: var(--mb-1);
    padding: var(--mb-1) 0;
    border-top: 1px #e5e5e5 solid;
    border-bottom: 1px #e5e5e5 solid;
  }

  .nml a {
    font-size: 1.05rem;
    opacity: 0.7;
  }

  .nml span {
    position: absolute;
    height: 1.2px;
    background-color: var(--vc-blue);
  }

  .nm-bar {
    display: none;
  }

  .nm-actions {
    justify-content: flex-end;
    column-gap: var(--mb-1);
  }

  .nm-actions > button {
    font-size: 0.85rem;
  }

  .nm-actions > button:nth-child(2) {
    padding: 0.75rem 1rem;
  }

  .nb {
    display: none;
  }

  #nm-open {
    display: inline-block;
    font-size: 1.35rem;
    color: var(--tb-dark);
    cursor: pointer;
  }

  /* ------ >>>>>> ========== FOOTER ========== <<<<<< ------ */
  .footer {
    width: 100%;
    padding: var(--mb-2) var(--mb-1-5);
    padding-bottom: var(--mb-2);
    overflow: hidden;
  }

  .fo-container {
    width: 100%;
    border-radius: 20px;
    justify-content: flex-start;
    padding: var(--mb-2);
    /* border: 1px orange solid; */
    overflow: hidden;
  }

  .fo-title {
    width: 100%;
    justify-content: center;
    /* border: 1px lime solid; */
  }

  .fo-title h5 {
    margin: 0;
    padding: 0;
    font-size: 5.5rem;
    letter-spacing: -0.1em;
    line-height: 1.1;
    margin-left: -0.5rem;
  }

  .fo-links {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-2);
    margin-top: var(--mb-2);
    padding-bottom: var(--mb-2);
    border-bottom: 1px var(--white) solid;
  }

  .fol {
    flex: 0 0 auto;
    justify-content: center;
    column-gap: var(--mb-1-5);
  }

  .fol li {
    position: relative;
  }

  .fol li a {
    font-size: 0.9rem;
    opacity: 0.8;
  }

  .fols {
    flex: 0 0 auto;
    justify-content: center;
    column-gap: var(--mb-1);
  }

  .fols a {
    flex: 0 0 auto;
    overflow: hidden;
  }

  .fols a i {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: none;
  }

  .fo-base {
    width: 100%;
    padding-top: var(--mb-2);
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-1-5);
  }

  .fo-base p {
    font-size: 0.75rem;
    text-align: center;
    opacity: 0.8;
  }

  .fob {
    flex: 0 0 auto;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-0-75);
    column-gap: unset;
  }

  .fob a {
    font-size: 0.75rem;
  }
}

/* Media query for screens with a minimum width of 700px and a maximum width of 900px */
@media screen and (min-width: 700px) and (max-width: 900px) {
}

/* Media query for screens with a minimum width of 1440px and a maximum width of 1600px */
@media screen and (min-width: 1440px) and (max-width: 1600px) {
}
