.debug {
  z-index: 1000;
  position: fixed;
  top: 1rem;
  left: 1rem;
}
.debug li,
.debug p {
  font-size: 10px;
}

@font-face {
  font-family: Sofia;
  src: url("/assets/fonts/SofiaProRegular.woff");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Sofia;
  src: url("/assets/fonts/SofiaProSemiBold.woff");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Sofia;
  src: url("/assets/fonts/SofiaProBold.woff");
  font-weight: 700;
  font-display: swap;
}
* {
  box-sizing: border-box;
  color: #08303a;
  padding: 0;
  margin: 0;
  font-family: sans-serif;
  word-break: break-word;
  font-family: Sofia, Trebuchet, sans-serif;
  font-smooth: never;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*:focus-visible {
  outline-color: #009acb;
}

html {
  scroll-padding-top: 2rem;
}

body {
  width: 100%;
  background-color: #f7fafc;
  padding: 0 0.25rem;
}
@media (min-width: 768px) {
  body {
    padding: 0 4rem;
  }
}
@media (min-width: 1600px) {
  body {
    padding: 0 8rem;
  }
}

body {
  padding-top: 8rem;
}
@media (min-width: 992px) {
  body {
    padding-top: 10rem;
  }
}
body:has(#recruiterflow-jobs-iframe) {
  padding-top: 7rem;
}

#recruiterflow-jobs-iframe {
  height: calc(100vh - 8rem);
  height: calc(100svh - 8rem);
}

main.page {
  min-height: 80vh;
}

