/* CSS RESET */

*,
::after,
::before {
  box-sizing: inherit;
}

blockquote, body, dd, dl,
dt, fieldset, figure, h1,
h2, h3, h4, h5, h6, hr,
html, iframe, legend, li,
ol, p, pre, textarea, ul {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: 400;
}

ul {
  list-style: none;
}

button, input, select {
  margin: 0;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

img, video {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

a {
  color: var(--text-c);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

svg path {
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

input, textarea {
  outline: none;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
}