/* =========================================================
   CYBER POINT DEVELOPMENT
   GLOBAL CSS
   ========================================================= */

/* =========================================================
   GLOBAL RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    min-height: 100%;
    font-size: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

/* =========================================================
   MEDIA
   ========================================================= */

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

button,
input,
textarea,
select {
    font: inherit;
}

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

a {
    color: inherit;
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

button {
    -webkit-tap-highlight-color: transparent;
}

a {
    -webkit-tap-highlight-color: transparent;
}

/* =========================================================
   RESPONSIVE BASE
   ========================================================= */

@media (max-width: 1024px) {

    html {
        font-size: 98%;
    }

}

@media (max-width: 768px) {

    html,
    body {
        min-height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }

}

@media (max-width: 480px) {

    html {
        font-size: 96%;
    }

}

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

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

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

}