/* ===============================
   Reset.css - kapsamlı
   =============================== */


/* Box sizing */

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


/* Remove default margins & paddings */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
menu,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}


/* HTML5 display-role reset */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
    display: block;
}


/* Body base */

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #fff;
    color: #000;
}


/* Lists */

ol,
ul {
    list-style: none;
}


/* Links */

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


/* Images */

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


/* Tables */

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}


/* Forms */

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

button {
    cursor: pointer;
}

textarea {
    resize: vertical;
}


/* Headings baseline */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: normal;
}


/* Strong/Em */

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}


/* Quotes */

blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: '';
    content: none;
}


/* Remove animations/transitions for prefers-reduced-motion */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}