@charset "UTF-8";

:root {
    --bs-blue: #377dff;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #ed4c78;
    --bs-orange: #fd7e14;
    --bs-yellow: #f5ca99;
    --bs-green: #198754;
    --bs-teal: #00c9a7;
    --bs-cyan: #09a5be;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #8c98a4;
    --bs-gray-dark: #71869d;
    --bs-gray-100: #f9fafc;
    --bs-gray-200: #f8fafd;
    --bs-gray-300: #e7eaf3;
    --bs-gray-400: #bdc5d1;
    --bs-gray-500: #97a4af;
    --bs-gray-600: #8c98a4;
    --bs-gray-700: #677788;
    --bs-gray-800: #71869d;
    --bs-gray-900: #1e2022;
    --bs-primary: #703eeb;
    --bs-secondary: #71869d;
    --bs-success: #00c9a7;
    --bs-info: #09a5be;
    --bs-warning: #f5ca99;
    --bs-danger: #ed4c78;
    --bs-light: #f9fafc;
    --bs-dark: #132144;
    --bs-primary-rgb: 55, 125, 255;
    --bs-secondary-rgb: 113, 134, 157;
    --bs-success-rgb: 0, 201, 167;
    --bs-info-rgb: 9, 165, 190;
    --bs-warning-rgb: 245, 202, 153;
    --bs-danger-rgb: 237, 76, 120;
    --bs-light-rgb: 249, 250, 252;
    --bs-dark-rgb: 19, 33, 68;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 103, 119, 136;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: Inter, sans-serif;
    --bs-body-font-size: 0.875rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #677788;
    --bs-body-bg: #fff;
    --bs-border-width: 0.0625rem;
    --bs-border-style: solid;
    --bs-border-color: rgba(231, 234, 243, 0.7);
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.5rem;
    --bs-border-radius-sm: 0.3125rem;
    --bs-border-radius-lg: 0.75rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #377dff;
    --bs-link-hover-color: #1366ff;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fdf4eb;
    --fs-3: 18px
}



/* =========================================================
   MATFY — TOPBAR / MEGA MENU
   ========================================================= */

:root {
    --matfy-text: #19172b;
    --matfy-muted: #77738a;
    --matfy-border: #eeeaf4;
    --matfy-purple: #7657e8;
    --matfy-purple-soft: #f4f1ff;
    --matfy-beige: #faf8f4;
}




/* =========================================================
   TOPBAR LINKS
   ========================================================= */

.top-bar-menu-link {
    position: relative;

    display: inline-flex !important;
    align-items: center;

    gap: .45rem;

    color: var(--matfy-text) !important;

    font-size: .94rem;
    font-weight: 500;

    transition: color .2s ease;
}


/*
 * Flecha únicamente para dropdowns
 */

.dropdown_topbar>.top-bar-menu-link::after {

    content: "";

    width: 6px;
    height: 6px;

    margin-top: -3px;

    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;

    transform: rotate(45deg);

    transition:
        transform .2s ease,
        color .2s ease;
}


.dropdown_topbar.is-open>.top-bar-menu-link,
.dropdown_topbar:hover>.top-bar-menu-link {

    color: var(--matfy-purple) !important;
}


.dropdown_topbar.is-open>.top-bar-menu-link::after {

    transform: rotate(225deg);

}


/* =========================================================
   DROPDOWN CONTAINER
   ========================================================= */

.dropdown_topbar {
    position: relative;
}


/*
 * IMPORTANTE:
 *
 * Ya NO utilizamos display/visibility mediante :hover.
 *
 * El JS añade .is-open.
 */

.dropdown_topbar>.dropdown-menu {
    position: absolute;

    /*
     * Alineado con el inicio del botón
     */
    left: 0;
    right: auto;

    top: calc(100% + 8px);

    width: min(760px, calc(100vw - 40px));

    margin: 0;
    padding: 0;

    border: 1px solid rgba(30, 24, 55, .07);
    border-radius: 20px;

    background: #fff;

    box-shadow:
        0 25px 70px rgba(47, 35, 91, .14),
        0 8px 25px rgba(47, 35, 91, .06);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(8px);

    transition:
        opacity .18s ease,
        transform .22s ease,
        visibility .18s ease;

    z-index: 1050;
}



.dropdown_topbar>.dropdown-menu::before {

    content: "";

    position: absolute;

    top: -35px;

    left: 0;
    right: 0;

    height: 35px;

}



.dropdown_topbar.is-open>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
}

/* =========================================================
   PREVIEW
   ========================================================= */

.mega-menu-preview {

    position: relative;

    padding: 32px;

    overflow: hidden;

    background:
        radial-gradient(circle at 100% 0%,
            rgba(118, 87, 232, .09),
            transparent 38%),
        #fff;

}


.mega-preview-content {

    position: relative;

    z-index: 2;

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    animation: matfyPreviewIn .22s ease;

}


.mega-preview-kicker {

    display: block;

    margin-bottom: 8px;

    color: var(--matfy-purple);

    font-size: .67rem;

    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;

}


.mega-preview-title {

    margin: 0;

    color: var(--matfy-text);

    font-size: 1.5rem;

    font-weight: 650;

    letter-spacing: -.035em;

}


.mega-preview-description {

    max-width: 370px;

    margin: 9px 0 21px;

    color: var(--matfy-muted);

    font-size: .84rem;

    line-height: 1.65;

}


/* =========================================================
   PREVIEW LINK
   ========================================================= */

.mega-preview-link {
    display: inline-flex;
    margin-bottom: 1.5rem !important;
    align-items: center;
    gap: 7px;
    width: fit-content;
    color: var(--matfy-purple) !important;
    font-size: .79rem;
    font-weight: 600;
    text-decoration: none;

}


.mega-preview-link svg {

    transition: transform .18s ease;

}


.mega-preview-link:hover svg {

    transform: translateX(3px);

}


/* =========================================================
   MOCKUP
   ========================================================= */

.mega-preview-card {

    position: absolute;

    right: 28px;
    bottom: 24px;

    z-index: 1;

    width: 190px;
    height: 128px;

    padding: 12px;

    border: 1px solid rgba(118, 87, 232, .10);

    border-radius: 14px;

    background: rgba(250, 248, 244, .72);

    box-shadow:
        0 15px 35px rgba(47, 35, 91, .08);

    transform: rotate(2deg);

    opacity: .9;

}


.mega-preview-card-header {

    display: flex;

    align-items: center;

    gap: 5px;

    margin-bottom: 12px;

}


.mega-preview-dot {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #d8d1ec;

}


.mega-preview-line {

    height: 6px;

    margin-bottom: 7px;

    border-radius: 10px;

    background: #e9e5f2;

}


.mega-preview-line.short {
    width: 58%;
}

.mega-preview-line.medium {
    width: 78%;
}

.mega-preview-line.long {
    width: 92%;
}


/* =========================================================
   FOOTER
   ========================================================= */

.mega-menu-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 14px 22px;

    border-top: 1px solid var(--matfy-border);

    background: #fff;

    border-radius: 0 0 22px 22px;

}


.mega-menu-footer-label {

    color: var(--matfy-muted);

    font-size: .69rem;

    font-weight: 600;

}


.mega-menu-footer-links {

    display: flex;

    align-items: center;

    gap: 5px;

}


.mega-menu-footer-link {

    display: inline-flex;

    padding: 6px 10px;

    border-radius: 8px;

    color: var(--matfy-text) !important;

    font-size: .7rem;

    font-weight: 500;

    text-decoration: none;

    transition:
        color .18s ease,
        background .18s ease;

}


.mega-menu-footer-link:hover {

    color: var(--matfy-purple) !important;

    background: var(--matfy-purple-soft);

}


/* =========================================================
   SOLUTIONS
   ========================================================= */

.mega-menu-solutions {

    display: grid;

    grid-template-columns: 250px 1fr;

    min-height: 300px;

    overflow: hidden;

    border-radius: 22px;

}


.mega-menu-solutions .mega-menu-sidebar {

    background: #fff;

}


/* =========================================================
   ANIMATION
   ========================================================= */

@keyframes matfyPreviewIn {

    from {

        opacity: 0;

        transform: translateY(4px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991.98px) {


    /* ---------------------------------------------------------
     HEADER
     --------------------------------------------------------- */

    #header .navbar-nav-wrap {

        flex-wrap: wrap;

    }


    #header .navbar-collapse {

        width: 100%;

        flex-basis: 100%;

    }


    #header .navbar-collapse>.navbar-nav {

        display: block;

        width: 100%;

        padding-top: 18px;

    }


    #header .navbar-collapse>.navbar-nav>.push-right {

        margin-left: 0 !important;

    }


    /* ---------------------------------------------------------
     DROPDOWN
     --------------------------------------------------------- */

    .dropdown_topbar {

        width: 100%;

    }


    .dropdown_topbar>.top-bar-menu-link {

        width: 100%;

        justify-content: space-between;

        padding-left: 0 !important;
        padding-right: 0 !important;

        padding-top: 12px;
        padding-bottom: 12px;

    }


    /*
   * En móvil sí queremos una flecha.
   */

    .dropdown_topbar>.top-bar-menu-link::after {

        display: block;

        margin-right: 5px;

    }


    .dropdown_topbar.is-open>.top-bar-menu-link::after {

        transform: rotate(225deg);

    }


    /*
   * El dropdown deja de ser flotante.
   */

    .dropdown_topbar>.dropdown-menu {

        position: static;

        width: 100%;

        margin: 0;

        padding: 0;

        border: 0;

        border-radius: 0;

        box-shadow: none;

        background: transparent;

        overflow: hidden;

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transform: none;

        max-height: 0;

        transition:
            max-height .3s ease,
            opacity .2s ease,
            visibility .2s ease;

    }


    /*
   * Dropdown abierto
   */

    .dropdown_topbar.is-open>.dropdown-menu {

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: none;

        max-height: 900px;

    }


    .dropdown_topbar>.dropdown-menu::before {

        display: none;

    }


   

    /*
   * Botones login / CTA
   */

    #header .navbar-collapse>.navbar-nav>li {

        width: 100%;

    }


    #header .navbar-collapse>.navbar-nav>li>.navbar-btn {

        width: 100%;

        margin-top: 8px;

    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .dropdown_topbar>.dropdown-menu,
    .mega-menu-item,
    .mega-preview-link svg {

        transition: none;

    }

    .mega-preview-content {

        animation: none;

    }

}


/* =========================================================
     REDUCED MOTION
     ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .dropdown_topbar>.dropdown-menu,
    .mega-menu-item,
    .mega-preview-link svg {
        transition: none;
    }

    .mega-preview-content {
        animation: none;
    }

}

*,
::after,
::before {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    overscroll-behavior-x: none;
}

hr {
    margin: 1.75rem 0;
    color: rgba(231, 234, 243, .7);
    border: 0;
    border-top: .0625rem solid;
    opacity: 1
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #1e2022
}

.h1,
h1 {
    font-size: calc(1.26609375rem + .193125vw)
}

@media (min-width:1200px) {

    .h1,
    h1 {
        font-size: 1.4109375rem
    }
}

.h2,
h2 {
    font-size: calc(1.25625rem + .075vw)
}

@media (min-width:1200px) {

    .h2,
    h2 {
        font-size: 1.3125rem
    }
}

.h3,
h3 {
    font-size: 1.1484375rem
}

.h4,
h4 {
    font-size: .984375rem
}

.h5,
h5 {
    font-size: .875rem
}

.h6,
h6 {
    font-size: .765625rem
}

p {
    margin-top: 0;
    margin-bottom: 1rem
}

ul {
    padding-left: 2rem
}

ul {
    margin-top: 0;
    margin-bottom: 1rem
}

ul ul {
    margin-bottom: 0
}

blockquote {
    margin: 0 0 1rem
}

b,
strong {
    font-weight: bolder
}

.small,
small {
    font-size: .875em
}

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

a:hover {
    color: var(--bs-link-hover-color)
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none
}

img,
svg {
    vertical-align: middle
}

table {
    caption-side: bottom;
    border-collapse: collapse
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent
}

tbody,
td,
th,
thead,
tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0
}

label {
    display: inline-block
}

button {
    border-radius: 0
}

button:focus:not(:focus-visible) {
    outline: 0
}

button,
input,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button,
select {
    text-transform: none
}

[role=button] {
    cursor: pointer
}

select {
    word-wrap: normal
}

select:disabled {
    opacity: 1
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
    display: none !important
}

[type=button],
button {
    -webkit-appearance: button
}

[type=button]:not(:disabled),
button:not(:disabled) {
    cursor: pointer
}

::-moz-focus-inner {
    padding: 0;
    border-style: none
}

textarea {
    resize: vertical
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
    padding: 0
}

::-webkit-inner-spin-button {
    height: auto
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-color-swatch-wrapper {
    padding: 0
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button
}

::file-selector-button {
    font: inherit;
    -webkit-appearance: button
}

progress {
    vertical-align: baseline
}

[hidden] {
    display: none !important
}

.lead {
    font-size: 1.09375rem;
    font-weight: 400
}

.display-2 {
    font-size: calc(1.525rem + 3.3vw);
    font-weight: 600;
    line-height: 1.2
}

@media (min-width:1200px) {
    .display-2 {
        font-size: 4rem
    }
}

.display-3 {
    font-size: calc(1.425rem + 2.1vw);
    font-weight: 600;
    line-height: 1.2
}

@media (min-width:1200px) {
    .display-3 {
        font-size: 3rem
    }
}

/* .display-4 {
    font-size: calc(1.325rem + .9vw);
    font-weight: 600;
    line-height: 1.2
} */

@media (min-width:1200px) {
    .display-4 {
        font-size: 2rem
    }
}

.display-5 {
    font-size: calc(1.275rem + .3vw);
    font-weight: 600;
    line-height: 1.2
}

@media (min-width:1200px) {
    .display-5 {
        font-size: 1.5rem
    }
}

.display-6 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2
}

.list-unstyled {
    padding-left: 0;
    list-style: none
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem
}

.blockquote>:last-child {
    margin-bottom: 0
}

.container,
.container-lg {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width:992px) {

    .container,
    .container-lg {
        max-width: 960px
    }
}

@media (min-width:1200px) {

    .container,
    .container-lg {
        max-width: 1320px
    }
}

@media (min-width:1400px) {

    .container,
    .container-lg {
        max-width: 1480px
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x))
}

.row>* {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y)
}

.col {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%
}

.col-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto
}

.col-3 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%
}

