.border-radius {
  border-radius: 6px;
}
.quick-links {
  display: flex;
  align-items: center;
  flex-direction: column;
  scroll-snap-align: start;
}
@media only screen and (min-width: 900px) {
  .quick-links {
    flex-direction: row;
  }
}
.quick-links ul {
  display: flex;
  list-style: none;
  max-width: 100%;
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  overflow-x: scroll;
  padding: 0 18px;
  box-sizing: border-box;
}
.quick-links ul::-webkit-scrollbar {
  display: none;
  width: 0 ! important;
}
@media only screen and (min-width: 900px) {
  .quick-links ul {
    padding: 0;
  }
}
.quick-links li + li {
  margin: 0 0 0 12px;
}
.quick-links h2 {
  margin: 0;
}
@media only screen and (min-width: 900px) {
  .quick-links h2 {
    margin-right: 18px;
  }
}
