/* =========================================================
   NEXUS GLOBAL RESEARCH
   GLOBAL CUSTOM CSS
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #ffffff;
    color: #0f172a;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}


/*
------------------------------------------------------------
PAGE OFFSET
------------------------------------------------------------
*/

.site-page {
    padding-top: 72px;
}


/*
------------------------------------------------------------
SELECTION
------------------------------------------------------------
*/

::selection {
    background: #0f172a;
    color: #ffffff;
}


/*
------------------------------------------------------------
FOCUS
------------------------------------------------------------
*/

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid #0f172a;
    outline-offset: 3px;
}


/*
------------------------------------------------------------
MOBILE
------------------------------------------------------------
*/

@media (max-width: 1023px) {

    .site-page {
        padding-top: 72px;
    }

}


/*
------------------------------------------------------------
REDUCED MOTION
------------------------------------------------------------
*/

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

    html {
        scroll-behavior: auto;
    }

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

}