:root {
    --primary: #5567ff;
    --primary-content: #ffffff;
    --primary-dark: #1321ab;
    --primary-light: #8895ff;
    --secondary: #ffb455;
    --secondary-content: #552f00;
    --secondary-dark: #ff9d22;
    --secondary-light: #ffca88;
    --background: #f0f0f0;
    --foreground: #fbfbfb;
    --border: #dfdfdf;
    --copy: #262626;
    --copy-light: #666666;
    --copy-lighter: #8c8c8c;
    --success: #55ff55;
    --warning: #ffff55;
    --error: #ff5555;
    --success-content: #005500;
    --warning-content: #555500;
    --error-content: #550000;
}

body {
    padding-top: 75px;
}

.dark-theme {
    --primary: #5567ff;
    --primary-content: #ffffff;
    --primary-dark: #2239ff;
    --primary-light: #8895ff;
    --secondary: #ff55bc;
    --secondary-content: #550033;
    --secondary-dark: #ff22a8;
    --secondary-light: #ff88d0;
    --background: #111222;
    --foreground: #191c34;
    --border: #292e56;
    --copy: #fafafd;
    --copy-light: #cbcee6;
    --copy-lighter: #878dc5;
    --success: #55ff55;
    --warning: #ffff55;
    --error: #ff5555;
    --success-content: #005500;
    --warning-content: #555500;
    --error-content: #550000;
}

.color-white {
    color: white !important;
}

.container-icons-three {
    display: flex;
    justify-content: space-between;
}

.icons-three svg {
    height: 200px;
    width: 200px;
    color: var(--primary-content) !important;
}

.icons-three {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-right: 25%;
    background-color: var(--foreground);
    border: 0.01rem solid var(--primary);
    border-radius: 0.25rem;
}

.icon-bottom-text {
    font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif!important;
    font-size: 20pt;
    text-align: center;
    width: 300px;
    background-color: var(--foreground);
    border-radius: 0.5rem;
    margin-top: 7px;
    color: var(--copy)
}


/* #low-margin {
    margin-left: 10% !important;
} */

#bg-primary {
    /* background-image: linear-gradient(to right, var(--primary) 0.001rem, transparent 1px), linear-gradient(to bottom, var(--primary) 0.001rem, transparent 1px); */
    padding-bottom: 200px;
}

.under-hero-title {
    color: var(--copy) !important;
    text-align: center;
    padding: 2%;
    border-bottom: 0.25rem solid var(--border);
    border-right: 0.25rem solid var(--border);
    border-bottom-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.under-hero-cards {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 20px;
    align-items: stretch;
}

.under-hero-card {
    background-color: var(--foreground);
    width: 400px;
    max-height: 400px;
    padding: 1.75rem;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
    color: var(--copy) !important;
    font-weight: 300 !important;
    font-size: 30px;
    /* border-radius: 0.5rem; */
}

.under-hero-card-text {
    max-height: 400px;
}

.top-border {
    border-top: 1px solid var(--border);
}

.bottom-border {
    border-bottom: 1px solid var(--border);
}

.left-border {
    border-left: 1px solid var(--border);
}

.right-border {
    border-right: 1px solid var(--border);
}

#header {
    padding-top: 0 !important;
}

@media (max-width:768px) {
    [dir] .mdk-header--shadow-show {
        box-shadow: none;
    }
    [dir].navbar {
        padding-top: 15px
    }
    .mdk-header__bg,
    #header,
    .bgimage {
        display: flex!important;
        flex-direction: column;
        flex-wrap: wrap;
    }
    .bothbutons {
        flex-direction: column;
    }
    .under-hero-cards {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .under-hero-card {
        font-size: 25px;
        padding: 1.75rem 3rem;
    }
    .van-item svg {}
    [dir] .btn-group-lg>.btn,
    [dir] .btn-lg {
        padding: 10px 20px !important;
    }
    .h1,
    h1 {
        font-size: 1.5rem;
    }
    .navbar {
        display: flex !important;
        flex-wrap: nowrap !important;
        /* never move items to a new line */
        align-items: center;
        justify-content: space-between;
        /* if they get *really* small, enable scrolling */
    }
    .text-buttons-nav {
        display: none;
    }
}

.tooltip {
    display: none !important;
}

.text-buttons-nav {
    margin-right: 1rem;
}

.under-hero-icon {
    stroke: var(--copy);
    height: 75px;
    width: 75px;
}

.under-hero-icon-title {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.separation-margin {
    width: 50px;
    height: 100px;
}

#hero {
    /* background-image: url('/static/images/Hero.png');
    background-size: cover; */
    background-color: transparent!important;
}

.bgimage {
    background-image: url('/static/images/Hero.png');
    background-size: cover;
}

.nav-item {
    display: flex;
    align-items: center;
}

.gap-1rem {
    gap: 1rem
}