button {
  border: none;
  cursor: pointer;
  background-color: transparent;
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
  border: 1.5px solid rgba(8, 48, 58, 0.3);
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-position-x: 100%;
  background-position-y: 50%;
  background-repeat: no-repeat;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

hr {
  border: none;
  border-bottom: 1px solid #299a96;
}

section,
header {
  margin-bottom: 6rem;
}
@media (min-width: 768px) {
  section,
  header {
    margin-bottom: 7rem;
  }
}
@media (min-width: 1400px) {
  section,
  header {
    margin-bottom: 10rem;
  }
}

header.search {
  margin-bottom: 12rem;
}
@media (min-width: 992px) {
  header.search {
    margin-bottom: 18rem;
  }
}

.sticky {
  position: sticky !important;
  top: 6rem;
}

.section-wrapper {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.section-full {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}
@media (min-width: 768px) {
  .section-full {
    padding-left: 4rem;
    padding-right: 4rem;
    margin-left: -4rem;
    margin-right: -4rem;
  }
}
@media (min-width: 1600px) {
  .section-full {
    padding-left: 8rem;
    padding-right: 8rem;
    margin-left: -8rem;
    margin-right: -8rem;
  }
}

/* Forms */
.contact form .alert {
  padding: 1rem;
  margin-bottom: 2rem;
  background-color: #f7fafc;
  border-radius: 0.5rem;
}
.contact form .alert ul {
  list-style: none;
}
.contact form .form-group,
.contact form .checkbox {
  margin-bottom: 2rem;
}
.contact form label {
  display: block;
  width: 100%;
  margin-bottom: 0.5rem;
}
.contact form input[type=text],
.contact form input[type=email],
.contact form select,
.contact form textarea {
  width: 100%;
  padding: 0.5rem 1.25rem;
  min-height: 46px;
  border-radius: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #08303a;
}
.contact form textarea {
  padding: 1.25rem;
}
.contact form .checkbox label {
  position: relative;
  padding-left: 2rem;
}
.contact form .checkbox label input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1rem;
  height: 1rem;
}
.contact form .checkbox label a {
  font-size: inherit;
  line-height: inherit;
  text-decoration: underline;
}

.application {
  padding: 2rem 1.25rem;
}
@media (min-width: 992px) {
  .application {
    padding: 2.5rem;
  }
}
.application form .form-group,
.application form .checkbox,
.application form .file-upload {
  margin-bottom: 2rem;
}
.application form label {
  display: block;
  width: 100%;
  margin-bottom: 0.5rem;
}
.application form input[type=text],
.application form input[type=email],
.application form select {
  width: 100%;
  padding: 1rem 1.25rem 0.9rem 1.25rem;
  border-radius: 1.25rem;
  font-size: 1rem;
  font-weight: 400;
  background-color: transparent;
  color: #08303a;
  border: 1px solid rgba(0, 154, 203, 0.3);
}
.application form input[type=text],
.application form input[type=email] {
  /* Show red borders when filled, but invalid */
  /* Show green borders when not required and valid */
  /* Show green borders when required and valid */
}
.application form input[type=text]:required:not(:-moz-placeholder-shown), .application form input[type=email]:required:not(:-moz-placeholder-shown) {
  border-color: #ed6161;
}
.application form input[type=text]:required:not(:placeholder-shown),
.application form input[type=email]:required:not(:placeholder-shown) {
  border-color: #ed6161;
}
.application form input[type=text]:not(:required):not(:-moz-placeholder-shown), .application form input[type=email]:not(:required):not(:-moz-placeholder-shown) {
  border-color: #299a96;
}
.application form input[type=text]:not(:required):not(:placeholder-shown),
.application form input[type=email]:not(:required):not(:placeholder-shown) {
  border-color: #299a96;
}
.application form input[type=text]:required:valid,
.application form input[type=email]:required:valid {
  border-color: #299a96;
}
.application form select {
  /* Invalid */
}
.application form select:not(:invalid) {
  border-color: #299a96;
}
.application form option {
  color: #08303a;
}
.application form button[type=submit]:disabled {
  background-color: #b1d2d1;
  cursor: not-allowed;
}
.application form .checkbox label {
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 1fr;
  align-items: center;
}
.application form .checkbox label a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.application form .checkbox .form-helper {
  display: block;
  position: relative;
  height: 28px;
  width: 28px;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid rgba(0, 154, 203, 0.3);
}
.application form .checkbox .form-helper:after {
  content: "";
  position: absolute;
  display: none;
  left: 10px;
  top: 6px;
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.application form .checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.application form .checkbox input[type=checkbox]:checked ~ .form-helper {
  background-color: #299a96;
  border-color: #299a96;
}
.application form .checkbox input[type=checkbox]:checked ~ .form-helper:after {
  display: block;
}
.application form .file-upload {
  position: relative;
}
.application form .file-upload ul {
  list-style: none;
  margin-bottom: 0.5rem;
}
.application form .file-upload ul li {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin: 0;
  margin-bottom: 0.25rem;
  padding: 0.25rem 0.25rem 0.25rem 1rem;
  background-color: #fff;
  border-radius: 0.5rem;
}
.application form .file-upload ul li p {
  color: #08303a;
  margin: 0;
}
.application form .file-upload ul li button {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 1rem;
  background-color: #009acb;
}
.application form .file-upload .file-uploaded {
  display: flex;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1rem 1.25rem 0.9rem 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid #299a96;
}
.application form .file-upload .dropzone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  width: 100%;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  cursor: pointer;
}
.application form .file-upload .dropzone p {
  margin: 0;
}
.application form .file-upload .dropzone svg {
  transition: all 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
  margin-bottom: 0.5rem;
}
.application form .file-upload .form-group {
  margin-bottom: 0.5rem;
}
.application form .file-upload .form-group span.input-group-btn {
  display: none;
}
.application form .file-upload .form-group span.input-group-btn.show-btn {
  display: inline;
}
.application form .file-upload .input-group input {
  opacity: 0;
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
}
.application form .file-upload.is-dragging .dropzone {
  border: 1px solid #fff;
}
.application form .file-upload.is-dragging .dropzone svg {
  transform: translateY(-5px);
}
.application.personio form input,
.application.personio form select {
  background-color: #fff;
}
.application .response {
  padding: 1rem;
  border: 1px solid #009acb;
  border-radius: 1rem;
}

.filter {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.filter::-webkit-scrollbar {
  display: none;
}
@media (min-width: 992px) {
  .filter {
    position: sticky;
    top: 6rem;
    max-height: calc(100vh - 7rem);
    overflow-y: scroll !important;
  }
}

.filter form {
  padding: 1.5rem;
}
.filter form label {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0.25rem;
}
.filter form #overflow {
  transition: max-height 0.4s ease-out;
}
.filter form #overflow[aria-hidden=true] {
  overflow: hidden;
  max-height: 0;
}
@media (min-width: 992px) {
  .filter form #overflow[aria-hidden=true] {
    max-height: initial;
  }
}
.filter form #overflow:focus-within {
  max-height: initial;
}
.filter form input[type=text],
.filter form select {
  width: 100%;
  padding: 0.7rem 0.625rem 0.5rem 0.625rem;
  margin-bottom: 1.5rem;
  border-radius: 0.625rem;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
  color: #08303a;
  background-color: #fff;
}
.filter form input[type=range] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 1px;
  margin-top: 0.75rem;
  margin-bottom: 2.25rem;
  border-radius: 5px;
  background: rgba(8, 48, 58, 0.3);
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s;
  --thumbsize: 25px;
}
.filter form input[type=range]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  width: var(--thumbsize);
  height: var(--thumbsize);
  border-radius: 50%;
  background: #009acb;
  cursor: pointer;
}
.filter form input[type=range]::-moz-range-thumb {
  -moz-appearance: none;
       appearance: none;
  border: none;
  width: var(--thumbsize);
  height: var(--thumbsize);
  border-radius: 50%;
  background: #009acb;
  cursor: pointer;
}
.filter form input[type=range]:focus-visible::-webkit-slider-thumb, .filter form input[type=range]:focus::-webkit-slider-thumb {
  outline: -webkit-focus-ring-color auto 1px;
}
.filter form button {
  width: 100%;
}
@media (min-width: 992px) {
  .filter form button {
    width: auto;
  }
}
.filter form button#show-more {
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .filter form button#show-more {
    display: none;
  }
}