.col-4 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%
}

.col-6 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%
}


.col-7 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%
}

.col-8 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%
}

.col-9 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%
}

.col-12 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%
}

.g-4 {
    --bs-gutter-x: 1.5rem
}

.g-4 {
    --bs-gutter-y: 1.5rem
}

@media (min-width:576px) {
    .col-sm {
        -ms-flex: 1 0 0%;
        flex: 1 0 0%
    }

    .col-sm-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto
    }

    .col-sm-6 {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%
    }
}

@media (min-width:768px) {
    .col-md-3 {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%
    }

    .col-md-4 {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-md-6 {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%
    }
}

@media (min-width:992px) {
    .col-lg {
        -ms-flex: 1 0 0%;
        flex: 1 0 0%
    }

    .col-lg-3 {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%
    }

    .col-lg-4 {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-lg-7 {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-lg-8 {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66666667%
    }
}

.table {
    --bs-table-color: var(--bs-body-color);
    --bs-table-bg: transparent;
    --bs-table-border-color: rgba(231, 234, 243, 0.7);
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: var(--bs-body-color);
    --bs-table-striped-bg: #f9fafc;
    --bs-table-active-color: var(--bs-body-color);
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-bottom: 1rem;
    color: var(--bs-table-color);
    vertical-align: top;
    border-color: var(--bs-table-border-color)
}

.table>:not(caption)>*>* {
    padding: .75rem .75rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: .0625rem;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg)
}

.table>tbody {
    vertical-align: inherit
}

.table>thead {
    vertical-align: bottom
}

.table-hover>tbody>tr:hover>* {
    --bs-table-accent-bg: var(--bs-table-hover-bg)
}

.form-control {
    display: block;
    width: 100%;
    padding: .6125rem 1rem;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #1e2022;
    background-color: #fff;
    background-clip: padding-box;
    border: .0625rem solid rgba(231, 234, 243, .7);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .3125rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.btn {
    --bs-btn-padding-x: 1rem;
    --bs-btn-padding-y: 0.6125rem;
    --bs-btn-font-family: ;
    --bs-btn-font-size: 0.875rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: #677788;
    --bs-btn-bg: transparent;
    --bs-btn-border-width: 0.0625rem;
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: 0.3125rem;
    --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
    --bs-btn-disabled-opacity: 0.65;
    --bs-btn-focus-box-shadow: 0 0 0 0 rgba(var(--bs-btn-focus-shadow-rgb), .5);
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: var(--bs-btn-color);
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: var(--bs-btn-border-radius);
    background-color: var(--bs-btn-bg);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .btn {
        transition: none
    }
}

.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color)
}

.btn:focus {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
    outline: 0;
    box-shadow: var(--bs-btn-focus-box-shadow)
}

.btn.active,
.btn.show,
.btn:active {
    color: var(--bs-btn-active-color);
    background-color: var(--bs-btn-active-bg);
    border-color: var(--bs-btn-active-border-color)
}

.btn.active:focus,
.btn.show:focus,
.btn:active:focus {
    box-shadow: var(--bs-btn-focus-box-shadow)
}

.btn.disabled,
.btn:disabled {
    color: var(--bs-btn-disabled-color);
    pointer-events: none;
    background-color: var(--bs-btn-disabled-bg);
    border-color: var(--bs-btn-disabled-border-color);
    opacity: var(--bs-btn-disabled-opacity)
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #377dff;
    --bs-btn-border-color: #377dff;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #2f6ad9;
    --bs-btn-hover-border-color: #2c64cc;
    --bs-btn-focus-shadow-rgb: 85, 145, 255;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #2c64cc;
    --bs-btn-active-border-color: #295ebf;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #377dff;
    --bs-btn-disabled-border-color: #377dff
}

.btn-dark {
    --bs-btn-color: #fff;
    --bs-btn-bg: #132144;
    --bs-btn-border-color: #132144;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #364260;
    --bs-btn-hover-border-color: #2b3757;
    --bs-btn-focus-shadow-rgb: 54, 66, 96;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #424d69;
    --bs-btn-active-border-color: #2b3757;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #132144;
    --bs-btn-disabled-border-color: #132144
}

.btn-outline-primary {
    --bs-btn-color: #377dff;
    --bs-btn-border-color: #377dff;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #377dff;
    --bs-btn-hover-border-color: #377dff;
    --bs-btn-focus-shadow-rgb: 55, 125, 255;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #377dff;
    --bs-btn-active-border-color: #377dff;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #377dff;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #377dff;
    --bs-gradient: none
}

.btn-link {
    --bs-btn-font-weight: 400;
    --bs-btn-color: var(--bs-link-color);
    --bs-btn-bg: transparent;
    --bs-btn-border-color: transparent;
    --bs-btn-hover-color: var(--bs-link-hover-color);
    --bs-btn-hover-border-color: transparent;
    --bs-btn-active-color: var(--bs-link-hover-color);
    --bs-btn-active-border-color: transparent;
    --bs-btn-disabled-color: #8c98a4;
    --bs-btn-disabled-border-color: transparent;
    --bs-btn-box-shadow: none;
    --bs-btn-focus-shadow-rgb: 85, 145, 255;
    text-decoration: none
}

.btn-link:focus {
    color: var(--bs-btn-color)
}

.btn-link:hover {
    color: var(--bs-btn-hover-color)
}

.btn-lg {
    --bs-btn-padding-y: 0.75rem;
    --bs-btn-padding-x: 1rem;
    --bs-btn-font-size: 0.875rem;
    --bs-btn-border-radius: 0.3125rem
}

.btn-sm {
    --bs-btn-padding-y: 0.5rem;
    --bs-btn-padding-x: 1rem;
    --bs-btn-font-size: 0.8125rem;
    --bs-btn-border-radius: 0.3125rem
}

.fade {
    transition: opacity .15s linear
}

@media (prefers-reduced-motion:reduce) {
    .fade {
        transition: none
    }
}

.fade:not(.show) {
    opacity: 0
}

.collapse:not(.show) {
    display: none
}

.dropdown {
    position: absolute
}

.dropdown-menu {
    --bs-dropdown-min-width: 10rem;
    --bs-dropdown-padding-x: 0.5rem;
    --bs-dropdown-padding-y: 0.5rem;
    --bs-dropdown-spacer: 0.625rem;
    --bs-dropdown-font-size: 0.875rem;
    --bs-dropdown-color: #677788;
    --bs-dropdown-bg: #fff;
    --bs-dropdown-border-color: var(--bs-border-color-translucent);
    --bs-dropdown-border-radius: 0.5rem;
    --bs-dropdown-border-width: 0;
    --bs-dropdown-inner-border-radius: 0.5rem;
    --bs-dropdown-divider-bg: rgba(231, 234, 243, 0.7);
    --bs-dropdown-divider-margin-y: 0.5rem;
    --bs-dropdown-box-shadow: 0rem 0.6125rem 2.5rem 0.6125rem rgba(140, 152, 164, 0.175);
    --bs-dropdown-link-color: #1e2022;
    --bs-dropdown-link-hover-color: #1b1d1f;
    --bs-dropdown-link-hover-bg: rgba(189, 197, 209, 0.2);
    --bs-dropdown-link-active-color: #1e2022;
    --bs-dropdown-link-active-bg: rgba(189, 197, 209, 0.2);
    --bs-dropdown-link-disabled-color: #97a4af;
    --bs-dropdown-item-padding-x: 1rem;
    --bs-dropdown-item-padding-y: 0.5rem;
    --bs-dropdown-header-color: #8c98a4;
    --bs-dropdown-header-padding-x: 1rem;
    --bs-dropdown-header-padding-y: 0.5rem;
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: var(--bs-dropdown-min-width);
    padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
    margin: 0;
    font-size: var(--bs-dropdown-font-size);
    color: var(--bs-dropdown-color);
    text-align: left;
    list-style: none;
    background-color: var(--bs-dropdown-bg);
    background-clip: padding-box;
    border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
    border-radius: var(--bs-dropdown-border-radius);
    box-shadow: (99, 99, 99, .2) 0 2px 8px 0
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: var(--bs-dropdown-link-hover-bg);
    color: #000
}

.dropdown-item.active,
.dropdown-item:active {
    text-decoration: none;
    background-color: var(--bs-dropdown-link-active-bg)
}

.dropdown-item.disabled,
.dropdown-item:disabled {
    color: var(--bs-dropdown-link-disabled-color);
    pointer-events: none;
    background-color: transparent
}

.dropdown-menu.show {
    display: block
}

.nav {
    --bs-nav-link-padding-x: 1rem;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight: ;
    --bs-nav-link-color: #132144;
    --bs-nav-link-hover-color: #1366ff;
    --bs-nav-link-disabled-color: #bdc5d1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.nav-link {
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    color: var(--bs-nav-link-color);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .nav-link {
        transition: none
    }
}

.nav-link:focus,
.nav-link:hover {
    color: var(--bs-nav-link-hover-color)
}

.nav-link.disabled {
    color: var(--bs-nav-link-disabled-color);
    pointer-events: none;
    cursor: default
}

.nav-tabs {
    --bs-nav-tabs-border-width: 0.0625rem;
    --bs-nav-tabs-border-color: rgba(231, 234, 243, 0.7);
    --bs-nav-tabs-border-radius: 0;
    --bs-nav-tabs-link-hover-border-color: rgba(231, 234, 243, 0.7);
    --bs-nav-tabs-link-active-color: #377dff;
    --bs-nav-tabs-link-active-bg: transparent;
    --bs-nav-tabs-link-active-border-color: #377dff;
    border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)
}

.nav-tabs .nav-link {
    margin-bottom: calc(var(--bs-nav-tabs-border-width) * -1);
    background: 0 0;
    border: var(--bs-nav-tabs-border-width) solid transparent;
    border-top-left-radius: var(--bs-nav-tabs-border-radius);
    border-top-right-radius: var(--bs-nav-tabs-border-radius)
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    isolation: isolate;
    border-color: var(--bs-nav-tabs-link-hover-border-color)
}

.nav-tabs .nav-link.disabled,
.nav-tabs .nav-link:disabled {
    color: var(--bs-nav-link-disabled-color);
    background-color: transparent;
    border-color: transparent
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: var(--bs-nav-tabs-link-active-color);
    background-color: var(--bs-nav-tabs-link-active-bg);
    border-color: var(--bs-nav-tabs-link-active-border-color)
}

.nav-tabs .dropdown-menu {
    margin-top: calc(var(--bs-nav-tabs-border-width) * -1);
    border-top-left-radius: 0;
    border-top-right-radius: 0
}




.navbar-nav {
    --bs-nav-link-padding-x: 0;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight: ;
    --bs-nav-link-color: var(--bs-navbar-color);
    --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
    --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}



.navbar-nav .dropdown-menu {
    position: static
}

.navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-align: center;
    align-items: center
}

.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: transparent;
    border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition)
}

@media (prefers-reduced-motion:reduce) {
    .navbar-toggler {
        transition: none
    }
}

.navbar-toggler:hover {
    text-decoration: none
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width)
}

@media (min-width:992px) {
    .navbar-expand-lg {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .navbar-expand-lg .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
        width: max-content
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x)
    }

    .navbar-expand-lg .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .navbar-expand-lg .navbar-toggler {
        display: none
    }
}

.card {
    --bs-card-spacer-y: 1.3125rem;
    --bs-card-spacer-x: 1.3125rem;
    --bs-card-title-spacer-y: 0.25rem;
    --bs-card-border-width: 0.0625rem;
    --bs-card-border-color: rgba(231, 234, 243, 0.7);
    --bs-card-border-radius: 0.75rem;
    --bs-card-box-shadow: 0rem 0.375rem 0.75rem rgba(140, 152, 164, 0.075);
    --bs-card-inner-border-radius: 0.6875rem;
    --bs-card-cap-padding-y: 1.3125rem;
    --bs-card-cap-padding-x: 1.3125rem;
    --bs-card-cap-bg: transparent;
    --bs-card-cap-color: ;
    --bs-card-height: ;
    --bs-card-color: ;
    --bs-card-bg: #fff;
    --bs-card-img-overlay-padding: 1.3125rem 1.3125rem;
    --bs-card-group-margin: 0.75rem;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    height: var(--bs-card-height);
    word-wrap: break-word;
    background-color: var(--bs-card-bg);
    background-clip: border-box;
    border: var(--bs-card-border-width) solid var(--bs-card-border-color);
    border-radius: var(--bs-card-border-radius)
}





.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.float-end {
    float: right !important
}

.overflow-hidden {
    overflow: hidden !important
}

.d-inline {
    display: inline !important
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important
}

.d-none {
    display: none !important
}

.shadow-sm {
    box-shadow: 0 .375rem .75rem rgba(140, 152, 164, .075) !important
}

.shadow-none {
    box-shadow: none !important
}

.position-relative {
    position: relative !important
}

.position-absolute {
    position: absolute !important
}

.bottom-0 {
    bottom: 0 !important
}

.start-0 {
    left: 0 !important
}

.end-0 {
    right: 0 !important
}

.border {
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
}

.border-0 {
    border: 0 !important
}

.border-end {
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
}

.border-bottom {
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
}

.border-start {
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
}

.border-success {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important
}

.border-warning {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important
}

.border-danger {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important
}

.border-light {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important
}

.border-1 {
    --bs-border-width: 1px
}

.border-3 {
    --bs-border-width: 3px
}

.w-50 {
    width: 50% !important
}

.w-75 {
    width: 75% !important
}



@media (min-width: 768px) {
    .w-lg-70 {
        width: 60% !important
    }
}

.w-100 {
    width: 100% !important
}

.w-auto {
    width: auto !important
}

.h-100 {
    height: 100% !important
}

.flex-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important
}

.flex-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important
}

.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.align-items-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important
}

.order-1 {
    -ms-flex-order: 1 !important;
    order: 1 !important
}

.order-2 {
    -ms-flex-order: 2 !important;
    order: 2 !important
}

.mx-1 {
    margin-right: .25rem !important;
    margin-left: .25rem !important
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important
}

.my-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
}

.my-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important
}

.mt-1 {
    margin-top: .25rem !important
}

.mt-2 {
    margin-top: .5rem !important
}

.mt-3 {
    margin-top: 1rem !important
}

.mt-4 {
    margin-top: 1.5rem !important
}

.mt-5 {
    margin-top: 2rem !important
}

.me-1 {
    margin-right: .25rem !important
}

