/* Reset CSS */
/* Box Sizing */
*, *::before, *::after {
    box-sizing: border-box;
}
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    font-size: 10px;
}
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

body {
    margin: 0;
    color: var(--body-color);
    overflow-x: hidden;
    font-family: var(--body-font);
    font-size: 10px;
    line-height: 1.42857143;
    min-height: 100vh;
    font-family:"Fira Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}
body::-webkit-scrollbar {
    background-color: transparent;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none;
    width: 0;
}
body::-webkit-scrollbar-thumb {
    background-color: transparent;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none;
    width: 0;
   /* Chrome, Safari, Edge ve Opera için */
}
body::-webkit-scrollbar-track {
    background-color: transparent;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none;
    width: 0;
   /* Chrome, Safari, Edge ve Opera için */
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol {
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 1em;
    font-weight: normal;
}
/* Links */
a {
    text-decoration: none;
    color: inherit;
}
/* Lists */
ul, ol {
    list-style: none;
}
/* Forms */
input, button, textarea, select {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
}
/* Reset Image */
img {
    max-width: 100%;
    height: auto;
    overflow: clip;
    overflow-clip-margin: content-box;
}
/* Reset Table */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* Misc */
button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}
/* Responsive Embeds */
embed, iframe, object, video {
    max-width: 100%;
}
/* Clear Floats */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}
a, a:hover, a:focus, a:active {
    text-decoration: none;
    outline: none;
    color: inherit;
}
