/* ========================================
   Reset CSS
   ======================================== */

/* Box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Reset margins and paddings */
* {
    margin: 0;
    padding: 0;
}

/* HTML and Body */
html,
body {
    height: 100%;
}

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Media elements */
img,
picture,
video,
canvas,
svg {
    /*display: block;*/
    max-width: 100%;
}

/* Form elements */
input,
button,
textarea,
select {
    font: inherit;
}

/* Text overflow */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
}

/* Tables */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Button */
button {
    border: none;
    background: none;
    cursor: pointer;
}

body.home ul,
body.home ol {
    list-style: none;
    padding: 0;
}

body:not(.home) ul li ul,
body:not(.home) ol li ol {
    padding-top: 0;
    padding-bottom: 0;
}