small column width

essve-width
Css
.essve-width .container-xl {
max-width: 1000px;
}

Bootstrap Utility Example

p-4 rounded-4
Css

H&H badge styling

Css
/* Base badge text: black */
.h_h {
  color: #000000;
  font-weight: 700;
  position: relative;
}
/* Hide the original & character */
.h_h {
  letter-spacing: 0.02em;
}
/* Replace & with orange one */
.h_h::after {
  content: "&";
  color: #ff7c20;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
/* Make original & invisible */
.h_h {
  --amp-index: 1;
}
.h_h::before {
  content: "H";
  color: #000000;
}