/*<!--default-->*/
@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --fs: clamp(15px, 1.15vw, 21px);
  font-size: var(--fs);
  font-family: "Be Vietnam Pro", sans-serif;
}

@media (max-width: 1279px) {
  :root {
    --fs: 1.5vw;
  }
}
@media (max-width: 767px) {
  :root {
    --fs: 2vw;
  }
}
@media (max-width: 639px) {
  :root {
    --fs: 2.75vw;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.bg-hero-slottide {
  background-image: radial-gradient(
      60rem 60rem at 80% 20%,
      rgba(173, 131, 48, 0.35),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(46, 49, 26, 0.55) 0%,
      rgba(46, 49, 26, 0.15) 60%,
      rgba(46, 49, 26, 0.55) 100%
    ),
    url("/assets/bg.png");
}