/* Colors */
.bg-blue {
  background-color: #08303a;
  color: #fff;
}

.bg-aqua {
  background-color: #009acb;
  color: #fff;
}

.bg-green {
  background-color: #299a96;
  color: #fff;
}

.bg-white {
  background-color: #fff;
}

.bg-offwhite {
  background-color: #f7fafc;
}

.bg-blur {
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
}

.shadow-md {
  box-shadow: rgba(42, 160, 188, 0.08) 0px 6px 16px;
}

.shadow-lg {
  box-shadow: rgba(42, 160, 188, 0.08) 0px 12px 36px;
}

/* Typo */
ul,
li {
  margin: 0;
  padding: 0;
}

p,
a,
ul,
li,
.t-p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.t-small {
  font-size: 0.875rem;
}

label,
.label {
  font-size: 1rem !important;
  font-weight: 400;
  line-height: 1.2;
  color: #08303a;
}

.headline {
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .headline {
    margin-bottom: 4rem;
  }
}

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

.t-right {
  text-align: right;
}

.t-title,
.t-title h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15em;
}
@media (min-width: 576px) {
  .t-title,
  .t-title h1 {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  .t-title,
  .t-title h1 {
    font-size: 5.5rem;
  }
}

.t-xl {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15em;
}
@media (min-width: 768px) {
  .t-xl {
    font-size: 4rem;
  }
}
@media (min-width: 992px) {
  .t-xl {
    font-size: 5rem;
  }
}
@media (min-width: 1200px) {
  .t-xl {
    font-size: 6rem;
  }
}
@media (min-width: 1400px) {
  .t-xl {
    font-size: 7rem;
  }
}

.t-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25em;
}
@media (min-width: 992px) {
  .t-subtitle {
    font-size: 2.5rem;
  }
}

h1,
.t-h1 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.25em;
}
@media (min-width: 992px) {
  h1,
  .t-h1 {
    font-size: 2rem;
  }
}

h2,
.t-h2 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25em;
}
@media (min-width: 992px) {
  h2,
  .t-h2 {
    font-size: 1.75rem;
  }
}

h3,
.t-h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25em;
}

h4,
.t-h4 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25em;
}

.t-aqua {
  color: #009acb;
}

.t-blue {
  color: #08303a;
}

.t-white,
.t-white * {
  color: #fff;
}

.t-green {
  color: #299a96;
}

