:root {
  --min-width: 320px;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1400px;
}

html, body {
  margin: 0;
}

*, ::before, ::after {
  box-sizing: border-box;
}

.slogan {
  font-size: 30px;
  font-family: Caveat;
  color: var(--ds-color-base-default);
}

.sr-only {
  position: absolute;
  left: -9999px;
}

.page-inner {
  max-width: var(--breakpoint-xxl);
  margin: auto;
  width: 100%;
  padding: 30px;
  min-width: var(--min-width);
}

.page-inner > * {
  margin-bottom: 32px;
}

@media (max-width: 576px) {
  .page-inner {
    padding: 10px;
  }
  .page-inner > * {
    margin-bottom: 16px;
  }
}
.subpage-content > .page-inner > *:last-child {
  margin-bottom: var(--ds-size-12);
}

.ds-heading {
  font-weight: 500;
  font-size: 1.5rem;
}

.ds-tag {
  padding: 0 0.5rem;
}

.link-button-wrapper {
  margin: 0 auto;
  color: var(--ds-color-neutral-text-default);
  display: grid;
  gap: var(--ds-size-6);
}

.link-button-wrapper a {
  text-decoration: none;
}

.link-button-wrapper .ds-paragraph {
  padding-bottom: 0;
  font-size: var(--ds-font-size-5);
  font-weight: normal;
}

.card-container {
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  display: grid;
}

.ds-card__block::before, .ds-card__block::after {
  display: table;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.logo > svg {
  width: 100%;
  max-width: 250px;
  min-width: 150px;
}

.logo svg * {
  fill: #000;
}

@media (prefers-color-scheme: dark) {
  .logo svg * {
    fill: #fff;
  }
}
.nowrap {
  white-space: nowrap;
}
h1 {
  margin-top: 0;
}

.subpage-top {
  background: linear-gradient(to bottom, var(--ds-color-background-default) 0%, var(--ds-color-background-default) 80%, var(--ds-color-background-tinted) 80%, var(--ds-color-background-tinted) 100%);
}

section.subpage {
  background-color: var(--ds-color-background-default);
}

.subpage-content {
  background-color: var(--ds-color-background-tinted);
}

.subpage-top .page-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2%;
}

.subpage-top .page-inner > * {
  width: 49%;
}

@media screen and (max-width: 992px) {
  .subpage-top .page-inner {
    flex-direction: column;
  }
  .subpage-top .page-inner > div {
    margin: 0 0 16px;
  }
  .subpage-top .page-inner > * {
    width: 100%;
  }
}
main img {
  border-radius: var(--ds-border-radius-xl);
}

.textbox-wrapper {
  margin: 16px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.textbox-wrapper > div {
  background-color: var(--ds-color-surface-tinted);
  padding: var(--ds-size-8);
  border-radius: var(--ds-border-radius-xl);
}

.page-inner > .ds-paragraph {
  max-width: 768px;
  margin: var(--ds-size-18) auto;
}

@media (max-width: 768px) {
  .textbox-wrapper {
    grid-template-columns: 1fr;
  }
}
.video-div {
  margin: 30px 0;
  position: relative;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  clear: both;
}

.video-div > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-style: none;
}
.ds-card__block {
  padding: 0;
}

.ds-heading {
  font-weight: 500;
  font-size: var(--ds-font-size-7);
}

