/* ===============================
   1. Universal Reset
================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===============================
   2. Root & Body
================================ */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.6;
  letter-spacing: normal;
  word-spacing: normal;

  color: #333;
  background-color: #F8F8F8;
}

/* ===============================
   3. Typography
================================ */
h1, h2, h3, h4, h5, h6,
.heading {
  font-family: 'Marcellus', serif;
}

p {
  margin: 0;
}

/* ===============================
   4. Lists
================================ */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ===============================
   5. Links
================================ */
a {
  text-decoration: none;
}

/* ===============================
   6. Images
================================ */
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  border: none;
}

/* ===============================
   7. Layout Elements
================================ */
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}

/* ===============================
   8. Utilities
================================ */
.text-center {
  text-align: center;
}

/* ===============================
   9. Focus (Accessible)
================================ */
:focus-visible {
  outline: 0px;
  outline-offset: 2px;
}
button:focus, button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: 0 !important;
}

.scrolbar::-webkit-scrollbar {width: 6px}
.scrolbar::-webkit-scrollbar-track {background: #d8d8d8; border-radius: 8px}
.scrolbar::-webkit-scrollbar-thumb {background: #000000; border-radius: 8px}
.scrolbar::-webkit-scrollbar-thumb:hover {background: #000000}


.sp25{ padding:25px 0;}