* {
    margin: 0;
    padding: 0;
    box-shadow: none;
}
* {
  --primary: #b5ff47;
  --primary-foreground: #07070f;
    font-family: "Outfit", sans-serif;
  --foreground: #f0eeff;
  --muted-foreground: #767693;
  --background: #07070F;
  --card: #111127;
  --secondary: #1a1a36;

  --border: rgba(255, 255, 255, 0.08);

  --accent: #7c5dfa;
}
body {
    background-color: var(--background);
}
@media (max-width:900px){
    .telephone_hidden {
        display: none !important;
    }
}
.flex {
    display: flex;
}
.btn-primary {
    background-color: var(--primary);
    outline: none;
    border: none;
    border-radius: 100px;
    padding: 1rem;
    font-weight: bold;
    cursor: pointer;
}
.my_container {
    min-height: calc(100vh - 90px); padding-top: 80px;position: relative;
}
@media (max-width:900px) {
    .my_container {
        min-height: calc(100vh - 60px);
        padding-top: 50px;
    }
}
@media (max-width:600px) {
    .my_container {
        min-height: calc(100vh - 30px);
        padding-top:20px;
    }
}
.badge {
    letter-spacing: 0.04em;
text-transform: uppercase;
    align-items: center;
    font-size: 0.8em;
    font-weight: 600;
    display: inline-flex;
    background-color: rgba(181, 255, 71, 0.1);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(181,255,71,0.25);
    border-radius: 100px;
    gap: 0.375rem;
    padding: 0.35rem 0.9rem;
    color: var(--primary);
}
h3 {
    color: white;
}
h2 {
    color: white;
}
.hidden {
    display: none !important;
}
.div_toggle {
    padding: 0px 1.5rem 1.25rem; color: var(--muted-foreground); font-size: 0.9rem; line-height: 1.65;
}
.btn_color {
    color: var(--primary) !important;
    background-color: rgba(181, 255, 71, 0.1) !important;
    border-width: 1px !important;
    border-style: solid !important;
    border-color: var(--primary) !important;
}