/* ========================================
   Reset CSS
======================================== */

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

/* html */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* body */
body {
  margin: 0;
}

/* Headings & text */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dt,
dd,
figure,
blockquote {
  margin: 0;
  padding: 0;
}

/* Lists */
ul,
ol {
  list-style: none;
}

/* Images */
img,
picture {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}



/* Disabled */
:disabled {
  cursor: not-allowed;
}

/* iframe */
iframe {
  border: none;
}

/* hr */
hr {
  border: none;
  border-top: 1px solid #ddd;
}

/* SVG */
svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Hidden */
[hidden] {
  display: none;
}