@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
section {
  box-sizing: border-box;
  padding: 64px 32px;
}
@media (min-width: 768px) {
  section {
    padding: 96px 32px;
  }
}

ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

h3 {
  font-family: "Roboto", sans-serif;
}

.hoekstra-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  min-width: 161px;
  width: fit-content;
  box-sizing: border-box;
  white-space: nowrap;
}
.hoekstra-button__text {
  line-height: 18px;
}
.hoekstra-button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hoekstra-button__icon svg {
  width: 16px;
  height: 16px;
}
.hoekstra-button--dark.hoekstra-button--primary {
  background-color: #8EA604;
  color: #101820;
  border-color: #8EA604;
}
.hoekstra-button--dark.hoekstra-button--primary:hover {
  background-color: #809410;
  border-color: #809410;
  text-decoration: underline;
}
.hoekstra-button--dark.hoekstra-button--secondary {
  background-color: transparent;
  color: #8EA604;
  border-color: #8EA604;
}
.hoekstra-button--dark.hoekstra-button--secondary:hover {
  background-color: #809410;
  color: #101820;
  text-decoration: underline;
}
.hoekstra-button--light.hoekstra-button--primary {
  background-color: #1A535C;
  color: #ffffff;
  border-color: #1A535C;
}
.hoekstra-button--light.hoekstra-button--primary:hover {
  background-color: #07272C;
  border-color: #07272C;
  text-decoration: underline;
}
.hoekstra-button--light.hoekstra-button--secondary {
  background-color: transparent;
  color: #1A535C;
  border-color: #1A535C;
}
.hoekstra-button--light.hoekstra-button--secondary:hover {
  background-color: #07272C;
  color: #ffffff;
  text-decoration: underline;
}

.button-group {
  display: inline-flex;
  gap: 16px;
}

/**
 * Hero Component Styles
 * Supports both Homepage Hero (full background) and Regular Hero (split layout)
 */
