/* rd-reset.css */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

input, button, textarea, select {
  font: inherit;
  max-width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
}

/* Responsive  */

@media (max-width: 1024px) {
  html { font-size: 15px; }
}
/* Mobile ≤ 768px */
@media (max-width: 768px) {
  html { font-size: 14px; }
}
/* Small Mobile ≤ 480px */
@media (max-width: 480px) {
  html { font-size: 13px; }
}

/*  Prevent content overflow on any screen  */
* {
  max-width: 100%;
}
img, video, iframe, embed, object {
  max-width: 100%;
}