/* GLOBAL --------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
}
* {
    margin: 0;
}
html, body {
    height: 100%;
}
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}
figure{
    line-height: 0;
}
input, button, textarea {
    background-color: var(--white);
    border: unset;
    border-radius: unset;
    font-family: 'Urbanist', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    line-height: 1;

}
input:focus, button:focus, textarea:focus {
    outline: none;
}
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}
/* ---------------------------------------------------------------------- */