.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-left: 1rem;
  margin-right: 1rem;
  width: calc(100% - 2rem);
  height: 100%;
  max-width: 1068px;
}
@media (min-width: 768px) {
  .grid-container {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 2.125rem;
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    width: calc(100% - 2.5rem);
  }
}
@media (min-width: 1024px) {
  .grid-container {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 2rem;
    margin-left: 3rem;
    margin-right: 3rem;
    width: calc(100% - 6rem);
  }
}
@media (min-width: 1440px) {
  .grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 1288px;
  }
}

.spoke-grid {
  grid-column: 1/span 4;
}
@media (min-width: 768px) {
  .spoke-grid {
    grid-column: 1/span calc(var(--grid-content-base-tablet-span) + 3);
  }
}
@media (min-width: 1440px) {
  .spoke-grid {
    grid-column: var(--grid-content-start-on-desktop)/span calc(var(--grid-content-base-desktop-span) + 4);
  }
}
.spoke-grid .grid-container {
  --grid-content-base-desktop-span: 4;
}

.hub-and-spoke-hero-home-section {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 6.375rem;
  padding-bottom: 4.75rem;
}
@media (min-width: 768px) {
  .hub-and-spoke-hero-home-section {
    padding-top: 0rem;
    padding-bottom: 0rem;
    height: 540px;
  }
}
.hub-and-spoke-hero-home-section .grid-container {
  z-index: 1;
}
.hub-and-spoke-hero-home-section .grid-container .hero-component {
  grid-column: 1/span 4;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  max-height: 35vh;
}
@media (min-width: 768px) {
  .hub-and-spoke-hero-home-section .grid-container .hero-component {
    grid-column: 1/span calc(var(--grid-content-base-tablet-span) + 3);
  }
}
@media (min-width: 1440px) {
  .hub-and-spoke-hero-home-section .grid-container .hero-component {
    grid-column: var(--grid-content-start-on-desktop)/span calc(var(--grid-content-base-desktop-span) + 4);
  }
}
@media (min-width: 768px) {
  .hub-and-spoke-hero-home-section .grid-container .hero-component {
    align-items: center;
    max-height: none;
  }
}
.hub-and-spoke-hero-home-section .grid-container .hero-component .hero-content {
  text-align: left;
}
@media (min-width: 768px) {
  .hub-and-spoke-hero-home-section .grid-container .hero-component .hero-content {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
    text-align: center;
  }
}
.hub-and-spoke-hero-home-section .grid-container .hero-component .hero-content .hero-title {
  font-family: proxima-nova, sans-serif;
  font-size: 2.125rem !important;
  font-style: normal;
  font-weight: 700;
  line-height: 2.625rem !important;
  letter-spacing: -0.25px;
  color: #FFF;
}
@media (min-width: 1024px) {
  .hub-and-spoke-hero-home-section .grid-container .hero-component .hero-content .hero-title {
    font-size: 3rem !important;
    font-style: normal;
    font-weight: 700;
    line-height: 3.5rem !important;
    letter-spacing: -0.25px;
  }
}
.hub-and-spoke-hero-home-section .grid-container .hero-component .hero-content .hero-default {
  font-family: proxima-nova, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  color: #E7E7E7;
  padding-top: 0.5rem;
}
.hub-and-spoke-hero-home-section .grid-container .hero-component .hero-arrow {
  display: none;
}
@media (min-width: 768px) {
  .hub-and-spoke-hero-home-section .grid-container .hero-component .hero-arrow {
    display: block;
    margin-bottom: 2rem;
  }
  .hub-and-spoke-hero-home-section .grid-container .hero-component .hero-arrow img {
    width: 30px;
    height: auto;
  }
}
.hub-and-spoke-hero-home-section .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: 0;
}