@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;
}

.horizontal-tabs-component {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}
.horizontal-tabs-component .horizontal-tabs-container {
  max-width: 1280px;
  margin: 0 auto;
}
.horizontal-tabs-component .tabs-navigation {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 3rem;
  justify-items: center;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .horizontal-tabs-component .tabs-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: none;
  }
}
.horizontal-tabs-component .tabs-navigation .tab-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 800;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .horizontal-tabs-component .tabs-navigation .tab-button {
    width: auto;
    text-align: left;
    justify-content: flex-start;
  }
}
.horizontal-tabs-component .tabs-navigation .tab-button .tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.horizontal-tabs-component .tabs-navigation .tab-button .tab-icon svg {
  width: 16px;
  height: 16px;
}
.horizontal-tabs-component .tabs-navigation .tab-button .tab-label {
  white-space: normal;
  word-wrap: break-word;
}
@media (max-width: 768px) {
  .horizontal-tabs-component .tabs-navigation .tab-button {
    padding: 10px 12px;
    font-size: 16px;
  }
}
.horizontal-tabs-component .tabs-panels {
  position: relative;
}
.horizontal-tabs-component .tabs-panels .tab-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}
.horizontal-tabs-component .tabs-panels .tab-panel.active {
  display: block;
}
.horizontal-tabs-component .tabs-panels .tab-panel__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: #F5F5F5;
  border-radius: 12px;
  padding: 24px;
  overflow: hidden;
  min-height: 412px;
}
@media (min-width: 768px) {
  .horizontal-tabs-component .tabs-panels .tab-panel__content {
    padding: 64px;
  }
}
.horizontal-tabs-component .tabs-panels .tab-panel__text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .horizontal-tabs-component .tabs-panels .tab-panel__text-content {
    text-align: left;
    align-items: flex-start;
  }
}
@media (min-width: 1024px) {
  .horizontal-tabs-component .tabs-panels .tab-panel__text-content {
    flex: 1 1 50%;
    min-width: 0;
  }
}
.horizontal-tabs-component .tabs-panels .tab-panel__title {
  font-size: 44px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 0;
  margin: 0;
  color: #101820;
}
@media (min-width: 768px) {
  .horizontal-tabs-component .tabs-panels .tab-panel__title {
    font-size: 48px;
    line-height: 54px;
    letter-spacing: 1px;
  }
}
.horizontal-tabs-component .tabs-panels .tab-panel__description {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #61676B;
}
@media (min-width: 768px) {
  .horizontal-tabs-component .tabs-panels .tab-panel__description {
    font-size: 18px;
    line-height: 28px;
  }
}
.horizontal-tabs-component .tabs-panels .tab-panel__description p {
  margin: 0 0 1em 0;
}
.horizontal-tabs-component .tabs-panels .tab-panel__description p:last-child {
  margin-bottom: 0;
}
.horizontal-tabs-component .tabs-panels .tab-panel__description ul, .horizontal-tabs-component .tabs-panels .tab-panel__description ol {
  margin: 0 0 1em 1.5rem;
  padding: 0;
}
.horizontal-tabs-component .tabs-panels .tab-panel__description ul:last-child, .horizontal-tabs-component .tabs-panels .tab-panel__description ol:last-child {
  margin-bottom: 0;
}
.horizontal-tabs-component .tabs-panels .tab-panel__description a {
  color: #1A535C;
  text-decoration: underline;
}
.horizontal-tabs-component .tabs-panels .tab-panel__description a:hover {
  text-decoration: none;
}
.horizontal-tabs-component .tabs-panels .tab-panel__description strong, .horizontal-tabs-component .tabs-panels .tab-panel__description b {
  font-weight: 700;
}
.horizontal-tabs-component .tabs-panels .tab-panel__description em, .horizontal-tabs-component .tabs-panels .tab-panel__description i {
  font-style: italic;
}
.horizontal-tabs-component .tabs-panels .tab-panel__buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 10px;
  width: 100%;
}
.horizontal-tabs-component .tabs-panels .tab-panel__buttons .hoekstra-button {
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
}
@media (min-width: 768px) {
  .horizontal-tabs-component .tabs-panels .tab-panel__buttons {
    display: inline-grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    width: auto;
  }
  .horizontal-tabs-component .tabs-panels .tab-panel__buttons .hoekstra-button {
    width: auto;
  }
}
.horizontal-tabs-component .tabs-panels .tab-panel__buttons > div {
  display: contents;
}
.horizontal-tabs-component .tabs-panels .tab-panel__image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  flex: 0 0 auto;
}
.horizontal-tabs-component .tabs-panels .tab-panel__image-container::before {
  content: "";
  display: block;
  padding-top: 100%;
}
@media (min-width: 1024px) {
  .horizontal-tabs-component .tabs-panels .tab-panel__image-container {
    width: 50%;
    min-width: 0;
  }
}
.horizontal-tabs-component .tabs-panels .tab-panel__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}
@media (min-width: 1024px) {
  .horizontal-tabs-component .tabs-panels .tab-panel--image-left .tab-panel__content {
    flex-direction: row-reverse;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .horizontal-tabs-component .tabs-panels .tab-panel--image-right .tab-panel__content {
    flex-direction: row;
    align-items: center;
  }
}
.horizontal-tabs-component--dark {
  background-color: #101820;
  color: #ffffff;
}
.horizontal-tabs-component--dark .tabs-navigation .tab-button {
  color: #DADCDE;
  border-bottom: 2px solid transparent;
}
.horizontal-tabs-component--dark .tabs-navigation .tab-button .tab-icon {
  color: #8EA604;
}
.horizontal-tabs-component--dark .tabs-navigation .tab-button.active {
  color: #ffffff;
  border-bottom: 2px solid #8EA604;
}
.horizontal-tabs-component--dark .tabs-navigation .tab-button:hover:not(.active) {
  color: #ffffff;
}
.horizontal-tabs-component--dark .full-width-text .full-width-text__eyebrow {
  color: #F5F5F5;
}
.horizontal-tabs-component--dark .full-width-text .full-width-text__heading {
  color: #ffffff;
}
.horizontal-tabs-component--dark .full-width-text .full-width-text__body {
  color: #F5F5F5;
}
.horizontal-tabs-component--light {
  background-color: #ffffff;
  color: #101820;
}
.horizontal-tabs-component--light .tabs-navigation .tab-button {
  color: #101820;
  border-bottom: 2px solid transparent;
}
.horizontal-tabs-component--light .tabs-navigation .tab-button .tab-icon {
  color: #1A535C;
}
.horizontal-tabs-component--light .tabs-navigation .tab-button.active {
  color: #61676B;
  border-bottom: 2px solid #1A535C;
}
.horizontal-tabs-component--light .tabs-navigation .tab-button:hover:not(.active) {
  color: #61676B;
}
.horizontal-tabs-component--light .full-width-text .full-width-text__eyebrow {
  color: #1A535C;
}
.horizontal-tabs-component--light .full-width-text .full-width-text__heading {
  color: #101820;
}
.horizontal-tabs-component--light .full-width-text .full-width-text__body {
  color: #61676B;
}
.horizontal-tabs-component .full-width-text {
  margin-bottom: 2rem;
}
.horizontal-tabs-component-empty {
  padding: 4rem 2rem;
  text-align: center;
  background: #f7f7f7;
  border: 2px dashed #ccc;
  border-radius: 8px;
}
.horizontal-tabs-component-empty p {
  margin: 0;
  color: #666;
  font-size: 1rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=horizontal-tabs.css.map */