.text ul {
  padding-left: 1rem;
}
.text li {
  margin-left: 1rem;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
}
.text li p {
  margin: 0;
}
.text h1:not(:last-child),
.text .t-h1:not(:last-child) {
  margin-bottom: 1.5rem;
}
.text h2:not(:last-child),
.text .t-h2:not(:last-child) {
  margin-bottom: 1rem;
}
.text h3:not(:last-child),
.text .t-h3:not(:last-child) {
  margin-bottom: 0.75rem;
}
.text h4:not(:last-child),
.text .t-h4:not(:last-child) {
  margin-bottom: 0.75rem;
}
.text p:not(:last-child),
.text a:not(:last-child),
.text ul:not(:last-child),
.text blockquote:not(:last-child),
.text .t-p:not(:last-child),
.text input:not(:last-child) {
  margin-bottom: 2rem;
}
.text p a,
.text a a,
.text ul a,
.text blockquote a,
.text .t-p a,
.text input a {
  color: #009acb;
}
.text blockquote {
  padding: 2rem;
  border-radius: 1.25rem;
  background-color: #299a96;
}
.text blockquote * {
  font-weight: 600;
  color: #fff !important;
}

/* Hover */
.hover-icon svg {
  transition: all 200ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hover-icon:hover svg {
  transform: translateX(0.5rem);
}

/* Buttons */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 0.5rem;
}

.btn {
  padding: 0.7rem 1.5rem 0.5rem 1.5rem;
  border-radius: 1.25rem;
  font-size: 1.125rem;
  text-decoration: none;
}

.btn-primary {
  background-color: #299a96;
  color: #fff;
}

.btn-md {
  display: inline-flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  min-height: 44px;
  padding: 0.6rem 1.25rem 0.6rem 1.25rem;
  border-radius: 1.25rem;
  font-size: 1rem;
  text-decoration: none;
  text-align: left;
  /* Arrow */
  /* Gradient Background */
}
.btn-md svg {
  transition: all 400ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.btn-md:hover svg {
  transform: translateX(0.25rem);
}
.btn-md.bg-blue, .btn-md.bg-aqua {
  transition: background-position 400ms ease-in-out;
  background-size: 150% auto;
  color: white;
}
.btn-md.bg-blue:hover, .btn-md.bg-aqua:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}
.btn-md.bg-aqua {
  background-image: linear-gradient(to right, #009acb 0%, #00c1fe 51%, #009acb 100%);
}
.btn-md.bg-blue {
  background-image: linear-gradient(to right, #08303a 0%, #11687d 51%, #08303a 100%);
}

.btn-lg {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 2rem;
  align-items: center;
  padding: 1rem 1.5rem 1rem 1.5rem;
  border-radius: 1.25rem;
  font-size: 1rem;
  text-decoration: none;
  text-align: left;
}

/* Illu */
.illu-bottom {
  display: inline-block;
  position: relative;
  z-index: 2;
}
.illu-bottom svg {
  z-index: -1;
  display: block;
  width: 105%;
  height: auto;
  position: absolute;
  right: -2.5%;
  bottom: -4%;
}
@media (min-width: 768px) {
  .illu-bottom svg {
    bottom: -11%;
  }
}

.illu-circle {
  display: inline-block;
  position: relative;
  z-index: 2;
}
.illu-circle svg {
  z-index: -1;
  display: block;
  width: auto;
  height: 200%;
  position: absolute;
  right: -45%;
  bottom: -12px;
}

/* Tags */
.tag-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
}
.tag-list svg {
  display: block;
}

.tag-list-center {
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  row-gap: 0.5rem;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
}

.tag {
  display: inline-block;
  padding: 0.6rem 0.75rem 0.5rem 0.75rem;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}

.tag-lg {
  display: inline-block;
  padding: 0.7rem 1rem 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 700;
}
@media (min-width: 992px) {
  .tag-lg {
    padding: 1.25rem 2rem 1rem 2rem;
    border-radius: 1.25rem;
  }
}

/* Box styling */
.radius-sm {
  overflow: hidden;
  border-radius: 10px;
}

.radius-md {
  overflow: hidden;
  border-radius: 1.25rem;
}

.radius-lg {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .radius-lg {
    border-radius: 3.75rem;
  }
}

/* Image Stack */
/* Card Stack */
/* Consent Banner */
#consent-banner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
  position: fixed;
  bottom: 1rem;
  left: 0.5rem;
  right: 0.5rem;
  padding: 1rem;
  max-width: 400px;
  background-color: #f7fafc;
  border-radius: 1rem;
  box-shadow: rgba(8, 48, 58, 0.16) 0px 1px 4px;
}
#consent-banner a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
#consent-banner button {
  width: 100%;
}
@media (min-width: 576px) {
  #consent-banner button {
    width: auto;
  }
}