.home-footer-bleed {
  width: 100dvw;
  max-width: 100dvw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50dvw;
  margin-right: -50dvw;
}

@supports not (width: 100dvw) {
  .home-footer-bleed {
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}

.home-footer-bleed *,
.home-footer-bleed *::before,
.home-footer-bleed *::after {
  box-sizing: border-box;
}

.home-footer-bleed h1,
.home-footer-bleed h2,
.home-footer-bleed h3,
.home-footer-bleed h4,
.home-footer-bleed h5,
.home-footer-bleed h6,
.home-footer-bleed p {
  margin: 0;
}

.home-footer-bleed ul,
.home-footer-bleed ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-footer-bleed a {
  color: inherit;
  text-decoration: none;
}

.home-footer-bleed button {
  font: inherit;
  color: inherit;
  border: 0;
}

.home-footer-bleed img,
.home-footer-bleed svg {
  display: block;
}

.home-footer-bleed img {
  max-width: 100%;
}

.home-footer-bleed .grid > * {
  min-width: 0;
}

.container {
  width: 100%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}

.inline-block {
  display: inline-block;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-col {
  flex-direction: column;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-12 {
  gap: 3rem;
}

.gap-4 {
  gap: 1rem;
}

.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.25rem;
}

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.75rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.w-auto {
  width: auto;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-10 {
  width: 2.5rem;
}

.w-11 {
  width: 2.75rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-10 {
  height: 2.5rem;
}

.h-11 {
  height: 2.75rem;
}

.h-20 {
  height: 5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}

.border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.border-gray-800 {
  border-color: rgb(31 41 55);
}

.border-brand-red {
  border-color: #ed1c24;
}

.bg-brand-dark {
  background-color: #111827;
}

.bg-gray-800 {
  background-color: rgb(31 41 55);
}

.text-white {
  color: #fff;
}

.text-center {
  text-align: center;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.font-bold {
  font-weight: 700;
}

.text-gray-400 {
  color: rgb(156 163 175);
}

.text-gray-500 {
  color: rgb(107 114 128);
}

.leading-relaxed {
  line-height: 1.625;
}

.object-contain {
  object-fit: contain;
}

.brightness-0 {
  filter: brightness(0);
}

.invert {
  filter: invert(1);
}

.brightness-0.invert,
.invert.brightness-0 {
  filter: brightness(0) invert(1);
}

.pt-16 {
  padding-top: 4rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.p-2 {
  padding: 0.5rem;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.shadow-lg {
  box-shadow:
    0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.hover\:text-brand-red:hover {
  color: #ed1c24;
}

.hover\:bg-brand-red:hover {
  background-color: #ed1c24;
}

.container {
  max-width: none;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }

  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:gap-12 {
    gap: 3rem;
  }

  .md\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:justify-self-start {
    justify-self: start;
  }

  .md\:text-left {
    text-align: left;
  }

  .md\:h-28 {
    height: 7rem;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