.me-2 {
    margin-right: .5rem !important
}

.me-auto {
    margin-right: auto !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-1 {
    margin-bottom: .25rem !important
}

.mb-2 {
    margin-bottom: .5rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.mb-5 {
    margin-bottom: 2rem !important
}

.mb-6 {
    margin-bottom: 2.5rem !important
}

.mb-7 {
    margin-bottom: 3rem !important
}

.ms-1 {
    margin-left: .25rem !important
}

.ms-2 {
    margin-left: .5rem !important
}

.ms-4 {
    margin-left: 1.5rem !important
}

.ms-auto {
    margin-left: auto !important
}

.p-0 {
    padding: 0 !important
}

.p-3 {
    padding: 1rem !important
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important
}

.px-2 {
    padding-right: .5rem !important;
    padding-left: .5rem !important
}

.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important
}

.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.py-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important
}

.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-1 {
    padding-top: .25rem !important
}

.pt-2 {
    padding-top: .5rem !important
}

.pt-3 {
    padding-top: 1rem !important
}

.pt-4 {
    padding-top: 1.5rem !important
}

.pe-0 {
    padding-right: 0 !important
}

.pe-2 {
    padding-right: .5rem !important
}

.pe-4 {
    padding-right: 1.5rem !important
}

.pb-1 {
    padding-bottom: .25rem !important
}

.pb-8 {
    padding-bottom: 3.5rem !important
}

.ps-0 {
    padding-left: 0 !important
}

.ps-3 {
    padding-left: 1rem !important
}

.ps-5 {
    padding-left: 2rem !important
}

.gap-2 {
    gap: .5rem !important
}

.gap-3 {
    gap: 1rem !important
}

.fs-2 {
    font-size: calc(1.25625rem + .075vw) !important
}

.fs-3 {
    font-size: 1.1484375rem !important
}

.fs-4 {
    font-size: .984375rem !important
}

.fs-5 {
    font-size: .875rem !important
}

.fw-normal {
    font-weight: 500 !important
}

.fw-semibold {
    font-weight: 600 !important
}

.text-start {
    text-align: left !important
}

.text-end {
    text-align: right !important
}

.text-center {
    text-align: center !important
}

.text-decoration-none {
    text-decoration: none !important
}

.text-uppercase {
    text-transform: uppercase !important
}

.text-nowrap {
    white-space: nowrap !important
}

.text-primary {
    --bs-text-opacity: 1;
    color: #703eeb !important
}

.text-success {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important
}

.text-danger {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important
}

.text-black {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important
}

.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important
}

.text-body {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important
}

.text-muted {
    --bs-text-opacity: 1;
    color: #8c98a4 !important
}

.text-white-70 {
    --bs-text-opacity: 1;
    color: rgba(255, 255, 255, .7) !important
}

.bg-success {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important
}

.bg-light {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important
}

.text-non-black {
    color: #000000c1
}

.bg-white {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important
}

.bg-transparent {
    --bs-bg-opacity: 1;
    background-color: transparent !important
}

.rounded {
    border-radius: var(--bs-border-radius) !important
}

.content-space-t-0 {
    padding-top: 0 !important
}

.content-space-t-1 {
    padding-top: 3rem !important
}

.content-space-t-2 {
    padding-top: 5rem !important
}

.content-space-t-3 {
    padding-top: 7.5rem !important
}

.content-space-t-4 {
    padding-top: 10rem !important
}

.content-space-b-1 {
    padding-bottom: 3rem !important
}

.content-space-b-2 {
    padding-bottom: 5rem !important
}

.content-space-b-3 {
    padding-bottom: 7.5rem !important
}

.content-space-1 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
}

.content-space-2 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important
}

.content-space-3 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important
}

.zi-1 {
    z-index: 1 !important
}

.bg-soft-primary {
    background-color: rgba(55, 125, 255, .1) !important
}

.bg-soft-secondary {
    background-color: rgba(130, 136, 143, 0.1) !important
}

.bg-soft-success {
    background-color: rgba(0, 201, 167, .1) !important
}

.bg-soft-danger {
    background-color: rgba(237, 76, 120, .1) !important
}

@media (min-width:576px) {
    .align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .mb-sm-0 {
        margin-bottom: 0 !important
    }

    .px-sm-10 {
        padding-right: 4.5rem !important;
        padding-left: 4.5rem !important
    }

    .pt-sm-10 {
        padding-top: 4.5rem !important
    }
}

@media (min-width:768px) {
    .w-md-75 {
        width: 75% !important
    }

    .order-md-1 {
        -ms-flex-order: 1 !important;
        order: 1 !important
    }

    .order-md-2 {
        -ms-flex-order: 2 !important;
        order: 2 !important
    }

    .mx-md-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .mb-md-10 {
        margin-bottom: 4.5rem !important
    }
}

@media (min-width:992px) {
    .d-lg-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-lg-none {
        display: none !important
    }

    .w-lg-75 {
        width: 75% !important
    }

    .mx-lg-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .mb-lg-0 {
        margin-bottom: 0 !important
    }

    .px-lg-5 {
        padding-right: 2rem !important;
        padding-left: 2rem !important
    }

    .content-space-t-lg-1 {
        padding-top: 3rem !important
    }

    .content-space-t-lg-2 {
        padding-top: 5rem !important
    }

    .content-space-t-lg-3 {
        padding-top: 7.5rem !important
    }

    .content-space-t-lg-4 {
        padding-top: 10rem !important
    }

    .content-space-b-lg-1 {
        padding-bottom: 3rem !important
    }

    .content-space-b-lg-2 {
        padding-bottom: 5rem !important
    }

    .content-space-b-lg-3 {
        padding-bottom: 7.5rem !important
    }

    .content-space-lg-3 {
        padding-top: 7.5rem !important;
        padding-bottom: 7.5rem !important
    }
}

@media (min-width:1200px) {
    .fs-2 {
        font-size: 1.3125rem !important
    }
}

html {
    position: relative;
  
}

a {
    text-decoration: none
}

