/* ===== KAOS DEFAULT STYLES ===== */

html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
}

/* ===== HELPERS ===== */

.hidden {
    display: none;
}

.hidden-mobile {
    @media (max-width: 1024px) {
        display: none;
    }
}

.hidden-desktop {
    @media (min-width: 1025px) {
        display: none;
    }
}