html {
  font-family: "Plus Jakarta Sans", sans-serif;
  scroll-behavior: smooth;
}
body {
  position: relative;
  margin: 0;
  overflow-x: hidden;
}
body.unscrollable {
  overflow-y: hidden;
}
.container {
  width: 1730px;
  max-width: 100%;
}

/* ---- float in animation ---- */
.hidden {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(30px);
  transition: opacity 0.4s ease-in, transform ease-in .8s;
  transition-delay: .2s;
}
.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
  transition: opacity 0.4s ease-out, transform ease-out .8s;
  transition-delay: .2s;
}

@media only screen and (max-width: 1440px) {
  .container {
    max-width: 1240px;
    width: 100%;
  }
}

@media only screen and (max-width: 1280px) {
  .container {
    max-width: 1200px;
  }
}

@media only screen and (max-width: 992px) {

}

@media only screen and (max-width: 768px) {

}
