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

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

body {
    line-height: 1.1;
    font-family: 'Arial', sans-serif;
    color: #333;
    width: 100%;
    margin: 0px;
    padding: 0px;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    background-color: transparent;
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    border: 0;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    border: none;
    background: none;
    color: inherit;
}

.flex {
    display: flex;
}
.flex-col {
    flex-direction: column;
}