a:focus,
button:focus {
    outline-color: rgba(55, 125, 255, .5)
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

::-moz-selection {
    color: #377dff;
    background-color: rgba(55, 125, 255, .1)
}

::selection {
    color: #377dff;
    background-color: rgba(55, 125, 255, .1)
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 15px, 0);
        transform: translate3d(0, 15px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 15px, 0);
        transform: translate3d(0, 15px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@-webkit-keyframes fadeOutDown {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes fadeOutLeft {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes fadeOutLeft {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@-webkit-keyframes fadeOutRight {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes fadeOutRight {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

.accordion-button:focus {
    box-shadow: none
}

.accordion-button:not(.collapsed) {
    box-shadow: none
}

.accordion-button {
    color: #132144;
    font-size: .875rem;
    font-weight: 600;
    padding: .75rem 1.25rem
}

@media (max-width:575.98px) {
    .accordion-button {
        padding: .5rem .8333333333rem
    }
}

.accordion-body {
    padding-top: 0
}

@media (max-width:575.98px) {

    .accordion-body,
    .accordion-button {
        padding: .5rem .8333333333rem
    }
}

.avatar {
    position: relative;
    display: inline-block;
    width: 2.625rem;
    height: 2.625rem;
    border-radius: .5rem
}

.avatar:not(img) {
    background-color: #fff
}

.avatar-img {
    max-width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: .5rem
}

.avatar-initials {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 2.625rem;
    height: 2.625rem;
    font-size: .875rem;
    font-weight: 600;
    pointer-events: none;
    text-transform: uppercase;
    border-radius: .5rem
}

.avatar-circle {
    border-radius: 50%
}

.avatar-circle .avatar,
.avatar-circle .avatar-img,
.avatar-circle .avatar-initials {
    border-radius: 50%
}

.avatar-group {
    position: relative;
    z-index: 2;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center
}

.avatar-group .avatar:hover {
    z-index: 2
}

.avatar-group .avatar-circle .avatar-initials {
    border-radius: 50%
}

.avatar-group .avatar .avatar-img,
.avatar-group .avatar .avatar-initials,
.avatar-group .avatar-sm .avatar-img,
.avatar-group .avatar-sm .avatar-initials,
.avatar-group .avatar-xs .avatar-img,
.avatar-group .avatar-xs .avatar-initials {
    border: 2px solid #fff
}

.avatar-group .avatar+.avatar {
    margin-left: -1rem
}

.avatar-group .avatar-xs+.avatar-xs {
    margin-left: -.6125rem
}

.avatar-group .avatar-sm+.avatar-sm {
    margin-left: -.875rem
}

.avatar-group .avatar,
.avatar-group .avatar-initials {
    width: 2.625rem;
    height: 2.625rem
}

.avatar-group .avatar-initials {
    font-size: .875rem
}

.avatar-group .avatar+.avatar {
    margin-left: -1rem
}

.avatar-group-sm .avatar,
.avatar-group-sm .avatar-initials {
    width: 2.40625rem;
    height: 2.40625rem
}

.avatar-group-sm .avatar-initials {
    font-size: .875rem
}

.avatar-group-sm .avatar+.avatar {
    margin-left: -.875rem
}

.avatar-xs,
.avatar-xs .avatar-initials {
    width: 1.53125rem;
    height: 1.53125rem
}

.avatar-xs .avatar-img {
    width: 1.53125rem
}

.avatar-xs .avatar-initials {
    font-size: .65625rem
}

.avatar-xs .avatar-initials {
    width: 1.53125rem;
    height: 1.53125rem
}

.avatar-xs .avatar-img {
    width: 1.53125rem
}

.avatar-xs .avatar-initials {
    font-size: .65625rem
}

.avatar-sm,
.avatar-sm .avatar-initials {
    width: 2.40625rem;
    height: 2.40625rem
}

.avatar-sm .avatar-img {
    width: 2.40625rem
}

.avatar-sm .avatar-initials {
    font-size: .875rem
}

.avatar-primary .avatar-initials {
    color: #fff;
    background-color: #377dff
}

.avatar-info .avatar-initials {
    color: #fff;
    background-color: #09a5be
}

.avatar-soft-primary .avatar-initials {
    color: #377dff;
    background-color: rgba(55, 125, 255, .1)
}

.avatar-soft-info .avatar-initials {
    color: #09a5be;
    background-color: rgba(9, 165, 190, .1)
}

.avatar-soft-danger .avatar-initials {
    color: #ed4c78;
    background-color: rgba(237, 76, 120, .1)
}

.avatar-soft-dark .avatar-initials {
    color: #132144;
    background-color: rgba(19, 33, 68, .1)
}

.badge {
    line-height: normal
}

.badge .legend-indicator {
    margin-right: .3125rem
}

.blockquote {
    color: #677788;
    font-size: 1.25rem;
    border-left: .1rem solid #377dff;
    padding-left: .75rem;
    margin-bottom: 0
}

.blockquote-sm {
    font-size: .875rem;
    padding-left: .6125rem
}

.btn:hover {
    border-color: transparent
}

.btn-link {
    font-weight: 600
}

.btn-link:focus {
    box-shadow: none
}

.btn:focus {
    box-shadow: none
}

.btn.active,
.btn.show,
.btn:active {
    border-color: transparent
}

.btn.disabled,
.btn:disabled {
    border-color: transparent
}

.btn-primary:focus,
.btn-primary:hover {
    box-shadow: 0 4px 11px rgba(55, 125, 255, .35)
}

.btn-dark:focus,
.btn-dark:hover {
    box-shadow: 0 4px 11px rgba(19, 33, 68, .35)
}

.btn-ghost-dark {
    color: #132144;
    background-color: transparent
}

.btn-ghost-dark.active,
.btn-ghost-dark:active,
.btn-ghost-dark:focus,
.btn-ghost-dark:hover {
    color: #132144;
    border-color: transparent;
    background-color: rgba(19, 33, 68, .1)
}

.btn-soft-primary {
    color: #377dff;
    background-color: rgba(55, 125, 255, .1);
    border-color: transparent
}

.btn-soft-primary:focus,
.btn-soft-primary:hover {
    color: #fff;
    background-color: #377dff;
    border-color: transparent
}

.btn-soft-primary.active,
.btn-soft-primary:active {
    color: #fff;
    background-color: #377dff;
    border-color: transparent
}

.btn-soft-primary.disabled,
.btn-soft-primary:disabled {
    color: #377dff;
    background-color: #377dff;
    border-color: transparent
}

.btn-soft-danger {
    color: #ed4c78;
    background-color: rgba(237, 76, 120, .1);
    border-color: transparent
}

.btn-soft-danger:focus,
.btn-soft-danger:hover {
    color: #fff;
    background-color: #ed4c78;
    border-color: transparent
}

.btn-soft-danger.active,
.btn-soft-danger:active {
    color: #fff;
    background-color: #ed4c78;
    border-color: transparent
}

.btn-soft-danger.disabled,
.btn-soft-danger:disabled {
    color: #ed4c78;
    background-color: #ed4c78;
    border-color: transparent
}

.btn-soft-dark {
    color: #132144;
    background-color: rgba(19, 33, 68, .1);
    border-color: transparent
}

.btn-soft-dark:focus,
.btn-soft-dark:hover {
    color: #fff;
    background-color: #132144;
    border-color: transparent
}

.btn-soft-dark.active,
.btn-soft-dark:active {
    color: #fff;
    background-color: #132144;
    border-color: transparent
}

.btn-soft-dark.disabled,
.btn-soft-dark:disabled {
    color: #132144;
    background-color: #132144;
    border-color: transparent
}

.btn-icon {
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: .875rem;
    font-weight: 600;
    width: 2.625rem;
    height: 2.625rem;
    padding: 0
}

.btn-icon>svg {
    width: .875rem;
    height: auto
}

.btn-outline-primary:hover::after {
    background-image: url("data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.72,15.78a.75.75,0,0,1-.53.22h-.38a.77.77,0,0,1-.53-.22L6.15,10.64a.5.5,0,0,1,0-.71l.71-.71a.49.49,0,0,1,.7,0L12,13.67l4.44-4.45a.5.5,0,0,1,.71,0l.7.71a.5.5,0,0,1,0,.71Z'/%3e%3c/svg%3e")
}

.btn-xs:not(.btn-icon) {
    font-size: .65625rem;
    padding: .3125rem .75rem
}

.btn-icon.btn-xs {
    font-size: .65625rem;
    width: 1.53125rem;
    height: 1.53125rem
}

.btn-icon.btn-xs>svg {
    width: .65625rem;
    height: auto
}

.btn-icon.btn-sm {
    font-size: .875rem;
    width: 2.40625rem;
    height: 2.40625rem
}

.btn-icon.btn-sm>svg {
    width: .875rem;
    height: auto
}

.btn-icon.btn-lg {
    font-size: 1rem;
    width: 3.36875rem;
    height: 3.36875rem
}

.btn-icon.btn-lg>svg {
    width: 1rem;
    height: auto
}



.main {
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
    top: 55px
}

@media (max-width:768px) {
    .main {
        top: 75px !important
    }
}

.main .content {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem
}

.container-lg {
    padding-right: var(--bs-gutter-x, 2rem);
    padding-left: var(--bs-gutter-x, 2rem)
}

@media (max-width:575.98px) {
    .container-lg {
        padding-right: var(--bs-gutter-x, 1.25rem);
        padding-left: var(--bs-gutter-x, 1.25rem)
    }
}

.dropdown-menu {
    box-shadow: 0 .6125rem 2.5rem .6125rem rgba(140, 152, 164, .175);
    margin-top: .3125rem
}

.dropdown-menu .dropdown-item {
    font-size: .8125rem
}

.dropdown-menu .card {
    border-color: transparent;
    box-shadow: none
}

.dropdown-item {
    border-radius: .3125rem
}

.dropdown-item:not(:last-child) {
    margin-bottom: .25rem
}

.dropdown-item:active {
    color: #1e2022;
    background-color: rgba(189, 197, 209, .2)
}

.dropdown-item.active:active:focus,
.dropdown-item.active:not(:focus):not(:active) {
    color: #1e2022;
    background-color: rgba(189, 197, 209, .2)
}

.dropdown-item-icon {
    display: inline-block;
    opacity: .7;
    width: 1.5rem;
    color: #677788
}

.nav-item>.nav-link[aria-expanded=true]::after {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3.5rem
}

.footer:not([class*=container]) {
    padding-right: 2rem;
    padding-left: 2rem
}

@media (max-width:575.98px) {
    .footer:not([class*=container]) {
        padding-right: 1rem;
        padding-left: 1rem
    }
}

.form-check-label {
    margin-top: .125rem
}

.form-check .form-check-label {
    margin-top: 0
}

.form-check-input {
    margin-top: .1875rem
}

.form-check-input,
.form-check-label,
label.form-control {
    cursor: pointer
}

.form-check-input:focus {
    box-shadow: none
}

.form-switch {
    position: relative
}

.form-switch.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0
}

.form-switch.row .form-check-input {
    float: none;
    margin-left: auto;
    margin-right: 0
}

.form-switch .form-check-input {
    width: 2.8125em;
    height: 1.8125em;
    border-width: 0;
    background-color: rgba(231, 234, 243, .7);
    margin-top: -.25rem;
    margin-right: .75rem
}

.form-switch .form-check-input:active {
    -webkit-filter: 100%;
    filter: 100%
}

.form-check-input:checked {
    background-color: #377dff
}

.form-switch-between {
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0
}

.form-switch-between .form-check-input {
    float: none;
    -ms-flex-align: center;
    align-items: center;
    margin-left: .5rem
}

.form-switch-between .form-check-label {
    cursor: inherit
}

.form-text {
    margin-bottom: 0
}

.icon {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: .875rem;
    width: 2.625rem;
    height: 2.625rem;
    border-radius: .3125rem
}

.legend-indicator {
    display: inline-block;
    width: .5rem;
    height: .5rem;
    background-color: #bdc5d1;
    border-radius: 50%;
    margin-right: .4375rem
}

.list-group-item:first-child {
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem
}

.list-group-item:last-child {
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem
}

.list-group-start-bordered .list-group-item {
    padding-left: 0;
    padding-right: 0
}

.list-group-start-bordered .list-group-item-action {
    display: block;
    border-width: 0 0 0 .125rem;
    border-style: solid;
    border-color: transparent;
    padding-left: 1rem
}

.list-group-start-bordered .list-group-item-action:focus,
.list-group-start-bordered .list-group-item-action:hover {
    background-color: transparent
}

.nav-link.active,
.navbar-nav .nav-link.active {
    color: #377dff
}

.nav-icon {
    opacity: .7;
    -ms-flex: 0 0 1.9375rem;
    flex: 0 0 1.9375rem
}

.nav-tabs .nav-link {
    border-top-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom: .1875rem solid transparent;
    margin-bottom: -.125rem
}

.nav-tabs .nav-link .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-top-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent
}

.nav-tabs .nav-link .badge {
    line-height: 1
}

.nav-tabs .nav-item.show>.nav-link,
.nav-tabs .nav-link.active {
    font-weight: 600
}

.nav-tabs .nav-item.show .nav-link {
    color: #132144;
    border-color: transparent
}

.nav-tabs .nav-item.show .nav-link:hover {
    color: #377dff
}

.nav-tabs .nav-item.show .nav-link.active {
    color: #377dff
}

.nav-tabs:not(.nav-vertical) .nav-link {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem
}

.navbar {
    z-index: 99
}

.navbar-collapse {
    -ms-flex-align: start;
    align-items: flex-start
}

.navbar-nav {
    -ms-flex-positive: 1;
    flex-grow: 1
}

.navbar-bordered {
    border-width: 0 0 .0625rem 0;
    border-style: solid;
    border-color: rgba(231, 234, 243, .7)
}





.navbar-nav-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-align: center;
    align-items: center
}

.navbar-nav-wrap .navbar-toggler {
    margin-left: auto
}

.navbar-toggler {
    color: #677788;
    padding: .5rem .5rem
}

.navbar-toggler:focus {
    box-shadow: none
}

.navbar-toggler .navbar-toggler-default {
    display: -ms-flexbox;
    display: flex
}

.navbar-toggler .navbar-toggler-toggled {
    display: none
}

.navbar-toggler[aria-expanded=true] .navbar-toggler-default {
    display: none
}

.navbar-toggler[aria-expanded=true] .navbar-toggler-toggled {
    display: -ms-flexbox;
    display: flex
}

.navbar .nav-item {
    margin-right: 0
}

.navbar .nav-item:not(:last-child) {
    margin-right: .5rem
}

.navbar .dropdown-menu .nav-item {
    margin-right: 0
}

.navbar .dropdown-menu .nav-item:not(:last-child) {
    margin-right: 0
}

.navbar:not(.splitted-content-navbar) .navbar-nav .nav-link {
    padding: 1rem .75rem
}

.navbar .navbar-collapse .nav-link:first-child {
    padding-left: 0
}

.navbar .nav-item:hover>.nav-link {
    color: #1366ff
}

.navbar .dropdown-menu::before {
    position: absolute;
    top: -.625rem;
    display: block;
    left: 0;
    width: 100%;
    height: 1.75rem;
    content: ""
}

@media (min-width:992px) {
    .navbar-expand-lg .navbar-toggler {
        -ms-flex-order: 1;
        order: 1
    }

    .navbar-expand-lg .navbar-collapse {
        width: auto;
        -ms-flex-order: 2;
        order: 2
    }

    .navbar-expand-lg:not(.navbar-vertical) .navbar-nav {
        -ms-flex-align: center;
        align-items: center
    }

    .navbar-expand-lg .dropdown-menu {
        margin-top: .75rem
    }

    .navbar-expand-lg.navbar-center .navbar-nav {
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media (max-width:991.98px) {
    .navbar-expand-lg .navbar-collapse {
        background-color: #fff
    }

    .navbar-expand-lg .navbar-nav {
        padding: 1rem 1rem
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: .5rem 0
    }

    


    .navbar-expand-lg .navbar-btn {
        padding: .35rem .5rem
    }
}

@-webkit-keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes sliding-img-frame-to-start {
    from {
        background-position-x: 0
    }

    to {
        background-position-x: -2880px
    }
}

@keyframes sliding-img-frame-to-start {
    from {
        background-position-x: 0
    }

    to {
        background-position-x: -2880px
    }
}

@-webkit-keyframes sliding-img-frame-to-end {
    from {
        background-position-x: 0
    }

    to {
        background-position-x: 2880px
    }
}

@keyframes sliding-img-frame-to-end {
    from {
        background-position-x: 0
    }

    to {
        background-position-x: 2880px
    }
}






/* =========================================================
   DASHBOARD GRID (index
)
   ========================================================= */

.dashboard-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.45fr) minmax(280px, .75fr);

    gap: 1.4rem;
}


/* =========================================================
   PANEL BASE
   ========================================================= */

.panel {
    position: relative;

    border: 1px solid rgba(25, 20, 40, .075);

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(35, 30, 50, .045);
}


.panel-title {
    margin: 0;

    color: #17171b;

    font-size: 1rem;
    font-weight: 650;
}


.panel-subtitle {
    margin: .35rem 0 0;

    color: rgba(23, 23, 27, .48);

    font-size: .78rem;
}


/* =========================================================
   CHART
   ========================================================= */

.chart-panel {
    min-height: 355px;

    padding: 1.6rem;
}


.chart-header {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;
}


.chart-value {
    margin-top: .8rem;

    color: #17171b;

    font-size: 2rem;
    font-weight: 650;

    letter-spacing: -.04em;
}


.chart-value small {
    margin-left: .4rem;

    color: #55b79e;

    font-size: .78rem;
    font-weight: 650;

    letter-spacing: 0;
}


/* =========================================================
   SVG CHART
   ========================================================= */

.chart {
    width: 100%;
    height: 220px;

    margin-top: 1rem;
}


.chart-grid {
    stroke: rgba(25, 20, 40, .06);
    stroke-width: 1;
}


.chart-line {
    fill: none;

    stroke: #4d8df7;
    stroke-width: 4;

    stroke-linecap: round;
    stroke-linejoin: round;

    stroke-dasharray: 900;
    stroke-dashoffset: 900;

    animation:
        matfyChartDraw 1.8s cubic-bezier(.22, 1, .36, 1) forwards;
}


.chart-area {
    fill: url(#matfyChartGradient);

    opacity: .65;

    animation:
        matfyChartFade 1.5s ease forwards;
}


@keyframes matfyChartDraw {

    to {
        stroke-dashoffset: 0;
    }

}


@keyframes matfyChartFade {

    from {
        opacity: 0;
    }

    to {
        opacity: .65;
    }

}


.chart-months {
    display: flex;

    justify-content: space-between;

    margin-top: -.2rem;
    padding: 0 .15rem;

    color: #a8a4b0;

    font-size: .68rem;
    font-weight: 600;
}


/* =========================================================
   SIDE WIDGETS
   ========================================================= */

.side {
    display: flex;
    flex-direction: column;

    gap: 1.2rem;
}


/* =========================================================
   TASKS
   ========================================================= */

.task-panel {
    padding: 1.45rem;
}


.task-list {
    margin-top: 1.1rem;
}


.task {
    display: flex;

    align-items: center;

    gap: .8rem;

    padding: .8rem 0;

    border-top: 1px solid rgba(25, 20, 40, .065);
}


.task:first-child {
    border-top: 0;
}


.task-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: rgba(118, 84, 173, .08);

    color: #7654ad;

    font-size: .9rem;
}


.task-content {
    min-width: 0;
    flex: 1;
}


.task-title {
    margin: 0;

    color: #29262f;

    font-size: .88rem;
    font-weight: 600;
}


.task-meta {
    margin-top: .2rem;

    color: #aaa6b0;

    font-size: .7rem;
}


.task-status {
    padding: .32rem .55rem;

    border-radius: 7px;

    font-size: .62rem;
    font-weight: 700;

    white-space: nowrap;
}


.task-status.pending {
    color: #d66f8e;

    background: rgba(231, 121, 155, .10);
}


.task-status.done {
    color: #43a991;

    background: rgba(80, 185, 164, .10);
}


/* =========================================================
   TIMER
   ========================================================= */

.timer-panel {
    padding: 1.45rem;
}


.timer-header {
    display: flex;

    justify-content: space-between;
    align-items: center;
}


.timer-label {
    color: #9994a1;

    font-size: .72rem;
    font-weight: 700;

    letter-spacing: .04em;
}


.timer-spinner {
    width: 13px;
    height: 13px;

    border-radius: 50%;

    border: 2px solid rgba(118, 84, 173, .16);

    border-top-color: #7654ad;

    animation:
        matfySpin .8s linear infinite;
}


@keyframes matfySpin {

    to {
        transform: rotate(360deg);
    }

}


.timer-value {
    margin-top: .7rem;

    color: #17171b;

    font-size: 1.85rem;
    font-weight: 650;

    letter-spacing: -.045em;
}


.timer-progress {
    height: 7px;

    margin-top: 1rem;

    overflow: hidden;

    border-radius: 999px;

    background: #eceaf0;
}


.timer-progress span {
    display: block;

    width: 62%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(90deg,
            #7654ad,
            #4d8df7);

    animation:
        matfyProgress 3s ease-in-out infinite alternate;
}


@keyframes matfyProgress {

    from {
        width: 52%;
    }

    to {
        width: 70%;
    }

}


.timer-footer {
    display: flex;

    justify-content: space-between;

    margin-top: .65rem;

    color: #aaa6b0;

    font-size: .7rem;
}


/* =========================================================
   FLOATING INFO
   ========================================================= */

.floating-badge {
    position: absolute;

    z-index: 8;

    display: flex;
    align-items: center;

    gap: .55rem;

    padding: .65rem .85rem;

    border-radius: 11px;

    background: rgba(255, 255, 255, .96);

    border: 1px solid rgba(25, 20, 40, .07);

    box-shadow:
        0 12px 30px rgba(35, 30, 50, .10);

    color: #55515d;

    font-size: .7rem;
    font-weight: 600;

    animation:
        matfyFloat 4s ease-in-out infinite;
}


.floating-badge::before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #55b79e;
}


.floating-badge.one {
    left: -35px;
    bottom: 42px;
}


.floating-badge.two {
    right: -30px;
    top: 150px;

    animation-delay: -1.5s;
}


@keyframes matfyFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

}



/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991px) {

    .hero {
        padding-top: 4rem;
        padding-bottom: 9rem;
    }


    .dashboard {
        width: 96%;

        margin-top: 4rem;
    }


    .dashboard-body {
        padding: 1.4rem;
    }


    .dashboard-grid {
        grid-template-columns: 1fr;
    }


    .chart-panel {
        min-height: 330px;
    }


    .side {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .floating-badge.one {
        left: -12px;
    }


    .floating-badge.two {
        right: -12px;
    }

}


@media (max-width: 767px) {

    .hero {
        padding:
            3.2rem 0 7.5rem;
    }


    .hero-title {
        font-size: clamp(2.55rem, 11vw, 3.7rem);

        letter-spacing: -.045em;
    }


    .hero-description {
        font-size: 1.08rem;

        margin-top: 1.35rem;
    }


    .hero-actions {
        margin-top: 1.5rem;
    }


    /* .hero-cta {
        width: 100%;
        max-width: 280px;
    } */


    .dashboard {
        width: calc(100% - 1.25rem);

        margin-top: 3rem;

        border-radius: 18px;
    }


    .window-bar {
        height: 44px;

        padding: 0 .9rem;

        border-radius: 18px 18px 0 0;
    }


    .window-address {
        width: 130px;

        font-size: .58rem;
    }


    .dashboard-body {
        min-height: 0;

        padding: 1rem;

        border-radius: 0 0 18px 18px;
    }


    .app-header {
        margin-bottom: 1rem;
    }


    .app-title {
        font-size: 1rem;
    }


    .app-status {
        padding: .35rem .55rem;

        font-size: .62rem;
    }


    .chart-panel {
        min-height: 285px;

        padding: 1.15rem;
    }


    .chart-value {
        font-size: 1.55rem;
    }


    .chart {
        height: 175px;

        margin-top: .6rem;
    }


    .side {
        display: flex;

        gap: .8rem;
    }


    .task-panel,
    .timer-panel {
        padding: 1.1rem;
    }


    .panel-title {
        font-size: .95rem;
    }


    .task-title {
        font-size: .82rem;
    }


    .floating-badge {
        display: none;
    }


    .hero-transition {
        height: 105px;
    }

}


/* =========================================================
   REDUCE MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .chart-line,
    .chart-area,
    .timer-spinner,
    .timer-progress span,
    .floating-badge {
        animation: none !important;
    }

}




#canvas {
    position: absolute;
    z-index: -1
}

.invoice.approve {
    animation: none;
    position: relative;
    top: auto;
    box-shadow: none;
    border: radius 0;
    left: 60%
}

.invoice.approve .a4-frame {
    box-shadow: none
}

.animated-span {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center
}

.video-wrapper {
    position: relative;
    padding-bottom: 43.25%;
    height: 0;
    overflow: hidden;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15))
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain
}

.content {
    position: relative;
    padding: 20px
}

@keyframes gradientShift {
    0% {
        background-position: 0 50%
    }

    25% {
        background-position: 50% 50%
    }

    50% {
        background-position: 100% 50%
    }

    75% {
        background-position: 50% 50%
    }

    100% {
        background-position: 0 50%
    }
}

.card-gradient {
    position: relative;
    border-radius: .75rem;
    overflow: hidden;
    height: 300px;
    background-origin: border-box;
    background-clip: content-box, border-box;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat
}

.card-gradient.calendar-views {
    transition: background-image 1s ease-in-out
}

.card-gradient.calendar-views::after,
.card-gradient.calendar-views::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out
}

.border-gradient {
    border-image: linear-gradient(#fab089, #a567b88b, #73cefb) 1
}

.pricing-mobile {
    display: none
}

.plan-card {
    transition: transform .3s ease
}

.plan-card.active,
.plan-card:hover {
    transform: scale(1.06);
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(45deg, #fab089, #a567b88b, #73cefb) border-box;
    border: 1px solid transparent;
    box-shadow: 0 0 10px rgba(79, 70, 229, .3)
}

.switcher {
    cursor: pointer
}

.price {
    font-size: 2rem;
    font-weight: 700
}

.feature-list {
    list-style: none;
    padding-left: 0
}

.border-dashed {
    border-right: .0625rem dashed rgb(189 193 202 / 70%) !important
}

@media (max-width:768px) {
    .invoice.approve {
        margin-left: 20% impot !important;
    }

    .p-mob {
        padding-left: 2px !important;
        padding-right: 2px !important;
    }

    .qr-box {
        height: 36px !important;
        width: 36px !important;
    }

    .qr-box #qrCanvas {
        height: 36px !important;
        width: 36px !important
    }

    .timetracking-card {
        padding-top: 5px !important;
        padding-bottom: 5px !important
    }

    .mi-seccion a {
        width: 100%;
    }

    .logo-track {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        animation: none;
        justify-items: center;
        margin-top: 4px
    }

    .logo-track img {
        height: 50px
    }

    .logo-rep {
        display: none
    }

    .notification-text h2,
    p {
        text-align: start
    }

    .hero-text h1 {
        font-weight: bolder !important;
        font-size: 32px !important;
        text-align: left
    }

    .hero-text p {
        text-align: left
    }

    .hero-text a {
        float: inline-start
    }

    .fs-2 {
        font-size: var(--fs-3) !important
    }

    .display-2 {
        font-size: 36px !important
    }

    .hero {
        height: auto;
        text-align: center;
        padding: 2rem 1rem
    }

    .hero-row {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center !important
    }

    .hero-text {
        width: 100% !important;
        order: 1 !important
    }

    .hero-img-land {
        width: 109%;
        align-items: center;
        padding-left: 5%
    }

    .hero-img {
        position: relative;
        width: 80%;
        left: 0;
        top: 0;
        margin-top: 1rem;
        margin-right: auto;
        margin-left: auto
    }

    .btn-gradient:hover::before {
        left: 120%;
        transition: none
    }

    .btn-gradient::before {
        position: absolute;
        top: -1px;
        bottom: -1px;
        left: -20%;
        width: 40%;
        border-radius: 7px;
        background: 0 0 !important;
        pointer-events: none;
        transform: skewX(-20deg);
        z-index: 2;
        opacity: .8
    }

    body {
        overflow-x: hidden
    }

    img,
    svg {
        max-width: 100%;
        height: auto;
        display: block
    }

    .a4-frame {
        width: 100%;
        overflow-x: auto
    }

    .a4-frame table {
        width: 100%;
        table-layout: fixed
    }

    .display-4 {
        font-size: 26px !important;
        /* font-weight: 600; */
        line-height: 1.2
    }

    .trial-card {
        display: none
    }

    .navbar-brand-logo {
        width: 100%;
        left: 0 !important;
        position: relative;
        min-width: 5rem;
        max-width: 5rem
    }

    .icon-text {
        display: inline-flex;
        align-items: center;
        gap: .5rem
    }

    .icon {
        width: 20px;
        height: 20px;
        fill: currentColor
    }

    .accordion-button .accordion-icon {
        display: inline-block;
        font-size: 1rem;
        font-weight: 700;
        color: #555;
        transition: transform .3s ease, color .3s ease;
        margin-left: auto
    }

    .accordion-button[aria-expanded=true] .accordion-icon {
        transform: rotate(180deg)
    }

    .pricing-mobile {
        display: block
    }

    .desktop-pricing {
        display: none
    }

    .feature-block {
        margin-bottom: 1rem;
        padding-bottom: 1rem
    }

    .feature-block h5 {
        margin-bottom: .5rem;
        font-weight: 600;
        color: #333
    }

    .plans-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        text-align: center
    }

    .plans-row div {
        border-radius: 6px;
        padding: .5rem;
        font-size: .9rem
    }
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    src: url('/assets/fonts/Inter-Regular.woff2') format('woff2');
    font-display: swap
}