.image-with-textbox {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.image-with-textbox > img {
  position: relative;
  z-index: 1;
  object-fit: cover;
  border-radius: var(--ds-border-radius-xl);
}

.image-with-textbox > .ds-card {
  z-index: 2;
  box-shadow: 5px 5px 10px 1px rgba(0, 0, 0, 0.2);
  overflow: auto;
  border-style: none;
  padding: var(--ds-size-12);
  font-size: var(--ds-font-size-5);
  font-weight: normal;
  max-height: 90%;
}

.image-with-textbox:nth-of-type(even) > .ds-card {
  background-color: var(--ds-color-main2-background-tinted);
  color: var(--ds-color-main2-text-default);
}

.image-with-textbox:nth-of-type(odd) > .ds-card {
  background-color: var(--ds-color-main1-surface-tinted);
}

@media screen and (min-width: 1201px) {
  .image-with-textbox > img {
    width: 60%;
  }
  .image-with-textbox > .ds-card {
    width: 50%;
  }
}
@media screen and (max-width: 1200px) and (min-width: 769px) {
  .image-with-textbox > img {
    width: 80%;
  }
  .image-with-textbox > .ds-card {
    min-height: 50%;
    width: 40%;
    padding: var(--ds-size-12);
  }
}
@media screen and (min-width: 769px) {
  .image-with-textbox:nth-of-type(odd) > .ds-card {
    left: 0;
  }
  .image-with-textbox:nth-of-type(even) > .ds-card {
    right: 0;
  }
  .image-with-textbox:nth-of-type(odd) > img {
    margin: 15px 0 15px auto;
  }
  .image-with-textbox:nth-of-type(even) > img {
    margin: 15px auto 15px 0;
  }
  .image-with-textbox > .ds-card {
    position: absolute;
  }
}
@media screen and (max-width: 768px) {
  .ds-heading {
    font-size: var(--ds-font-size-5);
  }
  .image-with-textbox > .ds-card {
    position: relative;
  }
  .image-with-textbox {
    justify-content: flex-start;
    flex-direction: column;
  }
  .image-with-textbox > img {
    width: 85%;
    align-self: flex-start;
  }
  .image-with-textbox > .ds-card {
    min-height: 100px;
    width: 80%;
    bottom: 50px;
    align-self: flex-end;
    padding: var(--ds-size-10);
    font-size: var(--ds-font-size-3);
  }
}
@media screen and (max-width: 575px) {
  .image-with-textbox > .ds-card {
    padding: var(--ds-size-7);
  }
}
.quote-box {
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  gap: 10px;
}

.quote-box > div {
  display: flex;
  align-items: center;
  background-color: var(--ds-color-main2-background-default);
  border-radius: var(--ds-border-radius-xl);
  padding: 30px;
  color: var(--ds-color-main2-text-subtle);
}

.quote-box > div > img {
  width: 90px;
  position: relative;
}

.quote-box > img {
  object-fit: cover;
  border-radius: var(--ds-border-radius-xl);
}

@media (min-width: 769px) {
  .quote-box {
    margin: 15px;
  }
  .quote-box > div > img {
    left: -50px;
  }
}
@media (max-width: 768px) {
  .quote-box {
    margin: 60px 15px 30px;
  }
  .quote-box > div {
    flex-direction: column;
    position: relative;
  }
  .quote-box > div > img {
    position: absolute;
    top: -50px;
    align-self: self-start;
  }
  .quote-box > div > div {
    padding-top: var(--ds-size-6);
  }
}
@media (min-width: 677px) {
  .quote-box > img {
    width: 300px;
  }
}
@media (max-width: 676px) {
  .quote-box {
    flex-direction: column;
  }
  .quote-box > div > div {
    padding-top: var(--ds-size-2);
  }
}
.job-ad-box {
  padding: 21px;
  border-radius: var(--ds-border-radius-lg);
  border-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.job-ad-box p.ds-paragraph {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 0.5rem;
  margin: 1rem 0;
}

.job-ad-wrapper {
  padding: 16px 0;
}

.jobLink {
  padding: 8px 0;
}

.jobs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

[data-color=tag-background] {
  background-color: var(--ds-color-accent-background-default);
}

@media (max-width: 768px) {
  .jobs {
    grid-template-columns: 1fr;
  }
}
.link-button-wrapper .ds-card .ds-card__block {
  padding: 0;
}

.link-button {
  background-color: var(--ds-color-main1-surface-tinted);
  border-radius: var(--ds-border-radius-md);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 24px;
  font-size: var(--ds-font-size-5);
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  padding: 21px;
}

.link-button a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  height: 100%;
  gap: 16px;
}

.link-button:hover {
  background-color: var(--ds-color-main1-surface-hover);
  border: 1px solid var(--ds-color-main1-border-strong);
}

.link-button:active {
  background-color: var(--ds-color-main1-surface-active);
  border: 1px solid var(--ds-color-main1-border-strong);
}

.card-button-icon {
  background-size: contain;
  transition: background-image 0.3s ease;
  background-repeat: no-repeat;
  width: 64px;
  height: 64px;
}

@media (prefers-reduced-motion: reduce) {
  .card-button-icon {
    transition: background-image 0s;
  }
}
@media (max-width: 991px) {
  .card-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .link-button-wrapper .link-button {
    flex: 1 1 100%;
  }
}
@media (max-width: 767px) {
  .card-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