.hero-component {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.hero-component.bg-navy {
  background-color: #12355B;
}
.hero-component.bg-dark-teal {
  background-color: #1A535C;
}
.hero-component.bg-lime-green {
  background-color: #8EA604;
}
.hero-component.bg-jet-black {
  background-color: #101820;
}
.hero-component.bg-bus-blue {
  background-color: #1864D3;
}
.hero-component.bg-leasing-orange {
  background-color: #ED8B00;
}
.hero-component.bg-company-gray {
  background-color: #61676B;
}
.hero-component.bg-dark-gray {
  background-color: #A2A4A3;
}
.hero-component.bg-light-gray {
  background-color: #DADCDE;
}
.hero-component.bg-lightest-gray {
  background-color: #F5F5F5;
}
.hero-component.bg-graphite {
  background-color: #232323;
}
.hero-component.bg-sunshine {
  background-color: #F0F2A6;
}
.hero-component.bg-sky-blue {
  background-color: #8EE3EF;
}
.hero-component.bg-mint-green {
  background-color: #60D394;
}
.hero-component.bg-white {
  background-color: #ffffff;
}
.hero-component.text-navy {
  color: #12355B;
}
.hero-component.text-dark-teal {
  color: #1A535C;
}
.hero-component.text-lime-green {
  color: #8EA604;
}
.hero-component.text-jet-black {
  color: #101820;
}
.hero-component.text-bus-blue {
  color: #1864D3;
}
.hero-component.text-leasing-orange {
  color: #ED8B00;
}
.hero-component.text-company-gray {
  color: #61676B;
}
.hero-component.text-dark-gray {
  color: #A2A4A3;
}
.hero-component.text-light-gray {
  color: #DADCDE;
}
.hero-component.text-lightest-gray {
  color: #F5F5F5;
}
.hero-component.text-graphite {
  color: #232323;
}
.hero-component.text-sunshine {
  color: #F0F2A6;
}
.hero-component.text-sky-blue {
  color: #8EE3EF;
}
.hero-component.text-mint-green {
  color: #60D394;
}
.hero-component.text-white {
  color: #ffffff;
}
.hero-component {
  /**
   * Homepage Hero - Full viewport with background image
   */
}
.hero-component.hero-type-homepage {
  justify-content: flex-start;
  padding: 2rem 0;
  min-height: 880px;
}
@media (max-width: 768px) {
  .hero-component.hero-type-homepage {
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .hero-component.hero-type-homepage {
    flex-direction: row;
    padding: 11rem 0;
  }
}
.hero-component.hero-type-homepage .hero-heading {
  max-width: 720px;
}
.hero-component.hero-type-homepage .hero-text-content {
  padding: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .hero-component.hero-type-homepage .hero-text-content {
    padding: 2rem;
    width: auto;
    max-width: none;
  }
}
.hero-component.hero-type-homepage .hero-text {
  padding: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: break-word;
}
.hero-component.hero-type-homepage .hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  max-width: 1280px;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .hero-component.hero-type-homepage .hero-content {
    flex-direction: row;
    align-items: center;
    padding: 0 2rem;
    margin-top: 0;
  }
}
.hero-component.hero-type-homepage .hexagon-decoration {
  width: 52.8472222222vw;
  height: 52.8472222222vw;
  max-width: 1280px;
  max-height: 1200px;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-component.hero-type-homepage .hexagon-decoration {
    display: none;
  }
}
.hero-component.hero-type-homepage .hexagon-decoration.hex-bottom-right {
  right: -450px;
  bottom: -325px;
}
.hero-component {
  /**
   * Regular Hero - Split layout with text and image side-by-side
   */
}
.hero-component.hero-type-regular {
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .hero-component.hero-type-regular {
    justify-content: flex-start;
    padding: 144px 0 96px 0;
  }
}
.hero-component.hero-type-regular .hero-heading {
  max-width: 640px;
}
.hero-component.hero-type-regular .hero-content {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  max-width: 1280px;
  padding: 2rem;
}
@media (min-width: 768px) {
  .hero-component.hero-type-regular .hero-content {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 4rem;
    margin-top: 0;
  }
}
.hero-component.hero-type-regular .hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .hero-component.hero-type-regular .hero-image-wrapper {
    flex: 0 1 480px;
    min-width: 0;
  }
}
.hero-component.hero-type-regular .hero-side-image {
  width: 100%;
  height: 311px;
  object-fit: cover;
  object-position: 25% center;
  border-radius: 0.75rem;
}
@media (min-width: 768px) {
  .hero-component.hero-type-regular .hero-side-image {
    height: 538px;
  }
}
.hero-component.hero-type-regular .hexagon-decoration {
  width: 761px;
  height: 761px;
  z-index: 1;
}
.hero-component.hero-type-regular .hexagon-decoration.hex-bottom-right {
  right: -440px;
  bottom: -480px;
}
@media (min-width: 768px) {
  .hero-component.hero-type-regular .hexagon-decoration.hex-bottom-right {
    right: -550px;
    bottom: -200px;
  }
}
@media (min-width: 920px) {
  .hero-component.hero-type-regular .hexagon-decoration.hex-bottom-right {
    right: -450px;
    bottom: -200px;
  }
}
.hero-component {
  /**
   * Shared Elements
   */
}
.hero-component .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-component .hero-background--video {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #12355B;
}
.hero-component .hero-background--video video {
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
}
.hero-component .hero-text-content {
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .hero-component .hero-text-content {
    text-align: left;
  }
}
.hero-component .hero-text {
  padding: 0 16px;
}
@media (min-width: 768px) {
  .hero-component .hero-text {
    padding: 0;
  }
}
.hero-component .hero-eyebrow {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: #F5F5F5;
  margin: 0;
}
@media (min-width: 768px) {
  .hero-component .hero-eyebrow {
    font-size: 16px;
    text-align: left;
  }
}
.hero-component .hero-heading {
  color: #ffffff;
  font-size: 52px;
  line-height: 56px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  padding: 24px 0;
  margin: 0;
}
@media (min-width: 768px) {
  .hero-component .hero-heading {
    font-size: 72px;
    line-height: 78px;
    letter-spacing: 1px;
    text-align: left;
    padding: 12px 0 24px 0;
  }
}
.hero-component .hero-description {
  max-width: 580px;
  padding-bottom: 32px;
  font-size: 16px;
  line-height: 26px;
  color: #F5F5F5;
  margin: 0;
}
@media (min-width: 768px) {
  .hero-component .hero-description {
    font-size: 18px;
    line-height: 32px;
    text-align: left;
  }
}
.hero-component .hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.hero-component .hero-buttons .hoekstra-button {
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero-component .hero-buttons {
    display: inline-flex;
    flex-direction: row;
    padding: 0;
    margin: 0;
    width: auto;
  }
}
.hero-component .hexagon-decoration {
  position: absolute;
  pointer-events: none;
}
.hero-component .hexagon-decoration svg {
  width: 100%;
  height: 100%;
}

/*# sourceMappingURL=hero.css.map */