@font-face {
    font-family: Inter;
    font-style: italic;
    font-weight: 700;
    src: url('/assets/fonts/Inter-Italic.woff2') format('woff2');
    font-display: swap
}

/* ------------------- nuevo_css ---------- */

#calendly-body-container .calendly-overlay {
    z-index: 1000000 !important;
}

#calendly-body-container .calendly-popup,
#calendly-body-container .calendly-popup-content {
    z-index: 1000001 !important;
}

.calendly-popup-content {
    height: 600px;
}

.calendly-overlay {
    position: fixed;
    width: 100%;
    z-index: 99999999999999 !important;
    height: 100%;
    top: 0;
}



.btn-white {
    background-color: #fff;
    border: 0.0625rem solid rgba(231, 234, 243, 0.7);
}

.btn-check:focus+.btn-white,
.btn-white:hover,
.btn-white:focus {
    border-color: rgba(231, 234, 243, 0.7);
    background-color: #fff;
    box-shadow: 0px 3px 6px -2px rgba(140, 152, 164, 0.25);
}


.text-trial {
    color: #d4dce5;
}

.try-section {
    padding-left: 2px;
    padding-right: 2px;
    background: #34397c;
    border-radius: 35px;
}


@media (max-width:768px) {
    .try-section {
        border-radius: 0px !important;
    }

    .fw-bold {
        font-size: 16px !important;
    }

    .fs-2 {
        font-size: 16px !important
    }
}

.try-card {
    border-radius: 35px;
}

.fw-bold {
    font-weight: 700;
    font-size: 26px;
}

.hero-title {
    text-align: center;
}


.countdown span {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.countdown small {
    font-size: 0.8rem;
    opacity: 0.9;
}


@media (max-width:768px) {
  
    .fs-3 {
        font-size: .875rem !important;
    }
}

.modal {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    width: 400px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.avatars {
    margin-top: 10px;
    display: flex;
    gap: 5px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.avatar-group {
    display: flex;
    gap: -10px;
}

.avatar.avatar-sm {
    width: 1.40625rem !important;
    height: 1.40625rem !important
}

.avatar.avatar-sm {
    width: 1.40625rem !important;
    height: 1.40625rem !important
}

#calendar-container {
    position: relative;
    /* width: 665px; */
    font-family: sans-serif;
    height: 100%;
}

#calendar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    padding-top: 15px;
}

.day {
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 14px;
    text-align: center;
}

.day.first-col {
    border-left: 0px !important;
}

.day.first-row {
    border-top: 0px !important;
}

.day.last-col {
    border-right: 0px !important;
}

.day.first-col {
    border-left: 0px !important;
}

/* Animación de pulso para eventos */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Modal */
#modal {
    display: none;
    position: absolute;
    padding-left: 33%;
    padding-right: 33%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    justify-content: center;
    align-items: center;
}

#modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 220px;
    text-align: center;
}

