
/*=============================================================================

    CTM PATH™
    FROM SURVIVAL TO LIVING™

    FILE
    reset.css

    PURPOSE

    Browser Reset

    RESPONSIBILITIES

    • Remove browser inconsistencies
    • Normalize default spacing
    • Standardize box sizing
    • Remove default list styles
    • Remove default link styles
    • Improve media defaults

    NOTE

    This file MUST NEVER contain
    branding, colours, typography,
    layouts or components.

=============================================================================*/

/*=============================================================================
    BOX MODEL
=============================================================================*/

*,
*::before,
*::after{

    margin:0;
    padding:0;

    box-sizing:border-box;

}

/*=============================================================================
    HTML
=============================================================================*/

html{

    width:100%;

    height:100%;

    font-size:16px;

    scroll-behavior:smooth;

    -webkit-text-size-adjust:100%;

}

/*=============================================================================
    BODY
=============================================================================*/

body{

    width:100%;

    min-height:100vh;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}

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

img,
picture,
svg,
canvas,
video{

    display:block;

    max-width:100%;

}

/*=============================================================================
    FORM ELEMENTS
=============================================================================*/

input,
button,
textarea,
select{

    font:inherit;

    color:inherit;

    background:transparent;

    border:none;

    outline:none;

}

/*=============================================================================
    BUTTONS
=============================================================================*/

button{

    cursor:pointer;

}

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

a{

    color:inherit;

    text-decoration:none;

}

/*=============================================================================
    LISTS
=============================================================================*/

ul,
ol{

    list-style:none;

}

/*=============================================================================
    TABLES
=============================================================================*/

table{

    border-collapse:collapse;

    border-spacing:0;

}

/*=============================================================================
    QUOTES
=============================================================================*/

blockquote,
q{

    quotes:none;

}

blockquote::before,
blockquote::after,
q::before,
q::after{

    content:"";

}

/*=============================================================================
    TEXT SELECTION
=============================================================================*/

::selection{

    background:transparent;

}

/*=============================================================================
    HIDDEN
=============================================================================*/

[hidden]{

    display:none !important;

}

/*=============================================================================
    END
=============================================================================*/
