/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans: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'); */

/* color palette from <https://github.com/vuejs/theme> */
:root {
    --bs-breakpoint-xs: 0;
    --bs-breakpoint-sm: 576px;
    --bs-breakpoint-md: 768px;
    --bs-breakpoint-lg: 992px;
    --bs-breakpoint-xl: 1200px;
    --bs-breakpoint-xxl: 1400px;

    --vt-c-white: #ffffff;
    --vt-c-white-soft: #f8f8f8;
    --vt-c-white-mute: #f2f2f2;

    --vt-c-black: #171C21;
    --vt-c-black-soft: #29323DCC;
    --vt-c-black-mute: #3E4752;

    --vt-c-indigo: #F4F5F5;

    --vt-c-divider-light-1: rgba(60, 60, 60, 0.29);
    --vt-c-divider-light-2: rgba(60, 60, 60, 0.12);
    --vt-c-divider-dark-1: rgba(84, 84, 84, 0.65);
    --vt-c-divider-dark-2: rgba(84, 84, 84, 0.48);

    --vt-c-text-light-1: var(--vt-c-indigo);
    --vt-c-text-light-2: rgba(60, 60, 60, 0.66);
    --vt-c-text-dark-1: var(--vt-c-white);
    --vt-c-text-dark-2: rgb(244, 245, 245);

    --dark-mode-colors-blue-60: #1F7BE9;

    --dark-mode-grey-blue-grey-20: #F4F5F5;
    --dark-mode-grey-blue-grey-30: #ebecee;
    --dark-mode-grey-blue-grey-40: #afb1b4;
    --dark-mode-grey-blue-grey-50: #878D93;
    --dark-mode-grey-blue-grey-60: #6c757d;
    --dark-mode-grey-blue-grey-80: #3E4752;
    --dark-mode-grey-blue-grey-90: #29323D;


}

/* semantic color variables for this project */
:root {
    --color-background: var(--vt-c-black);
    --color-background-soft: var(--vt-c-black-soft);
    --color-background-mute: var(--vt-c-black-mute);

    --color-border: var(--vt-c-divider-dark-2);
    --color-border-hover: var(--vt-c-divider-dark-1);

    --color-heading: var(--vt-c-text-dark-1);
    --color-text: var(--vt-c-text-dark-2);


}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    font-weight: normal;
    word-break: break-word;
    hyphens: manual;
}

body {
    overflow-x: hidden;
    color: var(--color-text);
    background: var(--color-background);
    transition: color 0.5s,
        background-color 0.0s;
    line-height: 1.6;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.1px;
    font-family: 'Red Hat Display',
        -apple-system,
        BlinkMacSystemFont,

        sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html,
body,
#app,
.layout-height {
    height: auto;
    min-height: 100vh;
}

/* text-based components */
a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--dark-mode-grey-blue-grey-50);
    text-underline-offset: 0.2rem;
    color: var(--vt-c-white)
}

a:hover {
    text-decoration-color: var(--dark-mode-grey-blue-grey-80);
    color: var(--dark-mode-grey-blue-grey-30)
}

h1 {
    font-size: 3.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.44px;
}

h2 {
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

}

h3 {
    color: var(--dark-mode-grey-blue-grey-40, #C9CBCF);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.text-50 {
    color: var(--dark-mode-grey-blue-grey-50, #878D93);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    /* 33.6px */
}

.text-home-p {
    color: #898989;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%
}

.headline-highlight {
    color: #298BFE;
    text-transform: uppercase;

    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.32px;
}

/* Success button */

.btn-success {
    --bs-btn-bg: #149257;

}

.btn-outline-success {
    --bs-btn-color: #12c571;
    --bs-btn-border-color: #12c571;
}

/* lists */


ul li {
    margin-bottom: 15px;
}

/* scrollbar */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255, 255, 255, 0.3);
}

/* navbar */
.navbar-dark {
    background-color: rgba(23, 28, 33, 0.80);
    backdrop-filter: blur(15px);
}

.nav-link {
    color: var(--dark-mode-grey-blue-grey-50, #878D93);
    text-decoration: none;
    /* font-family: "Noto Sans", sans-serif; */
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    word-break: keep-all !important;
}

.nav-link:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--dark-mode-grey-blue-grey-50);
    text-underline-offset: 0.4rem;
}

@media only screen and (max-width: 992px) {
    .nav-link {
        padding: 0.5rem 0;
    }
}

.btn-nav {
    border-radius: 8px;
    background: var(--dark-mode-grey-blue-grey-80, #3E4752);
    border: var(--dark-mode-grey-blue-grey-80, #3E4752);
    padding: 8px 25px;
}

/* Footer */
.bg-footer {
    background-color: #111418;
    color: #f2f2f2 !important;
}

.footer-text {
    color: var(--dark-mode-grey-blue-grey-50, #878D93);
    text-decoration: none;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140.625%;
    /* 19.688px */
}

.footer-link-dark {
    color: var(--dark-mode-grey-blue-grey-40);
}

.footer-link-dark:hover {
    color: var(--dark-mode-grey-blue-grey-30);
}


.footer-alt-text {
    opacity: 0.5;
    color: #FFF;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 18.2px */
    width: 75px;
    height: 19px;
}

/* card */

.card-dark {
    border-radius: 32px;
    background: rgba(41, 50, 61, 0.8);
    backdrop-filter: blur(250px);
    padding: 16px;
    transition: filter .2s ease-in-out;

}

.card-dark:hover {
    filter: brightness(125%);


}

.rounded-card {
    border-radius: 24px;
    padding: 24px;
    background: var(--dark-mode-grey-blue-grey-80, #3e4752);
}

.rounded-card .icon {
    font-size: 26px;
    color: var(--dark-mode-grey-blue-grey-50, #878D93);
}

.card-title {
    color: var(--dark-mode-grey-blue-grey-20, #f4f5f5);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 28px */
}

.copy-image-title {
    color: var(--dark-mode-grey-blue-grey-20);
    font-size: 31px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    /* 28px */
}

.card-text {
    color: var(--dark-mode-grey-blue-grey-40);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 22.4px */
}

.card-text-white {
    color: var(--dark-mode-grey-blue-grey-30);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

/* nav tabs */



.nav-underline .nav-link:hover {
    text-decoration: none;

}

.popover {
    /* --bs-popover-border-color: var(--bs-secondary-color); */
    --bs-popover-bg: var(--bs-tertiary-bg);
}

.wide-popover {
    --bs-popover-max-width: 350px;
}

.hr.hr-blurry {
    background-color: transparent;
    background-image: linear-gradient(90deg, transparent, hsl(0, 0%, 40%), transparent);
    height: 1px;
    opacity: 0.50;
}

hr.hr {
    border-top: none !important
}