.spinner {
    border: 4px solid #eee;
    border-top: 4px solid #377dff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin: 10px auto;
    animation: spin 1s linear infinite;
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.provider-btn {
    margin: 5px 0;
    padding: 5px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #f9f9f9;
}

.text-gradient {
    font-weight: 600;
    background: linear-gradient(to right, #F99E6A, #E63693, #7240A6, #50C1F9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* para compatibilidad futura */
}

.text-primary-gradient {
    font-weight: 600;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* para compatibilidad futura */
}

@media (max-width: 768px) {
    .text-center-mb {
        text-align: left !important;
        padding-left: 15px !important
    }
}

.text-center-mb {
    text-align: center;

}

@media (min-width:768px) {
    .text-start-md {
        text-align: left !important;
    }

    .text-end-md {
        text-align: right !important;
    }

    .ms-md-2 {
        margin-left: .5rem !important
    }
}

@media (max-width:768px) {
    .text-start-md {
        text-align: center !important;
    }

    .text-end-md {
        text-align: center !important;
        margin-bottom: 1rem !important;
    }

    .w-sm-7 {
        width: 70% !important;
    }
}

.btn-deg-primary {
    background: linear-gradient(90deg, #7240a6, #50c1f9) !important;
    color: white;
    border: 1px solid #7240a6;
    position: relative;
    z-index: 1;
    overflow: hidden;


}


.btn-deg-primary:hover {
    color: var(--bs-dark);
    border: 1px solid transparent !important;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #7240a6, #50c1f9) border-box !important;


    color: linear-gradient(90deg, #7240a6, #50c1f9);

}

.btn-deg-1-primary {
    color: var(--bs-dark);
    border: 1px solid transparent !important;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #7240a6, #50c1f9) border-box !important;
    color: linear-gradient(90deg, #7240a6, #50c1f9);
    border-radius: 8px;
}


.btn-deg-1-primary:hover {
    background: linear-gradient(90deg, #7240a6, #50c1f9) !important;
    color: white;
    border: none !important;
}



/* ==========================================
   1. BOTÓN PRIMARY (Azul/Morado Relleno)
   ========================================== */
.btn-primary {
    background: linear-gradient(135deg, #4F46E5, #7C3AED) !important;
    color: white !important;
    border: 1px solid transparent
}

.btn-primary:hover {
    /* Duplica la sombra en hover para dar efecto de elevación */
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
    filter: brightness(1.1);
    /* Hace que el degradado brille un pelín más */
}

.btn-primary:active {
    transform: translateY(0);
}

/* ==========================================
   2. BOTÓN SECONDARY (Borde y Texto Degradado)
   ========================================== */
.btn-second {
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #4F46E5, #7C3AED) border-box !important;
    color: #4F46E5;
}

.btn-outline-primary {
    background: linear-gradient(135deg, #4F46E5, #7C3AED) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text;
}


.btn-second:hover {
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #7C3AED, #4F46E5) border-box !important;
    /* Colores invertidos */

}

.btn-second:hover .btn-text {
    -webkit-text-fill-color: white !important;
}

.btn-second:active {
    transform: translateY(0);
}

/* ==========================================
   3. BOTÓN TERTIARY / GHOST (Sutil para el modo día)
   ========================================== */
.btn-tertiary {
    background: transparent !important;
    color: #4F46E5 !important;
}

.btn-tertiary:hover {
    background: #F3F4F6 !important;
    color: #3730A3 !important;
}


.btn-cancel:hover {
    background: transparent !important;
    border: 1px solid #6B7280
}

.btn-cancel {
    background: #F3F4F6 !important;
    /* Gris ultra claro para el modo día */
    color: #1F2937 !important;
    /* El texto se oscurece al pasar el mouse */
}

/* =========================================================
   MATFY - BILLING WIDGET
   ========================================================= */

.matfy-billing-widget {
    position: relative;
    width: 100%;
    padding: 1.5rem;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(40, 35, 60, .08);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(40, 35, 60, .055);
    overflow: hidden;
}


/* =========================================================
   HEADER
   ========================================================= */

.billing-widget-header {

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 1rem;

    border-bottom: 1px solid rgba(40, 35, 60, .07);
}


.billing-eyebrow {

    display: block;

    margin-bottom: .35rem;

    color: #8b7aaa;

    font-size: .68rem;
    font-weight: 700;

    letter-spacing: .1em;
}


.billing-widget-header h3 {

    margin: 0;

    color: #29262f;

    font-size: 1.35rem;
    font-weight: 600;

    letter-spacing: -.025em;
}


.billing-icon {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 11px;

    background: #f2edf9;

    color: #7654ad;

    font-size: 1.15rem;
    font-weight: 600;
}


/* =========================================================
   TOTAL
   ========================================================= */

.billing-total {

    display: flex;

    flex-direction: column;

    padding: 1.35rem 0 .9rem;
}


.billing-total span {

    color: #aaa6b0;

    font-size: .67rem;
}


.billing-total strong {

    margin-top: .3rem;

    color: #29262f;

    font-size: 2rem;
    font-weight: 600;

    letter-spacing: -.045em;
}


/* =========================================================
   PROGRESS
   ========================================================= */

.billing-progress-wrapper {

    padding-bottom: 1.2rem;
}


.billing-progress-label {

    display: flex;

    justify-content: space-between;

    margin-bottom: .45rem;

    color: #8f8997;

    font-size: .66rem;
}


.billing-progress-label strong {

    color: #7654ad;

    font-weight: 700;
}


.billing-progress {

    width: 100%;
    height: 7px;

    overflow: hidden;

    border-radius: 20px;

    background: #eceaf0;
}


.billing-progress span {

    display: block;

    width: 72%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(90deg,
            #7654ad,
            #9a7bc4);

    transform-origin: left center;

    animation:
        billingProgress 1.2s cubic-bezier(.22, 1, .36, 1);
}


@keyframes billingProgress {

    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }

}


/* =========================================================
   STATS
   ========================================================= */

.billing-stats {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 1rem;

    padding: 1rem 0;

    border-top: 1px solid rgba(40, 35, 60, .06);
    border-bottom: 1px solid rgba(40, 35, 60, .06);
}


.billing-stats div {

    display: flex;

    flex-direction: column;

    gap: .25rem;
}


.billing-stats span {

    color: #aaa6b0;

    font-size: .57rem;
    font-weight: 700;

    letter-spacing: .08em;
}


.billing-stats strong {

    color: #45404b;

    font-size: .92rem;
    font-weight: 600;
}


/* =========================================================
   INVOICE
   ========================================================= */

.billing-invoice {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 1rem;

    margin-top: 1rem;

    padding: .9rem;

    border-radius: 13px;

    background: #faf9fc;

    border: 1px solid rgba(118, 84, 173, .07);

    transition:
        transform .25s ease,
        background .25s ease;
}


.billing-invoice:hover {

    transform: translateY(-2px);

    background: #f8f6fb;
}


.invoice-main {

    display: flex;

    align-items: center;

    gap: .7rem;

    min-width: 0;
}


.invoice-document-icon {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 34px;
    height: 38px;

    flex: 0 0 auto;

    border-radius: 8px;

    background: #eee9f7;

    color: #7654ad;

    font-size: .8rem;
    font-weight: 700;
}


.invoice-info {

    display: flex;

    flex-direction: column;

    min-width: 0;
}


.invoice-info strong {

    color: #45404b;

    font-size: .72rem;
    font-weight: 600;
}


.invoice-info span {

    margin-top: .2rem;

    color: #aaa6b0;

    font-size: .6rem;
}


.invoice-right {

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: .3rem;
}


.invoice-right strong {

    color: #45404b;

    font-size: .78rem;
    font-weight: 600;

    white-space: nowrap;
}


.invoice-paid {

    padding: .25rem .4rem;

    border-radius: 5px;

    background: #e7f7f2;

    color: #4cae9b;

    font-size: .5rem;
    font-weight: 700;
}


/* =========================================================
   SMALL INVOICE
   ========================================================= */

.billing-small-row {

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: .75rem;

    padding: .8rem .25rem 0;
}


.billing-small-row div {

    display: flex;

    align-items: center;

    gap: .5rem;
}


.invoice-small-dot {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #e1a35e;

    box-shadow:
        0 0 0 4px rgba(225, 163, 94, .08);
}


.billing-small-row strong {

    color: #68626f;

    font-size: .65rem;
    font-weight: 600;
}


.billing-small-row>span {

    color: #aaa6b0;

    font-size: .6rem;

    white-space: nowrap;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .matfy-billing-widget {

        padding: 1.15rem;

        border-radius: 17px;
    }


    .billing-widget-header h3 {

        font-size: 1.15rem;
    }


    .billing-total strong {

        font-size: 1.7rem;
    }


    .billing-invoice {

        padding: .75rem;
    }


    .billing-small-row>span {

        font-size: .55rem;
    }

}

/* =========================================================
   TIME TRACKING — ACTIVE CURSOR
   ========================================================= */

.time-tracking-display {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.time-tracking-time {
    font-variant-numeric: tabular-nums;
}





/* =========================================================
   SIMULATED POINTER
   ========================================================= */

.time-tracking-card {
    position: relative;
}

.time-tracking-pointer {
    position: absolute;
    z-index: 10;

    right: 58px;
    bottom: 48px;

    width: 24px;
    height: 24px;

    opacity: 0;

    pointer-events: none;

    transform: translate(35px, 35px);

    transition:
        opacity .25s ease,
        transform .45s cubic-bezier(.2, .8, .2, 1);
}


/*
 * Cuando la demo está preparando el click,
 * el puntero aparece y se mueve hacia el botón.
 */

.time-tracking-card.pointer-visible .time-tracking-pointer {
    opacity: 1;

    transform: translate(0, 0);
}


/*
 * Pequeño efecto de click
 */

.time-tracking-card.pointer-click .time-tracking-pointer {
    transform:
        translate(0, 0) scale(.82);
}


/* =========================================================
   BUTTON INTERACTION
   ========================================================= */

.time-tracking-button {
    position: relative;
    z-index: 2;
}

.time-tracking-button.is-demo-clicked {
    transform: scale(.97);
}

.time-tracking-button.is-demo-clicked::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .45);

    transform: translate(-50%, -50%) scale(0);

    animation: demo-click-ripple .45s ease-out;
}

@keyframes demo-click-ripple {

    0% {
        opacity: .8;
        transform: translate(-50%, -50%) scale(0);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(8);
    }

}





.product-feature-image--events {
    width: 104%;
    max-width: none;
}

.product-feature-image--billing {
    width: 88%;
    margin: 20px auto;
}


/* =========================================================
   TIME TRACKING DEMO
   ========================================================= */

.time-tracking-demo {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 470px;

    padding: 20px;
}

.time-tracking-card {
    position: relative;

    padding: 28px;

    border: 1px solid rgba(70, 50, 100, .09);
    border-radius: 24px;

    background: #fff;

    box-shadow:
        0 35px 80px rgba(48, 35, 70, .13),
        0 10px 25px rgba(48, 35, 70, .07);
}


/* header */

.time-tracking-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 30px;
}

.time-tracking-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 13px;

    background: rgba(118, 84, 173, .10);

    color: #7654ad;
}

.time-tracking-status {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #77717c;

    font-size: 12px;
    font-weight: 600;
}

.time-tracking-status span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #7bba75;

    animation: time-status-pulse 1.8s ease-in-out infinite;
}


/* timer */

.time-tracking-display {
    margin-bottom: 25px;

    color: #292330;

    font-size: clamp(42px, 5vw, 58px);
    font-variant-numeric: tabular-nums;
    font-weight: 650;
    letter-spacing: -.05em;
    line-height: 1;
}


/* matter */

.time-tracking-matter {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 25px;
    padding: 12px 14px;

    border-radius: 10px;

    background: #f7f4ee;

    color: #6d6671;

    font-size: 12px;
    font-weight: 600;
}

.time-tracking-matter-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #7654ad;
}

.time-tracking-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: rgba(118, 84, 173, .10);
    color: #7654ad;
}

.time-tracking-stopwatch {
    position: relative;
    z-index: 2;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.time-tracking-spinner {
    position: absolute;
    z-index: 1;
    inset: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    transform: rotate(-90deg);
    opacity: 0;
}

.time-tracking-spinner-track,
.time-tracking-spinner-progress {
    fill: none;
    stroke-width: 1.8;
}

.time-tracking-spinner-track {
    stroke: rgba(118, 84, 173, .12);
}

.time-tracking-spinner-progress {
    stroke: #7654ad;
    stroke-linecap: round;
    stroke-dasharray: 12 45;
}

/* Solo gira mientras el timer está funcionando */
.time-tracking-card.is-running .time-tracking-spinner {
    opacity: 1;
    animation: tracking-spinner-rotate 1.2s linear infinite;
}

@keyframes tracking-spinner-rotate {
    to {
        transform: rotate(270deg);
    }
}

/* button */

.time-tracking-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    width: 100%;

    padding: 13px 18px;

    border: 0;
    border-radius: 11px;

    background: #7654ad;

    color: #fff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background .25s ease,
        transform .2s ease;
}

.time-tracking-button:hover {
    background: #654695;
}

.time-tracking-button:active {
    transform: scale(.98);
}

.time-tracking-button.is-running {
    background: #5e8f59;
}

.time-tracking-button-icon {
    display: flex;
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes time-status-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .45;
        transform: scale(.75);
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .product-features-section {
        padding: 115px 0 130px;
    }

    .product-features-header {
        margin-bottom: 70px;
    }

    .product-feature {
        padding: 75px 0;
    }

    .product-feature-copy {
        padding: 20px 25px;
    }

    .product-feature-visual {
        min-height: 360px;
        padding: 20px;
    }

    .product-feature-description {
        font-size: 16px;
    }

    .product-window {
        max-width: 500px;
    }

    .time-tracking-demo {
        max-width: 420px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .product-feature-title {
        font-size: 33px;
        line-height: 1.08;
    }

    .product-feature-description {
        font-size: 16px;
        line-height: 1.65;
    }

    .product-features-intro {
        font-size: 16px;
        line-height: 1.6;
    }

    .product-features-section {
        padding: 90px 0 100px;
    }

    .product-features-header {
        max-width: 600px;
        margin-bottom: 50px;
        padding: 0 10px;
    }

    .product-features-eyebrow {
        margin-bottom: 16px;
        font-size: 12px;
    }

    .product-features-title {
        font-size: clamp(38px, 11vw, 52px);
        line-height: 1;
    }

    .product-features-intro {
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.6;
    }


    /* cada feature */

    .product-feature,
    .product-feature--first,
    .product-feature--last {
        padding: 65px 0;
    }

    .product-feature--first {
        padding-top: 0;
    }

    .product-feature--last {
        padding-bottom: 0;
    }


    /* importante:
       en móvil el orden siempre será
       texto → imagen
    */

    .product-feature--reverse .row {
        flex-direction: column-reverse;
    }


    .product-feature-copy {
        max-width: none;
        padding: 15px 5px 0;
    }

    .product-feature-number {
        width: 38px;
        height: 38px;

        margin-bottom: 18px;

        font-size: 11px;
    }

    .product-feature-title {
        font-size: clamp(30px, 8.5vw, 42px);
        line-height: 1.05;
    }

    .product-feature-description {
        margin-top: 18px;

        font-size: 15px;
        line-height: 1.6;
    }

    .product-feature-link {
        margin-top: 20px;
    }


    /* visual */

    .product-feature-visual {
        min-height: 0;

        padding: 30px 0 15px;
    }

    .product-feature-glow {
        width: 75%;
        height: 55%;

        filter: blur(35px);
    }

    .product-window {
        width: 94%;

        border-radius: 15px;

        transform: rotate(-.6deg);
    }

    .product-window-bar {
        height: 27px;
        padding: 0 10px;
    }

    .product-window-bar span {
        width: 6px;
        height: 6px;
    }


    /* timer */

    .time-tracking-demo {
        max-width: 100%;
        padding: 10px 5px;
    }

    .time-tracking-card {
        padding: 22px;

        border-radius: 20px;
    }

    .time-tracking-header {
        margin-bottom: 24px;
    }

    .time-tracking-display {
        margin-bottom: 22px;
        font-size: 44px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .time-tracking-icon {
        width: 42px;
        height: 42px;
    }

    .time-tracking-stopwatch {
        width: 20px;
        height: 20px;
    }

    .product-features-section {
        padding: 75px 0 85px;
    }

    .product-features-header {
        margin-bottom: 42px;
    }

    .product-features-title {
        font-size: 39px;
    }

    .product-features-intro {
        font-size: 14px;
    }


    .product-feature,
    .product-feature--first,
    .product-feature--last {
        padding: 52px 0;
    }

    .product-feature--first {
        padding-top: 0;
    }

    .product-feature--last {
        padding-bottom: 0;
    }


    .product-feature-copy {
        padding-right: 0;
        padding-left: 0;
    }

    .product-feature-title {
        font-size: 31px;
    }

    .product-feature-description {
        font-size: 14px;
        line-height: 1.6;
    }


    .product-feature-visual {
        padding-top: 25px;
        padding-bottom: 15px;
    }


    .product-window {
        width: 97%;
        border-radius: 13px;
    }


    .time-tracking-card {
        padding: 20px;
    }

    .time-tracking-icon {
        width: 40px;
        height: 40px;
    }

    .time-tracking-display {
        font-size: 39px;
    }

    .time-tracking-status {
        font-size: 11px;
    }

}

/* =========================================================
     FUNCTIONALITIES
     ========================================================= */

.functionalities-section {
    position: relative;

    background: #f8f7f4;

    padding: 8rem 0 9rem;
}


.functionalities-container {
    position: relative;
    z-index: 2;
}


/* =========================================================
     HEADER
     ========================================================= */

.functionalities-heading {
    max-width: 850px;

    margin: 0 auto 4.5rem;

    text-align: center;
}


.functionalities-heading h2 {
    margin-bottom: 1.25rem;

    letter-spacing: -0.035em;
}


.functionalities-heading p {
    max-width: 760px;

    margin: 0 auto;

    line-height: 1.55;

    opacity: .68;
}


/* =========================================================
     GRID
     ========================================================= */

.functionalities-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 1.5rem;
}


/* =========================================================
     FEATURE CARD
     ========================================================= */

.functionality-card {

    position: relative;

    min-height: 560px;

    overflow: hidden;

    border-radius: 26px;

    background: #ffffff;

    border: 1px solid rgba(30, 25, 40, .07);

    box-shadow:
        0 12px 35px rgba(35, 30, 50, .045);

    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1),
        box-shadow .35s ease,
        border-color .35s ease;
}


.functionality-card:hover {

    transform: translateY(-5px);

    border-color:
        rgba(118, 84, 173, .14);

    box-shadow:
        0 18px 45px rgba(35, 30, 50, .08);
}


/* TERCERA TARJETA GRANDE */

.functionality-card-wide {

    grid-column: 1 / -1;

    min-height: 500px;
}


/* =========================================================
     CARD CONTENT
     ========================================================= */

.functionality-content {

    position: relative;

    z-index: 5;

    padding: 2.5rem 2.75rem 0;
}


.functionality-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: .45rem;

    margin-bottom: 1rem;

    color: #7654ad;

    font-size: .78rem;

    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;
}


.functionality-eyebrow::before {

    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #7654ad;
}


.functionality-title {

    margin: 0 0 .75rem;

    color: #17171b;

    font-size: 1.85rem;

    font-weight: 600;

    letter-spacing: -.03em;
}


.functionality-description {

    max-width: 520px;

    margin: 0;

    color: rgba(23, 23, 27, .58);

    font-size: 1rem;

    line-height: 1.55;
}


/* =========================================================
     MOCKUP AREA
     ========================================================= */

.functionality-visual {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 330px;

    padding: 2rem 2.5rem 0;

    display: flex;

    justify-content: center;

    align-items: flex-end;

    overflow: hidden;

    background:
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0),
            rgba(118, 84, 173, .025));
}


