/* # FRAMEWORK # */
/* Desktop */
.boxed-responsive {
  max-width: 1120px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Tablet portrait */
@media (max-width: 1024px) {
  .boxed-responsive {
    max-width: 90vw;
  }
}

/* Mobile portrait */
@media (max-width: 767px) {
  .boxed-responsive {
    max-width: 80vw;
  }
}