.functionality-card-wide .functionality-visual {

    height: 300px;
}


/* =========================================================
     GENERIC APP WINDOW
     ========================================================= */

.ui-window {

    position: relative;

    width: min(100%, 580px);

    height: 260px;

    overflow: hidden;

    border-radius: 16px 16px 0 0;

    background: #fff;

    border:
        1px solid rgba(35, 30, 50, .08);

    box-shadow:
        0 15px 35px rgba(35, 30, 50, .10);

    transform:
        translateY(12px);

    transition:
        transform .45s cubic-bezier(.22, 1, .36, 1);
}


.functionality-card:hover .ui-window {

    transform:
        translateY(2px);
}


/* =========================================================
     WINDOW HEADER
     ========================================================= */

.ui-window-header {

    height: 34px;

    display: flex;

    align-items: center;

    gap: 5px;

    padding: 0 12px;

    background: #fafafa;

    border-bottom:
        1px solid rgba(30, 25, 40, .06);
}


.ui-dot {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #d9d7dc;
}


/* =========================================================
     TASKS
     ========================================================= */

.tasks-ui {

    padding: 18px;
}


.tasks-ui-title {

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 12px;

    color: #25242a;
}


.task-row {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 11px 0;

    border-bottom:
        1px solid #f0eff2;
}


.task-row:last-child {

    border-bottom: 0;
}


.task-check {

    width: 15px;
    height: 15px;

    border-radius: 4px;

    border: 1px solid #d9d6df;

    flex-shrink: 0;
}


.task-check.done {

    background: #7654ad;

    border-color: #7654ad;

    position: relative;
}


.task-check.done::after {

    content: "✓";

    position: absolute;

    color: white;

    font-size: 9px;

    left: 3px;
    top: 0px;
}


.task-name {

    flex: 1;

    font-size: 11px;

    color: #444149;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}


.task-user {

    width: 23px;
    height: 23px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #d8c6ed,
            #7654ad);

    flex-shrink: 0;
}


.task-status {

    padding: 4px 8px;

    border-radius: 20px;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .03em;
}


.task-status.pending {

    background: #fff0f4;

    color: #d96c88;
}


.task-status.complete {

    background: #e8f8f4;

    color: #3b9d89;
}


/* =========================================================
     BILLING UI
     ========================================================= */

.billing-ui {

    padding: 18px 22px;

    height: 100%;
}


.billing-top {

    display: flex;

    justify-content: space-between;

    margin-bottom: 15px;
}


.billing-logo {

    width: 70px;
    height: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px dashed #a9a5af;

    color: #7d7785;

    font-size: 8px;

    font-weight: 700;
}


.billing-number {

    color: #77727d;

    font-size: 9px;
}


.billing-title {

    color: #55515b;

    font-size: 16px;

    font-weight: 700;

    margin-bottom: 10px;
}


.billing-lines {

    display: flex;

    flex-direction: column;

    gap: 6px;

    width: 55%;
}


.billing-line {

    height: 6px;

    border-radius: 10px;

    background: #dedde0;
}


.billing-line.short {

    width: 55%;
}


.billing-line.medium {

    width: 75%;
}


.billing-table {

    margin-top: 20px;

    border-top: 1px solid #ecebef;

    padding-top: 9px;
}


.billing-table-head,
.billing-table-row {

    display: grid;

    grid-template-columns: 1fr 70px 70px;

    gap: 8px;
}


.billing-table-head {

    color: #8a8490;

    font-size: 8px;

    margin-bottom: 9px;
}


.billing-table-row {

    align-items: center;

    color: #68636e;

    font-size: 9px;
}


.billing-table-row span {

    height: 6px;

    border-radius: 10px;

    background: #dedde0;
}


.billing-total {

    display: flex;

    justify-content: flex-end;

    align-items: center;

    gap: 25px;

    margin-top: 20px;

    color: #65606c;

    font-size: 12px;
}


.billing-total strong {

    color: #7654ad;

    font-size: 16px;
}


/* =========================================================
     MATTERS TABLE
     ========================================================= */

.matters-ui {

    width: min(100%, 700px);

    height: 250px;

    transform: translateY(12px);

    transition:
        transform .45s cubic-bezier(.22, 1, .36, 1);
}


.functionality-card:hover .matters-ui {

    transform: translateY(2px);
}


.matter-toolbar {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 12px 15px;

    background: #fff;

    border: 1px solid #ebe9ee;

    border-radius: 12px 12px 0 0;
}


.matter-toolbar-title {

    font-size: 12px;

    font-weight: 700;

    color: #333039;
}


.matter-filters {

    display: flex;

    gap: 6px;
}


.matter-filter {

    padding: 4px 8px;

    border-radius: 5px;

    background: #f4f1f8;

    color: #7654ad;

    font-size: 7px;

    font-weight: 600;
}


.matter-table {

    overflow: hidden;

    border:
        1px solid #ebe9ee;

    border-top: 0;

    border-radius: 0 0 12px 12px;

    background: white;
}


.matter-row {

    display: grid;

    grid-template-columns:
        80px 100px 1fr 80px 80px;

    gap: 8px;

    align-items: center;

    min-height: 35px;

    padding: 0 15px;

    border-bottom:
        1px solid #f0eef2;

    font-size: 8px;

    color: #68636e;
}


.matter-row:last-child {

    border-bottom: 0;
}


.matter-row.header {

    color: #918b97;

    font-size: 7px;

    text-transform: uppercase;

    letter-spacing: .04em;
}


.matter-status {

    display: inline-flex;

    width: max-content;

    padding: 4px 7px;

    border-radius: 10px;

    font-size: 7px;

    font-weight: 700;
}


.matter-status.open {

    background: #e8f7f3;

    color: #319a83;
}


.matter-status.closed {

    background: #f7edf1;

    color: #d96c88;
}


.matter-avatar {

    width: 18px;
    height: 18px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #d6c5eb,
            #7654ad);
}


/* =========================================================
     FLOATING ELEMENTS
     ========================================================= */

.ui-floating {

    position: absolute;

    z-index: 10;

    padding: 10px 13px;

    border-radius: 10px;

    background: rgba(255, 255, 255, .96);

    border: 1px solid rgba(35, 30, 50, .07);

    box-shadow:
        0 10px 25px rgba(35, 30, 50, .10);

    font-size: 9px;

    font-weight: 600;

    color: #55505c;

    animation:
        functionalityFloat 4s ease-in-out infinite;
}


.ui-floating.one {

    right: 9%;

    top: 20%;

    animation-delay: -.8s;
}


.ui-floating.two {

    left: 7%;

    bottom: 15%;

    animation-delay: -2s;
}


@keyframes functionalityFloat {

    0%,
    100% {

        transform:
            translateY(0);
    }

    50% {

        transform:
            translateY(-6px);
    }
}


/* =========================================================
     DECORATIVE GLOW
     ========================================================= */

.functionality-card::before {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -170px;
    top: -170px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(118, 84, 173, .08),
            transparent 70%);

    pointer-events: none;
}

/* =========================================================
   MATFY - DEADLINES / CALENDAR WIDGET
   ========================================================= */

.matfy-deadlines-widget {

    position: relative;

    width: 100%;
    /* max-width: 560px; */

    padding: 1.5rem;

    background: rgba(255, 255, 255, .96);

    border: 1px solid rgba(40, 35, 60, .08);

    border-radius: 20px;

    box-shadow:
        0 10px 30px rgba(40, 35, 60, .055);

    overflow: hidden;
}


/* =========================================================
   HEADER
   ========================================================= */

.deadlines-header {

    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 1rem;

    padding-bottom: 1rem;

    border-bottom: 1px solid rgba(40, 35, 60, .07);
}


.deadlines-eyebrow {

    display: block;

    margin-bottom: .35rem;

    color: #8b7aaa;

    font-size: .68rem;
    font-weight: 700;

    letter-spacing: .1em;
}


.deadlines-header h3 {

    margin: 0;

    color: #25232b;

    font-size: 1.35rem;
    font-weight: 600;

    letter-spacing: -.025em;
}


.deadlines-status {

    display: flex;

    align-items: center;

    gap: .4rem;

    color: #8c8993;

    font-size: .7rem;

    white-space: nowrap;
}


.status-dot {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #63c9ad;

    box-shadow:
        0 0 0 4px rgba(99, 201, 173, .10);
}


/* =========================================================
   CALENDAR
   ========================================================= */

.deadlines-calendar {

    padding: 1.2rem 0 1rem;
}


.calendar-top {

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 1rem;
}


.calendar-top strong {

    color: #34313b;

    font-size: .9rem;
    font-weight: 600;
}


.calendar-arrow {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 27px;
    height: 27px;

    padding: 0;

    border: 0;
    border-radius: 8px;

    background: #f7f6fa;

    color: #777080;

    font-size: 1.15rem;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease;
}


.calendar-arrow:hover {

    background: #efedf5;

    transform: translateY(-1px);
}


.calendar-weekdays,
.calendar-days {

    display: grid;

    grid-template-columns:
        repeat(7, 1fr);

    text-align: center;
}


.calendar-weekdays {

    margin-bottom: .35rem;
}


.calendar-weekdays span {

    color: #aaa6b2;

    font-size: .65rem;
    font-weight: 600;
}


.calendar-days {

    row-gap: .2rem;
}



.calendar-day i {

    position: absolute;

    bottom: 2px;

    left: 50%;

    width: 4px;
    height: 4px;

    transform: translateX(-50%);

    border-radius: 50%;
}


EVENTOS .event-blue i {
    background: #5b8def;
}


.event-pink i {
    background: #e77a9d;
}


.event-purple i {
    background: #9875c5;
}


/* DÍA ACTIVO */

.calendar-day.active-day {

    background: #eee9f8;

    color: #7654ad;

    font-weight: 700;

    box-shadow:
        0 0 0 1px rgba(118, 84, 173, .10);
}


.calendar-day.active-day i {

    background: #7654ad;
}


/* =========================================================
   EVENTO PRINCIPAL
   =========================================================  */

.deadline-event {

    display: flex;

    align-items: center;

    gap: 1rem;

    padding: .95rem;

    border-radius: 14px;

    background: #faf9fc;

    border: 1px solid rgba(118, 84, 173, .08);

    opacity: 1;

    transform: translateY(0);

    transition:
        opacity .35s ease,
        transform .35s ease;
}


.deadline-event-date {

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    min-width: 48px;
    height: 52px;

    border-radius: 11px;

    background: #f0ebf8;

    color: #7654ad;
}


.deadline-day {

    font-size: 1.1rem;
    font-weight: 700;

    line-height: 1;
}


.deadline-month {

    margin-top: .25rem;

    font-size: .55rem;
    font-weight: 700;

    letter-spacing: .08em;
}


.deadline-event-content {

    display: flex;

    flex-direction: column;

    min-width: 0;
}


.deadline-event-type {

    margin-bottom: .2rem;

    color: #d86d91;

    font-size: .57rem;
    font-weight: 700;

    letter-spacing: .08em;
}


.deadline-event-content strong {

    overflow: hidden;

    color: #38343e;

    font-size: .82rem;
    font-weight: 600;

    white-space: nowrap;
    text-overflow: ellipsis;
}


.deadline-event-matter {

    margin-top: .2rem;

    color: #a09ca7;

    font-size: .67rem;
}


.deadline-event-user {

    margin-left: auto;
}


.deadline-avatar {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #7654ad,
            #9b82c6);

    color: white;

    font-size: .55rem;
    font-weight: 700;
}


/* =========================================================
   SEGUNDO EVENTO
   =========================================================  */

.deadline-mini-event {

    display: flex;

    align-items: center;

    gap: .65rem;

    margin-top: .7rem;

    padding-left: .25rem;
}


.mini-event-dot {

    width: 7px;
    height: 7px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: #5b8def;

    box-shadow:
        0 0 0 4px rgba(91, 141, 239, .08);
}


.deadline-mini-event div {

    display: flex;

    flex-direction: column;
}


.deadline-mini-event strong {

    color: #4c4852;

    font-size: .72rem;
    font-weight: 600;
}


.deadline-mini-event span {

    margin-top: .15rem;

    color: #aaa6b0;

    font-size: .62rem;
}


/* =========================================================
   ANIMACIÓN DEL EVENTO
   =========================================================  */

@keyframes deadlinePulse {

    0%,
    100% {
        box-shadow:
            0 0 0 0 rgba(118, 84, 173, 0);
    }

    50% {
        box-shadow:
            0 0 0 5px rgba(118, 84, 173, .07);
    }

}


.active-day {

    animation:
        deadlinePulse 2.8s ease-in-out infinite;
}


/* =========================================================
   MOBILE
   =========================================================  */

@media (max-width: 768px) {

    .matfy-deadlines-widget {

        padding: 1.15rem;

        border-radius: 17px;
    }


    .deadlines-header h3 {

        font-size: 1.15rem;
    }


    .deadlines-status {

        font-size: .62rem;
    }


    .calendar-day {

        width: 27px;
        height: 27px;

        font-size: .68rem;
    }


    .deadline-event {

        gap: .7rem;

        padding: .8rem;
    }


    .deadline-event-content strong {

        font-size: .74rem;
    }


    .deadline-event-matter {

        font-size: .62rem;
    }


    .deadline-avatar {

        width: 25px;
        height: 25px;
    }

}


@media (max-width: 420px) {

    .deadlines-status {

        display: none;
    }


    .calendar-day {

        width: 25px;
        height: 25px;
    }


    .deadline-event-date {

        min-width: 43px;
        height: 48px;
    }

}

/* =========================================================
     MOBILE
     ========================================================= */

@media (max-width: 991px) {

    .functionalities-section {

        padding:
            6rem 0 7rem;
    }


    .functionalities-heading {

        margin-bottom: 3rem;
    }


    .functionalities-grid {

        grid-template-columns: 1fr;
    }


    .functionality-card,
    .functionality-card-wide {

        grid-column: auto;

        min-height: 500px;
    }


    .functionality-content {

        padding:
            2.25rem 2rem 0;
    }


    .functionality-title {

        font-size: 1.65rem;
    }


    .functionality-visual {

        padding:
            2rem 1.25rem 0;

        height: 290px;
    }

}


/* =========================================================
     MOBILE PEQUEÑO
     ========================================================= */

@media (max-width: 575px) {

    .functionalities-section {

        padding:
            5rem 0 6rem;
    }


    .functionalities-heading {

        padding:
            0 1.25rem;
    }


    .functionalities-heading h2 {

        letter-spacing: -.025em;
    }


    .functionalities-heading p {

        font-size: 1rem;
    }


    .functionality-card,
    .functionality-card-wide {

        min-height: 470px;

        border-radius: 20px;
    }


    .functionality-content {

        padding:
            1.8rem 1.5rem 0;
    }


    .functionality-title {

        font-size: 1.45rem;
    }


    .functionality-description {

        font-size: .94rem;
    }


    .functionality-visual {

        height: 255px;

        padding:
            1.25rem .75rem 0;
    }


    .ui-window {

        height: 220px;

        border-radius:
            12px 12px 0 0;
    }


    .matters-ui {

        height: 215px;
    }


    .matter-row {

        grid-template-columns:
            58px 75px 1fr 60px 55px;

        padding:
            0 9px;

        gap: 5px;

        font-size: 7px;
    }


    .matter-toolbar {

        padding:
            9px 10px;
    }


    .matter-filters {

        display: none;
    }


    .ui-floating {

        display: none;
    }


    .billing-table-head,
    .billing-table-row {

        grid-template-columns:
            1fr 45px 45px;
    }

}


/* =========================================================
     REDUCE MOTION
     ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .functionality-card,
    .ui-window,
    .matters-ui,
    .ui-floating {

        animation: none !important;

        transition: none !important;
    }

}

/* =========================================================
   MATFY - MATTERS WIDGET
   ========================================================= */

.matfy-matters-widget {

    position: relative;

    width: 100%;
    max-width: 650px;

    padding: 1.5rem;

    background: rgba(255, 255, 255, .96);

    border: 1px solid rgba(40, 35, 60, .08);

    border-radius: 20px;

    box-shadow:
        0 10px 30px rgba(40, 35, 60, .055);

    overflow: hidden;
}


/* =========================================================
   HEADER
   ========================================================= */

.matters-widget-header {

    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 1rem;

    padding-bottom: 1.15rem;

    border-bottom: 1px solid rgba(40, 35, 60, .07);
}


.matters-eyebrow {

    display: block;

    margin-bottom: .35rem;

    color: #8b7aaa;

    font-size: .68rem;
    font-weight: 700;

    letter-spacing: .1em;
}


.matters-widget-header h3 {

    margin: 0;

    color: #29262f;

    font-size: 1.4rem;
    font-weight: 600;

    letter-spacing: -.025em;
}


.matters-count {

    padding: .4rem .65rem;

    border-radius: 8px;

    background: #f3eff9;

    color: #7654ad;

    font-size: .67rem;
    font-weight: 600;

    white-space: nowrap;
}


/* =========================================================
   SUMMARY
   ========================================================= */

.matters-summary {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: .75rem;

    padding: 1.2rem 0;

    border-bottom: 1px solid rgba(40, 35, 60, .07);
}


.matter-summary-item {

    display: flex;

    flex-direction: column;

    gap: .2rem;
}


.matter-summary-label {

    color: #aaa6b1;

    font-size: .58rem;
    font-weight: 700;

    letter-spacing: .08em;
}


.matter-summary-item strong {

    color: #37333d;

    font-size: 1.35rem;
    font-weight: 600;

    letter-spacing: -.03em;
}


/* =========================================================
   LIST
   ========================================================= */

.matters-list {

    display: flex;

    flex-direction: column;
}


.matter-row {

    display: grid;

    grid-template-columns:
        70px minmax(0, 1fr) auto 30px;

    align-items: center;

    gap: .85rem;

    min-height: 74px;

    border-bottom: 1px solid rgba(40, 35, 60, .06);

    transition:
        background .25s ease,
        transform .25s ease;
}


.matter-row:last-child {
    border-bottom: 0;
}


.matter-row:hover {

    background:
        linear-gradient(90deg,
            rgba(118, 84, 173, .025),
            transparent);

    transform: translateX(2px);
}


/* =========================================================
   NUMBER
   ========================================================= */

.matter-number {

    color: #8d8795;

    font-size: .68rem;
    font-weight: 600;

    white-space: nowrap;
}


/* =========================================================
   INFO
   ========================================================= */

.matter-info {

    display: flex;

    flex-direction: column;

    min-width: 0;
}


.matter-info strong {

    overflow: hidden;

    color: #45404b;

    font-size: .82rem;
    font-weight: 600;

    white-space: nowrap;
    text-overflow: ellipsis;
}


.matter-info span {

    margin-top: .25rem;

    overflow: hidden;

    color: #aaa6b0;

    font-size: .64rem;

    white-space: nowrap;
    text-overflow: ellipsis;
}


/* =========================================================
   STATUS
   ========================================================= */

.matter-status {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 76px;

    padding: .35rem .55rem;

    border-radius: 7px;

    font-size: .55rem;
    font-weight: 700;

    letter-spacing: .03em;

    white-space: nowrap;
}


.matter-status::before {

    content: "";

    width: 5px;
    height: 5px;

    margin-right: .35rem;

    border-radius: 50%;
}


.status-open {

    background: #e8f7f3;

    color: #4cae9b;
}


.status-open::before {
    background: #4cae9b;
}


.status-review {

    background: #f1ecfa;

    color: #886bb2;
}


.status-review::before {
    background: #886bb2;
}


.status-closed {

    background: #f8edf1;

    color: #d37a96;
}


.status-closed::before {
    background: #d37a96;
}


/* =========================================================
   AVATAR
   ========================================================= */

.matter-avatar {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 29px;
    height: 29px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #7654ad,
            #9b82c6);

    color: white;

    font-size: .52rem;
    font-weight: 700;
}


.avatar-blue {

    background:
        linear-gradient(135deg,
            #5488df,
            #7da8ed);
}


.avatar-green {

    background:
        linear-gradient(135deg,
            #55ad9b,
            #7bc8b7);
}


/* =========================================================
   FOOTER
   ========================================================= */

.matters-widget-footer {

    display: flex;

    justify-content: space-between;
    align-items: center;

    padding-top: 1rem;

    color: #aaa6b0;

    font-size: .62rem;
}


.matter-footer-arrow {

    color: #7654ad;

    font-size: 1rem;

    transition:
        transform .25s ease;
}


.matters-widget-footer:hover .matter-footer-arrow {

    transform: translateX(3px);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .matfy-matters-widget {

        padding: 1.15rem;

        border-radius: 17px;
    }


    .matters-widget-header h3 {

        font-size: 1.18rem;
    }


    .matter-row {

        grid-template-columns:
            58px minmax(0, 1fr) 28px;

        gap: .65rem;

        min-height: 68px;
    }


    .matter-status {

        display: none;
    }


    .matter-info strong {

        font-size: .76rem;
    }


    .matter-info span {

        font-size: .61rem;
    }


    .matter-number {

        font-size: .62rem;
    }


    .matters-summary {

        padding: 1rem 0;
    }


    .matter-summary-item strong {

        font-size: 1.15rem;
    }

}

/* =========================================================
   DIGITAL IMPACT
   ========================================================= */

.digital-impact-section {
    /* --impact-bg: #f8f7fb; */
    --impact-purple: #7654ad;
    --impact-dark: #292330;
    position: relative;
    overflow: hidden;
    background: var(--impact-bg);
    color: var(--impact-dark);
    padding: 175px 0 190px;
}


/* =========================================================
   TRANSICIÓN SUPERIOR
   ========================================================= */

.digital-impact-section::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: -95px;
    left: -5%;
    width: 110%;
    height: 150px;
    background: #ffffff;
    border-radius:
        0 0 50% 50% / 0 0 100% 100%;
    pointer-events: none;
}


/* =========================================================
   ATMÓSFERA
   ========================================================= */

.digital-impact-section::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 35%;
    left: 50%;
    width: 700px;
    height: 700px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(118, 84, 173, .055) 0%,
            rgba(118, 84, 173, .025) 38%,
            transparent 70%);
    filter: blur(25px);
    pointer-events: none;
}


/* =========================================================
   CONTENEDOR
   ========================================================= */

.digital-impact-container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HEADER
   ========================================================= */

.digital-impact-header {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.digital-impact-eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--impact-purple);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .13em;
    line-height: 1.2;
    text-transform: uppercase;
}

.digital-impact-title {
    margin: 0;
    color: var(--impact-dark);
    font-size: clamp(42px, 5.2vw, 68px);
    font-weight: 700;
    letter-spacing: -.05em;
    line-height: .98;
}

.digital-impact-title span {
    color: var(--impact-purple);
}

.digital-impact-description {
    max-width: 650px;
    margin: 25px auto 0;
    color: #69636d;
    font-size: 17px;
    line-height: 1.65;
}




/* =========================================================
   STATS
   ========================================================= */

.digital-impact-stats {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    max-width: 1180px;
    margin: 105px auto 0;
    border-top:
        1px solid rgba(41, 35, 48, .10);
    border-bottom:
        1px solid rgba(41, 35, 48, .10);
}


/* =========================================================
   STAT
   ========================================================= */

.digital-impact-stat {
    position: relative;
    min-height: 225px;
    padding: 48px 35px 42px;
    text-align: center;
}

.digital-impact-stat+.digital-impact-stat {
    border-left:
        1px solid rgba(41, 35, 48, .08);
}


/* =========================================================
   STAT VALUE
   ========================================================= */

.digital-impact-value {
    display: inline-flex;
    align-items: baseline;
    color: var(--impact-dark);
    font-size: clamp(45px, 5vw, 68px);
    font-weight: 650;
    letter-spacing: -.055em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.digital-impact-value-unit {
    margin-left: 4px;
    color: var(--impact-purple);
    font-size: .48em;
    font-weight: 650;
    letter-spacing: -.02em;
}


/* =========================================================
   STAT LABEL
   ========================================================= */

.digital-impact-label {
    max-width: 190px;
    margin: 18px auto 0;
    color: #706a74;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}


/* =========================================================
   MICRO INDICATOR
   ========================================================= */

.digital-impact-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 22px;
    color: rgba(41, 35, 48, .38);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.digital-impact-indicator::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--impact-purple);
    opacity: .55;
}


/* =========================================================
   BOTTOM MESSAGE
   ========================================================= */

.digital-impact-message {
    max-width: 760px;
    margin: 80px auto 0;
    text-align: center;
}

.digital-impact-message p {
    margin: 0;
    color: var(--impact-dark);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: 1.2;
}

.digital-impact-message p span {
    color: var(--impact-purple);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991.98px) {
    .digital-impact-section {
        padding: 145px 0 160px;
    }

    .digital-impact-stats {
        margin-top: 80px;
    }

    .digital-impact-stat {
        padding-left: 20px;
        padding-right: 20px;
    }

    .digital-impact-value {
        font-size: 50px;
    }

}


@media (max-width: 767.98px) {
    .digital-impact-section {
        padding: 115px 0 125px;
    }

    .digital-impact-section::before {
        top: -55px;
        left: -15%;
        width: 130%;
        height: 95px;
    }

    .digital-impact-header {
        padding: 0 10px;
    }

    .digital-impact-eyebrow {
        margin-bottom: 17px;
        font-size: 12px;
    }

    .digital-impact-title {
        font-size: clamp(39px, 10.5vw, 52px);
    }

    .digital-impact-description {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.6;
    }

    /* 2 × 2 */
    .digital-impact-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 65px;
    }

    .digital-impact-stat {
        min-height: 205px;
        padding: 38px 15px 32px;
    }

    .digital-impact-stat:nth-child(3) {
        border-left: 0;
        border-top:
            1px solid rgba(41, 35, 48, .08);
    }

    .digital-impact-stat:nth-child(4) {
        border-top:
            1px solid rgba(41, 35, 48, .08);
    }

    .digital-impact-value {
        font-size: 45px;
    }

    .digital-impact-label {
        margin-top: 15px;
        font-size: 14px;
    }

    .digital-impact-indicator {
        margin-top: 18px;
    }

    .digital-impact-message {
        margin-top: 60px;
        padding: 0 15px;
    }

    .digital-impact-message p {
        font-size: 25px;
    }

}


@media (max-width: 575.98px) {
    .digital-impact-section {
        padding: 95px 0 105px;
    }

    .digital-impact-title {
        font-size: 39px;
    }

    .digital-impact-stats {
        margin-top: 55px;
    }

    .digital-impact-stat {
        min-height: 190px;
        padding: 32px 10px 28px;
    }

    .digital-impact-value {
        font-size: 41px;
    }

    .digital-impact-label {
        max-width: 145px;
        font-size: 13px;
    }

    .digital-impact-indicator {
        display: none;
    }

    .digital-impact-message {
        margin-top: 50px;
    }

    .digital-impact-message p {
        font-size: 23px;
    }

}


/* =========================================================
   REDUCE MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .digital-impact-value {
        transition: none !important;
    }

}



.section-purple {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(circle at 15% 20%,
            rgba(180, 145, 255, .20),
            transparent 38%),
        radial-gradient(circle at 85% 75%,
            rgba(125, 90, 220, .16),
            transparent 40%),
        linear-gradient(135deg,
            #8060b8 0%,
            #68459f 50%,
            #7654ad 100%);
}

.section-purple::before {
    content: "";
    position: absolute;

    top: -80px;
    left: -5%;

    width: 110%;
    height: 130px;

    background: #fff;

    border-radius: 0 0 50% 50% / 0 0 100% 100%;

    pointer-events: none;
}