@font-face {
  font-family: Barlow;
  src: url('../fonts/Barlow-Black.ttf') format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url('../fonts/Barlow-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url('../fonts/Barlow-ExtraLight.ttf') format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url('../fonts/Barlow-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url('../fonts/Barlow-Thin.ttf') format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url('../fonts/Barlow-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url('../fonts/Barlow-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url('../fonts/Barlow-ExtraBold.ttf') format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url('../fonts/Barlow-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: BarlowCondensed;
  src: url('../fonts/BarlowCondensed-Black.ttf') format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: BarlowCondensed;
  src: url('../fonts/BarlowCondensed-ExtraBold.ttf') format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: BarlowCondensed;
  src: url('../fonts/BarlowCondensed-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: BarlowCondensed;
  src: url('../fonts/BarlowCondensed-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: BarlowCondensed;
  src: url('../fonts/BarlowCondensed-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: BarlowCondensed;
  src: url('../fonts/BarlowCondensed-ExtraLight.ttf') format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: BarlowCondensed;
  src: url('../fonts/BarlowCondensed-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: BarlowCondensed;
  src: url('../fonts/BarlowCondensed-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: BarlowCondensed;
  src: url('../fonts/BarlowCondensed-Thin.ttf') format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

:root {
  --main: Barlow, Verdana, sans-serif;
  --dark: #0d0f14;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.navbar {
  z-index: 100;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-color: #f4f4f4e6;
  border-bottom: 1px solid #ccd8ea;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.navbar_container {
  justify-content: space-between;
  align-items: center;
  max-width: 1520px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
}

.navbar_logo-link {
  flex: none;
  align-items: center;
  display: flex;
}

.navbar_logo {
  width: auto;
  height: 34px;
}

.navbar_right {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  display: flex;
}

.navbar_menu {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  align-items: center;
  display: flex;
}

.navbar_link {
  font-family: var(--main);
  color: #0d0f14;
  letter-spacing: .3px;
  font-size: 14px;
  text-decoration: underline;
}

.button {
  color: #f4f4f4;
  letter-spacing: .5px;
  text-transform: uppercase;
  background-color: #01687c;
  border: 1px solid #0d0f14;
  justify-content: center;
  align-items: center;
  height: 42px;
  padding: 0 24px;
  font-family: Barlow Condensed, sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  transition: background-color .4s;
  display: flex;
}

.navbar_burger {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  cursor: pointer;
  background-color: #0000;
  border-style: none;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  display: none;
}

.navbar_burger-line {
  background-color: #0d0f14;
  width: 24px;
  height: 2px;
  transition: transform .3s, opacity .3s;
  display: block;
}

.navbar_mobile-panel {
  z-index: 99;
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-color: #f4f4f4fa;
  border-bottom: 1px solid #ccd8ea;
  flex-direction: column;
  padding: 20px 24px 28px;
  display: none;
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
}

.navbar_mobile-link {
  color: #0d0f14;
  border-bottom: 1px solid #ccd8ea;
  padding: 10px 0;
  font-size: 20px;
  text-decoration: none;
}

.navbar_mobile-cta {
  align-self: flex-start;
  margin-top: 16px;
}

.footer {
  border-top: 1px solid #ccd8ea;
  padding: clamp(56px, 8vw, 80px) 0;
}

.footer_container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 24px);
}

.footer_columns {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer_col {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer_col-title {
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: Barlow Condensed, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.footer_link {
  font-family: var(--main);
  color: #0d0f14;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
}

.footer_brand-row {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-top: 1px solid #ccd8ea;
  border-bottom: 1px solid #ccd8ea;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding: 20px 0;
  display: flex;
}

.footer_logo-link {
  align-items: center;
  display: flex;
}

.footer_logo {
  width: auto;
  height: 32px;
}

.footer_social-link {
  font-family: var(--main);
  color: #0d0f14;
  font-size: 14px;
  text-decoration: underline;
}

.footer_bottom-row {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 0;
  display: flex;
}

.footer_copyright {
  font-family: var(--main);
  font-size: 14px;
}

.footer_legal-links {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  align-items: center;
  display: flex;
}

.footer_legal-link {
  font-family: var(--main);
  color: #0d0f14;
  font-size: 14px;
  text-decoration: underline;
}

.hero {
  flex-direction: column;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero_video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hero_gradient {
  background-image: linear-gradient(#f4f4f4, #f4f4f433 35%, #f4f4f400 57%, #f4f4f433 74%, #f4f4f4);
  position: absolute;
  inset: 0;
}

.hero_content {
  z-index: 2;
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: clamp(150px, 20vh, 240px) clamp(20px, 4vw, 60px) 60px;
  position: relative;
}

.hero_top-row {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.hero_title {
  font-family: var(--main);
  flex: 340px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
}

.hero_title-em {
  color: #015369;
  font-style: italic;
}

.hero_subrow {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: right;
  flex-direction: column;
  flex: 300px;
  align-items: flex-end;
  max-width: 604px;
  display: flex;
}

.hero_subtitle {
  font-family: var(--main);
  font-size: clamp(1.4rem, 2.6vw, 2.25rem);
  font-weight: 300;
  line-height: 1.25;
}

.hero_statement-wrap {
  text-align: center;
  margin: clamp(60px, 9vw, 120px) auto 0;
}

.hero_statement {
  font-family: var(--main);
  font-size: clamp(1.9rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.3;
}

.hero_bars {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  margin-top: clamp(48px, 8vw, 100px);
  display: flex;
}

.hero_bar {
  transform-origin: 0%;
  background-color: #01687c;
  width: 100%;
}

.hero_bar-lg {
  height: 24px;
}

.hero_bar-md {
  height: 12px;
}

.hero_bar-sm {
  height: 4px;
}

.stats {
  border-top: 1px solid #ccd8ea;
}

.stats_grid {
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 1520px;
  margin: 0 auto;
  display: grid;
}

.stats_item {
  border-bottom: 1px solid #ccd8ea;
  border-right: 1px solid #ccd8ea;
  flex-direction: column;
  padding: 40px;
  display: flex;
}

.stats_item-last {
  border-right-style: none;
}

.stats_number {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1;
}

.stats_plus {
  font-family: var(--main);
  font-size: .45em;
  position: relative;
  top: -.55em;
}

.stats_label {
  opacity: .7;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Barlow Condensed, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.hangar-cta {
  background-color: #050403;
  justify-content: flex-end;
  align-items: center;
  min-height: 50vw;
  padding: 8rem 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hangar-cta_bg {
  background-color: #000;
  position: absolute;
  inset: 0;
}

.hangar-cta_img {
  opacity: .4;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hangar-cta_container {
  z-index: 2;
  justify-content: flex-end;
  width: 100%;
  max-width: 84rem;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 2rem);
  display: flex;
  position: relative;
}

.hangar-cta_text-wrap {
  width: 90%;
  max-width: 50rem;
}

.hangar-cta_heading {
  font-family: var(--main);
  color: #f4f4f4;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.15;
}

.hangar-cta_accent {
  color: #01687c;
}

.defense {
  border-top: 1px solid #ccd8ea;
  padding: clamp(56px, 8vw, 80px) 0;
}

.defense_container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 24px);
}

.defense_heading {
  font-family: var(--main);
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
}

.defense_kicker {
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  line-height: 1.3;
}

.defense_kicker-em {
  color: #015369;
  font-style: italic;
}

.defense_intro-wrap {
  max-width: 450px;
  margin-bottom: 8px;
}

.defense_intro {
  font-family: var(--main);
  text-align: justify;
  margin: 0 0 40px;
  font-size: 14px;
  line-height: 1.5;
}

.defense_list {
  flex-direction: column;
  display: flex;
}

.defense_item {
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  border-top: 1px solid #ccd8ea;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 0;
  display: flex;
}

.defense_item-last {
  border-bottom: 1px solid #ccd8ea;
}

.defense_item-title {
  font-family: var(--main);
  flex: 240px;
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}

.defense_item-body {
  flex: 320px;
  max-width: 600px;
}

.defense_item-text {
  font-family: var(--main);
  text-align: justify;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.carousel-sec {
  padding: 8rem 0;
  overflow: hidden;
}

.carousel_track-wrap {
  width: 100%;
  overflow: hidden;
}

.carousel_track {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  width: 118%;
  display: flex;
}

.carousel_img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 1rem;
  width: 32.5%;
}

.team {
  border-top: 1px solid #ccd8ea;
  padding: clamp(56px, 8vw, 80px) 0;
}

.team_container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 24px);
}

.team_heading-wrap {
  text-align: center;
  margin-bottom: 72px;
}

.team_heading {
  font-family: var(--main);
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
}

.team_row {
  grid-column-gap: clamp(40px, 6vw, 100px);
  grid-row-gap: clamp(40px, 6vw, 100px);
  border-top: 1px solid #ccd8ea;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 64px;
  display: flex;
}

.team_portrait {
  object-fit: cover;
  border-radius: 170px;
  flex: none;
  width: 200px;
  height: 200px;
}

.team_content {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  flex: 340px;
  align-items: flex-start;
  display: flex;
}

.team_name-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  display: flex;
}

.team_name {
  font-family: var(--main);
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}

.team_role {
  color: #5bbdce;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-family: Barlow Condensed, sans-serif;
  font-size: 14px;
}

.team_bio {
  font-family: var(--main);
  text-align: justify;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.features {
  border-top: 1px solid #ccd8ea;
  padding: clamp(56px, 8vw, 80px) 0;
}

.features_container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 24px);
}

.features_heading-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.features_heading {
  font-family: var(--main);
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
}

.features_heading-em {
  color: #015369;
  font-style: italic;
}

.features_subtext {
  font-size: 14px;
  line-height: 1.5;
}

.features_grid {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 64px;
  display: grid;
}

.features_card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #ececec;
  border-top: 1px solid #ececec;
  flex-direction: column;
  min-height: 15em;
  padding: 40px;
  transition: background-color .8s, border-color .8s;
  display: flex;
}

.features_card-title {
  font-family: var(--main);
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}

.features_card-text {
  font-family: var(--main);
  text-align: left;
  letter-spacing: .3px;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.features_cta-wrap {
  justify-content: center;
  margin-top: 72px;
  display: flex;
}

.awards {
  border-top: 1px solid #ccd8ea;
  padding: clamp(56px, 8vw, 80px) 0;
}

.awards_container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 24px);
}

.awards_layout {
  grid-column-gap: clamp(24px, 4vw, 0px);
  grid-row-gap: clamp(24px, 4vw, 0px);
  flex-wrap: wrap;
  display: flex;
}

.awards_spacer {
  flex: 0 0 115px;
}

.awards_main {
  flex: 320px;
  min-width: 0;
}

.awards_heading-wrap {
  margin-bottom: 72px;
}

.awards_heading {
  font-family: var(--main);
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
}

.awards_subtext {
  max-width: 520px;
  font-family: var(--main);
  text-align: justify;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.awards_table {
  width: 100%;
  max-width: 1100px;
}

.awards_row {
  border-bottom: 1px solid #ccd8ea;
  grid-template-rows: auto;
  grid-template-columns: 1fr .3fr .3fr;
  display: grid;
}

.awards_head-proj, .awards_head-comp {
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 20px 0;
  font-family: Barlow Condensed, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.awards_head-time {
  text-align: right;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 20px 0;
  font-family: Barlow Condensed, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.awards_cell-proj {
  font-family: var(--main);
  padding: 14px 24px 14px 0;
  font-size: 16px;
  line-height: 1.4;
}

.awards_cell-comp {
  font-family: var(--main);
  padding: 14px 12px 14px 0;
  font-size: 16px;
  line-height: 1.4;
}

.awards_cell-time {
  font-family: var(--main);
  text-align: right;
  justify-self: end;
  padding: 14px 0;
  font-size: 16px;
  line-height: 1.4;
}

.awards_role {
  font-family: var(--main);
  text-transform: uppercase;
  font-weight: 500;
}

.faq {
  border-top: 1px solid #ccd8ea;
  padding: clamp(56px, 8vw, 80px) 0;
}

.faq_container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 24px);
}

.faq_layout {
  grid-column-gap: 24px;
  grid-row-gap: 48px;
  flex-wrap: wrap;
  display: flex;
}

.faq_intro {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  flex: 300px;
  align-items: flex-start;
  max-width: 510px;
  display: flex;
}

.faq_heading {
  font-family: var(--main);
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
}

.faq_intro-text {
  font-family: var(--main);
  text-align: justify;
  font-size: 14px;
  line-height: 1.5;
}

.faq_list {
  flex-direction: column;
  flex: 2 420px;
  display: flex;
}

.faq_item {
  background-color: #f4f4f4;
  border-top: 1px solid #ccd8ea;
  padding: 20px;
}

.faq_item-last {
  border-bottom: 1px solid #ccd8ea;
}

.faq_item-top {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.faq_item-question {
  font-family: var(--main);
  margin-right: 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.faq_item-icon {
  width: 40px;
  height: 40px;
  font-family: var(--main);
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.faq_icon-h {
  background-color: #0d0f14;
  border-radius: 2px;
  width: 18px;
  height: 2px;
}

.faq_icon-v {
  background-color: #0d0f14;
  border-radius: 2px;
  width: 18px;
  height: 2px;
  transition: transform .3s;
  position: absolute;
  transform: rotate(-90deg);
}

.faq_item-answer {
  font-family: var(--main);
  text-align: justify;
  margin: 0;
  padding: 16px 0 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.26;
}

.cta-blue {
  background-color: #01687c;
  background-image: linear-gradient(#00000080, #00000080);
  padding: 8rem 0;
  position: relative;
}

.cta-blue_content {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 510px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
}

.cta-blue_heading {
  font-family: var(--main);
  color: #f4f4f4;
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
}

.cta-blue_heading-em {
  font-style: italic;
}

.cta-blue_text {
  font-family: var(--main);
  color: #ccd8ea;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}

.cta-blue_button {
  color: #0d0f14;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #f4f4f4;
  border: 1px solid #0d0f14;
  justify-content: center;
  align-items: center;
  height: 42px;
  padding: 0 24px;
  font-family: Barlow Condensed, sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition: background-color .4s;
  display: flex;
}

.about-hero {
  padding: clamp(96px, 12vw, 120px) clamp(20px, 5vw, 48px) 0;
}

.about-hero_container {
  max-width: 1400px;
  margin: 0 auto;
}

.about-hero_top {
  grid-column-gap: clamp(28px, 4vw, 56px);
  grid-row-gap: clamp(28px, 4vw, 56px);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 56px);
  display: grid;
}

.about-hero_kicker {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #01687c;
  letter-spacing: .24em;
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 16px;
  font-family: Barlow Condensed, sans-serif;
  font-size: .68rem;
  display: flex;
}

.about-hero_kicker-line {
  background-color: #01687c;
  width: 24px;
  height: 1px;
  display: block;
}

.about-hero_title {
  letter-spacing: -.025em;
  margin: 0;
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 200;
  line-height: .93;
}

.about-hero_title-em {
  color: #01687c;
  font-style: italic;
}

.about-hero_right {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
}

.about-hero_intro {
  color: #3a3a3a;
  text-align: justify;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.78;
}

.about-hero_buttons {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-wrap: wrap;
  display: flex;
}

.about-hero_imgs {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr 1fr;
  height: clamp(220px, 30vw, 380px);
  display: grid;
}

.about-hero_img {
  filter: brightness(.82);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.about_button {
  color: #fff;
  letter-spacing: .14em;
  text-transform: uppercase;
  background-color: #01687c;
  justify-content: center;
  align-items: center;
  padding: 13px 32px;
  font-family: Barlow Condensed, sans-serif;
  font-size: .8rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
}

.about_button-outline {
  color: #0d0f14;
  letter-spacing: .14em;
  text-transform: uppercase;
  background-color: #0000;
  border: 1px solid #ccd8ea;
  justify-content: center;
  align-items: center;
  padding: 13px 32px;
  font-family: Barlow Condensed, sans-serif;
  font-size: .8rem;
  text-decoration: none;
  display: inline-flex;
}

.about-stats {
  border-top: 1px solid #ccd8ea;
  border-bottom: 1px solid #ccd8ea;
  grid-template-rows: auto;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1400px;
  margin: clamp(56px, 7vw, 88px) auto 0;
  display: grid;
}

.about-stats_item {
  border-right: 1px solid #ccd8ea;
  padding: clamp(28px, 3vw, 44px) clamp(20px, 2.5vw, 40px);
}

.about-stats_item-last {
  border-right-style: none;
}

.about-stats_number {
  color: #0d0f14;
  margin-bottom: 6px;
  font-family: Barlow Condensed, sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 200;
  line-height: 1;
}

.about-stats_label {
  color: #555;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .7rem;
}

.manifesto {
  text-align: center;
  border-bottom: 1px solid #ccd8ea;
  padding: clamp(56px, 7vw, 88px) clamp(20px, 5vw, 48px);
}

.manifesto_kicker {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #01687c;
  letter-spacing: .26em;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
  font-family: Barlow Condensed, sans-serif;
  font-size: .65rem;
  display: flex;
}

.manifesto_kicker-line {
  background-color: #01687c;
  width: 36px;
  height: 1px;
  display: block;
}

.manifesto_heading {
  color: #0d0f14;
  letter-spacing: -.015em;
  max-width: 900px;
  margin: 0 auto 32px;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 200;
  line-height: 1.18;
}

.manifesto_heading-em {
  color: #01687c;
  font-style: italic;
}

.manifesto_text {
  color: #3a3a3a;
  max-width: 700px;
  margin: 0 auto 16px;
  font-size: .96rem;
  line-height: 1.82;
}

.values {
  padding: clamp(56px, 7vw, 88px) clamp(20px, 5vw, 48px);
}

.values_container {
  max-width: 1400px;
  margin: 0 auto;
}

.values_head {
  grid-column-gap: clamp(24px, 4vw, 56px);
  grid-row-gap: clamp(24px, 4vw, 56px);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  margin-bottom: 48px;
  display: grid;
}

.values_kicker {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #01687c;
  letter-spacing: .24em;
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 16px;
  font-family: Barlow Condensed, sans-serif;
  font-size: .68rem;
  display: flex;
}

.values_kicker-line {
  background-color: #01687c;
  width: 24px;
  height: 1px;
  display: block;
}

.values_heading {
  letter-spacing: -.015em;
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 200;
  line-height: 1.06;
}

.values_head-text {
  color: #3a3a3a;
  text-align: justify;
  margin: 0;
  font-size: .9rem;
  line-height: 1.78;
}

.values_grid {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  grid-template-rows: auto;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.values_card {
  background-color: #f5f7fa;
  border-top: 2px solid #0000;
  padding: clamp(28px, 3vw, 40px) clamp(24px, 2.5vw, 36px);
  transition: border-color .25s, background .25s;
}

.values_card-num {
  color: #01687c;
  letter-spacing: .2em;
  margin-bottom: 18px;
  font-family: Barlow Condensed, sans-serif;
  font-size: .62rem;
}

.values_card-title {
  color: #0d0f14;
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.25;
}

.values_card-text {
  color: #3a3a3a;
  text-align: justify;
  margin: 0;
  font-size: .83rem;
  line-height: 1.72;
}

.banner {
  position: relative;
  overflow: hidden;
}

.banner_img {
  filter: brightness(.3);
  object-fit: cover;
  width: 100%;
  height: clamp(280px, 32vw, 400px);
  display: block;
}

.banner_overlay {
  background-image: linear-gradient(to top, #04080ff2 0%, #0000 65%);
  padding: clamp(28px, 4vw, 48px);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.banner_heading {
  color: #fff;
  letter-spacing: .05em;
  text-transform: uppercase;
  max-width: 1400px;
  margin: 0 auto;
  font-family: Barlow Condensed, sans-serif;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.05;
}

.banner_heading-em {
  color: #5bbdce;
  font-style: normal;
}

.karriere {
  border-top: 1px solid #ccd8ea;
  padding: clamp(56px, 7vw, 88px) clamp(20px, 5vw, 48px);
}

.karriere_container {
  max-width: 1400px;
  margin: 0 auto;
}

.karriere_layout {
  grid-column-gap: clamp(36px, 6vw, 72px);
  grid-row-gap: clamp(36px, 6vw, 72px);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.6fr;
  align-items: start;
  display: grid;
}

.karriere_left {
  position: sticky;
  top: 110px;
}

.karriere_kicker {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #01687c;
  letter-spacing: .24em;
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 16px;
  font-family: Barlow Condensed, sans-serif;
  font-size: .68rem;
  display: flex;
}

.karriere_kicker-line {
  background-color: #01687c;
  width: 24px;
  height: 1px;
  display: block;
}

.karriere_heading {
  letter-spacing: -.015em;
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 200;
  line-height: 1.06;
}

.karriere_heading-em {
  font-style: italic;
}

.karriere_lead {
  color: #3a3a3a;
  margin-top: 20px;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.75;
}

.karriere_para {
  color: #3a3a3a;
  text-align: justify;
  border-bottom: 1px solid #ccd8ea;
  margin: 0 0 20px;
  padding-bottom: 20px;
  font-size: .9rem;
  line-height: 1.88;
}

.karriere_para-last {
  border-bottom-style: none;
  margin: 0;
  padding-bottom: 0;
}

.network {
  background-color: #04080f;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  display: grid;
}

.network_visual {
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.network_img {
  filter: brightness(.22) saturate(.4);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.network_overlay {
  background-image: linear-gradient(to right, #0000 35%, #04080f 100%);
  position: absolute;
  inset: 0;
}

.network_content {
  flex-direction: column;
  justify-content: center;
  max-width: 735px;
  padding: clamp(40px, 5vw, 72px) clamp(24px, 4vw, 56px);
  display: flex;
}

.network_kicker {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #5bbdce;
  letter-spacing: .26em;
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 18px;
  font-family: Barlow Condensed, sans-serif;
  font-size: .65rem;
  display: flex;
}

.network_kicker-line {
  background-color: #6fa8dc;
  width: 22px;
  height: 1px;
  display: block;
}

.network_heading {
  color: #fff;
  letter-spacing: -.02em;
  margin: 0 0 20px;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 200;
  line-height: 1.08;
}

.network_heading-em {
  color: #5bbdce;
  font-style: italic;
}

.network_text {
  color: #ffffff85;
  text-align: justify;
  margin: 0 0 12px;
  font-size: .88rem;
  line-height: 1.8;
}

.network_list {
  flex-direction: column;
  margin: 24px 0 32px;
  display: flex;
}

.network_item {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  border-bottom: 1px solid #ffffff12;
  align-items: flex-start;
  padding: 14px 0;
  display: flex;
}

.network_item-first {
  border-top: 1px solid #ffffff12;
}

.network_item-icon {
  color: #5bbdce;
  border: 1px solid #6fa8dc59;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 14px;
  display: flex;
}

.network_item-body {
  flex-direction: column;
  display: flex;
}

.network_item-title {
  color: #fff;
  margin-bottom: 2px;
  font-size: .84rem;
  font-weight: 500;
  display: block;
}

.network_item-desc {
  color: #fff6;
  font-size: .76rem;
  line-height: 1.5;
}

.about_button-outline-dark {
  color: #ffffffb3;
  border-color: #ffffff40;
  align-self: flex-start;
}

.profiles {
  border-top: 1px solid #ccd8ea;
  padding: clamp(56px, 7vw, 88px) clamp(20px, 5vw, 48px);
}

.profiles_container {
  max-width: 1400px;
  margin: 0 auto;
}

.profiles_head {
  grid-column-gap: clamp(24px, 4vw, 56px);
  grid-row-gap: clamp(24px, 4vw, 56px);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  margin-bottom: 48px;
  display: grid;
}

.profiles_kicker {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #01687c;
  letter-spacing: .24em;
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 16px;
  font-family: Barlow Condensed, sans-serif;
  font-size: .68rem;
  display: flex;
}

.profiles_kicker-line {
  background-color: #01687c;
  width: 24px;
  height: 1px;
  display: block;
}

.profiles_heading {
  letter-spacing: -.015em;
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 200;
  line-height: 1.06;
}

.profiles_head-text {
  color: #3a3a3a;
  text-align: justify;
  margin: 0;
  font-size: .9rem;
  line-height: 1.78;
}

.profiles_grid {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  grid-template-rows: auto;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.profiles_card {
  background-color: #f5f7fa;
  border-top: 2px solid #0000;
  padding: clamp(28px, 3vw, 40px) clamp(24px, 2.5vw, 36px);
  transition: border-color .25s, background .25s;
}

.profiles_card-icon {
  color: #01687c;
  border: 1px solid #ccd8ea;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  font-size: 18px;
  display: flex;
}

.profiles_card-title {
  color: #0d0f14;
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.25;
}

.profiles_card-text {
  color: #3a3a3a;
  text-align: justify;
  margin: 0;
  font-size: .83rem;
  line-height: 1.72;
}

.cta-band {
  text-align: center;
  background-image: linear-gradient(135deg, #04080f 0%, #015369 50%, #04080f 100%);
  padding: clamp(56px, 7vw, 80px) clamp(20px, 5vw, 48px);
}

.cta-band_heading {
  font-family: var(--main);
  color: #fff;
  letter-spacing: -.01em;
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
}

.cta-band_heading-em {
  font-style: italic;
}

.cta-band_text {
  max-width: 480px;
  font-family: var(--main);
  color: #ffffff85;
  margin: 0 auto 36px;
  font-size: .9rem;
  font-weight: 400;
}

.cta-band_buttons {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.about_button-invert {
  color: #04080f;
  background-color: #fff;
}

.faq-page_header {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) clamp(20px, 5vw, 48px) clamp(36px, 5vw, 56px);
}

.faq-page_header-grid {
  grid-column-gap: clamp(32px, 5vw, 64px);
  grid-row-gap: clamp(32px, 5vw, 64px);
  grid-template-rows: auto;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  display: grid;
}

.faq-page_kicker {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #01687c;
  letter-spacing: .26em;
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 20px;
  font-family: Barlow Condensed, sans-serif;
  font-size: .68rem;
  display: flex;
}

.faq-page_kicker-line {
  background-color: #01687c;
  width: 28px;
  height: 1px;
  display: block;
}

.faq-page_title {
  letter-spacing: -.02em;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 300;
  line-height: .97;
}

.faq-page_title-em {
  font-style: italic;
}

.faq-page_intro {
  color: #3a3a3a;
  text-align: justify;
  margin: 0;
  font-size: 1rem;
  line-height: 1.78;
}

.faq-page_content {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-direction: column;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px) clamp(48px, 7vw, 80px);
  display: flex;
}

.faq-page_cat-kicker {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #01687c;
  letter-spacing: .24em;
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 16px;
  font-family: Barlow Condensed, sans-serif;
  font-size: .68rem;
  display: flex;
}

.faq-page_cat-kicker-line {
  background-color: #01687c;
  width: 24px;
  height: 1px;
  display: block;
}

.faq-page_cat-heading {
  letter-spacing: -.01em;
  border-bottom: 2px solid #ccd8ea;
  margin: 0 0 32px;
  padding-bottom: 24px;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 200;
  line-height: 1.08;
}

.faq-page_cat-heading-em {
  font-style: italic;
}

.faq-banner {
  position: relative;
  overflow: hidden;
}

.faq-banner_img {
  filter: brightness(.38);
  object-fit: cover;
  width: 100%;
  height: 380px;
  display: block;
}

.faq-banner_overlay {
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  display: flex;
  position: absolute;
  inset: 0;
}

.faq-banner_heading {
  color: #fff;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0;
  font-family: Barlow Condensed, sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.05;
}

.faq-banner_heading-em {
  color: #5bbdce;
}

.kontakt-split {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.kontakt-info {
  border-right: 1px solid #ccd8ea;
  flex-direction: column;
  justify-content: center;
  padding: clamp(110px, 12vw, 140px) clamp(20px, 4vw, 64px) clamp(56px, 7vw, 80px) clamp(20px, 5vw, 48px);
  display: flex;
}

.kontakt-info_kicker {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #01687c;
  letter-spacing: .26em;
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 24px;
  font-family: Barlow Condensed, sans-serif;
  font-size: .68rem;
  display: flex;
}

.kontakt-info_kicker-line {
  background-color: #01687c;
  width: 28px;
  height: 1px;
  display: block;
}

.kontakt-info_title {
  letter-spacing: -.02em;
  margin: 0 0 32px;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 200;
  line-height: .95;
}

.kontakt-info_title-em {
  font-style: italic;
}

.kontakt-info_text {
  color: #3a3a3a;
  text-align: justify;
  max-width: 440px;
  margin: 0 0 48px;
  font-size: 1rem;
  line-height: 1.78;
}

.kontakt-info_list {
  flex-direction: column;
  display: flex;
}

.kontakt-info_item {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  border-bottom: 1px solid #ccd8ea;
  align-items: flex-start;
  padding: 22px 0;
  display: flex;
}

.kontakt-info_item-last {
  padding-bottom: 0;
}

.kontakt-info_icon {
  color: #01687c;
  border: 1px solid #ccd8ea;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  display: flex;
}

.kontakt-info_label {
  color: #555;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 3px;
  font-family: Barlow Condensed, sans-serif;
  font-size: .62rem;
}

.kontakt-info_value {
  color: #0d0f14;
  font-size: .95rem;
  font-weight: 400;
  text-decoration: none;
  display: block;
}

.kontakt-info_meta {
  color: #555;
  margin-top: 2px;
  font-size: .75rem;
}

.kontakt-form-wrap {
  flex-direction: column;
  justify-content: center;
  padding: clamp(90px, 10vw, 140px) clamp(20px, 5vw, 48px) clamp(56px, 7vw, 80px) clamp(20px, 4vw, 64px);
  display: flex;
}

.kontakt-form_heading {
  letter-spacing: -.01em;
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 200;
  line-height: 1.1;
}

.kontakt-form_heading-em {
  font-style: italic;
}

.kontakt-form_subtext {
  color: #3a3a3a;
  margin: 0 0 36px;
  font-size: .85rem;
}

.kontakt-form, .kontakt-form._w-form {
  flex-direction: column;
  display: flex;
  position: relative;
}

.kontakt-form_row {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.kontakt-form_field {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-direction: column;
  margin-bottom: 12px;
  display: flex;
}

.kontakt-form_label {
  color: #555;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-family: Barlow Condensed, sans-serif;
  font-size: .62rem;
}

.kontakt-form_input, .kontakt-form_input._w-input, .kontakt-form_input._w-input, .kontakt-form_select, .kontakt-form_select._w-select {
  color: #0d0f14;
  background-color: #fff;
  border: 1px solid #ccd8ea;
  outline-style: none;
  width: 100%;
  padding: 12px 15px;
  font-family: Barlow, sans-serif;
  font-size: .88rem;
  font-weight: 300;
}

.kontakt-form_textarea, .kontakt-form_textarea._w-input {
  color: #0d0f14;
  resize: vertical;
  background-color: #fff;
  border: 1px solid #ccd8ea;
  outline-style: none;
  width: 100%;
  min-height: 110px;
  padding: 12px 15px;
  font-family: Barlow, sans-serif;
  font-size: .88rem;
  font-weight: 300;
}

.kontakt-form_field-website {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.kontakt-form_consent {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: row;
  align-items: flex-start;
  margin-top: 4px;
  margin-bottom: 12px;
  display: flex;
}

.kontakt-form_checkbox {
  accent-color: #01687c;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 3px;
}

.kontakt-form_consent-text {
  color: #3a3a3a;
  font-size: .77rem;
  line-height: 1.55;
}

.kontakt-form_consent-link {
  color: #01687c;
}

.kontakt-form_submit, .kontakt-form_submit._w-button {
  color: #fff;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #01687c;
  border-style: none;
  align-self: flex-start;
  margin-top: 8px;
  padding: 15px 36px;
  font-family: Barlow Condensed, sans-serif;
  font-size: .8rem;
  font-weight: 500;
  transition: background .2s;
}

.kontakt-form_note {
  color: #555;
  margin: 10px 0 0;
  font-size: .72rem;
  line-height: 1.55;
}

.kontakt-form_success {
  background-color: #e3eff1;
  border: 1px solid #ccd8ea;
  margin-top: 16px;
  padding: 22px 24px;
  display: none;
}

.kontakt-form_success-text {
  color: #01687c;
  margin: 0;
  font-size: .88rem;
  font-weight: 400;
}

._w-input-parent._w-input {
  color: #0d0f14;
  background-color: #fff;
  border: 1px solid #ccd8ea;
  outline-style: none;
  width: 100%;
  padding: 12px 15px;
  font-family: Barlow, sans-serif;
  font-size: .88rem;
  font-weight: 300;
}

.kontakt-map {
  border-top: 1px solid #ccd8ea;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.kontakt-map_info {
  border-right: 1px solid #ccd8ea;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 64px) clamp(20px, 5vw, 48px);
  display: flex;
}

.kontakt-map_kicker {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #01687c;
  letter-spacing: .26em;
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 24px;
  font-family: Barlow Condensed, sans-serif;
  font-size: .68rem;
  display: flex;
}

.kontakt-map_kicker-line {
  background-color: #01687c;
  width: 28px;
  height: 1px;
  display: block;
}

.kontakt-map_heading {
  letter-spacing: -.01em;
  margin: 0 0 28px;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 200;
  line-height: 1.1;
}

.kontakt-map_heading-em {
  font-style: italic;
}

.kontakt-map_row {
  border-bottom: 1px solid #ccd8ea;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  font-size: .88rem;
  display: flex;
}

.kontakt-map_row-last {
  margin-bottom: 28px;
}

.kontakt-map_row-label {
  color: #555;
}

.kontakt-map_row-value {
  color: #0d0f14;
  text-align: right;
  font-weight: 400;
}

.kontakt-map_row-link {
  color: #01687c;
  text-decoration: none;
}

.kontakt-map_visual {
  background-color: #04080f;
  min-height: 440px;
  position: relative;
  overflow: hidden;
}

.kontakt-map_img {
  filter: brightness(.28) saturate(.3);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.kontakt-map_overlay {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0;
}

.kontakt-map_pin {
  color: #5bbdce;
  border: 1.5px solid #5bbdce;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.service_subnav {
  z-index: 90;
  grid-row-gap: 0;
  grid-column-gap: 0;
  background-color: #fff;
  border-bottom: 1px solid #ccd8ea;
  padding: 0 clamp(20px, 5vw, 48px);
  display: flex;
  position: sticky;
  top: 90px;
  overflow-x: auto;
}

.service_subnav-link {
  font-family: var(--main);
  color: #3a3a3a;
  letter-spacing: .06em;
  white-space: nowrap;
  border-bottom: 2px solid #0000;
  padding: 16px 24px;
  font-size: .78rem;
  text-decoration: none;
}

.service_subnav-link-active {
  color: #01687c;
  border-bottom-color: #01687c;
  font-weight: 400;
}

.service_hero {
  grid-column-gap: clamp(32px, 5vw, 64px);
  grid-row-gap: clamp(32px, 5vw, 64px);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) clamp(20px, 5vw, 48px);
  display: grid;
}

.service_hero-kicker {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #01687c;
  letter-spacing: .24em;
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 20px;
  font-family: Barlow Condensed, sans-serif;
  font-size: .7rem;
  display: flex;
}

.service_hero-kicker-line {
  background-color: #01687c;
  width: 28px;
  height: 1px;
  display: block;
}

.service_hero-title {
  font-family: var(--main);
  letter-spacing: -.02em;
  margin: 0 0 24px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  line-height: .97;
}

.service_hero-title-em {
  font-style: italic;
}

.service_hero-text {
  max-width: 480px;
  font-family: var(--main);
  color: var(--dark);
  margin: 0 0 32px;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
}

.service_hero-images {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  display: flex;
}

.service_hero-img-main {
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
  height: 320px;
}

.service_hero-img-grid {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.service_hero-img-small {
  filter: brightness(.85);
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
  height: 160px;
}

.service_divider {
  border-style: solid none none;
  border-top-width: 1px;
  border-top-color: #ccd8ea;
  max-width: 1400px;
  margin: 0 auto;
}

.service_section {
  padding: clamp(56px, 8vw, 80px) clamp(20px, 5vw, 48px);
}

.service_section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.service_section-kicker {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #01687c;
  letter-spacing: .24em;
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 16px;
  font-family: Barlow Condensed, sans-serif;
  font-size: .68rem;
  display: flex;
}

.service_section-kicker-line {
  background-color: #01687c;
  width: 24px;
  height: 1px;
  display: block;
}

.service_section-heading {
  font-family: var(--main);
  letter-spacing: -.015em;
  margin: 0 0 40px;
  font-size: clamp(2.4rem, 3.8vw, 3.6rem);
  font-weight: 300;
  line-height: 1.06;
}

.service_section-heading-em {
  font-style: italic;
}

.service_feature-list {
  flex-direction: column;
  display: flex;
}

.service_feature {
  grid-column-gap: clamp(20px, 4vw, 48px);
  grid-row-gap: clamp(20px, 4vw, 48px);
  border-top: 1px solid #ccd8ea;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding: 32px 0;
  display: grid;
}

.service_feature-last {
  border-bottom: 1px solid #ccd8ea;
}

.service_feature-title {
  font-family: var(--main);
  color: #0d0f14;
  border-left: 3px solid #01687c;
  margin: 0;
  padding-left: 14px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
}

.service_feature-text {
  font-family: var(--main);
  color: var(--dark);
  text-align: justify;
  margin: 0;
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.78;
}

.service_banner {
  position: relative;
  overflow: hidden;
}

.service_banner-img {
  filter: brightness(.4);
  object-fit: cover;
  width: 100%;
  height: 420px;
  display: block;
}

.service_banner-overlay {
  background-image: linear-gradient(to top, #04080fe6 0%, #0000 70%);
  padding: clamp(28px, 5vw, 48px);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.service_banner-heading {
  color: #fff;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0;
  font-family: Barlow Condensed, sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.05;
}

.service_banner-heading-em {
  color: #5bbdce;
}

.service_steps-grid {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  grid-template-rows: auto;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.service_step {
  background-color: #f5f7fa;
  border-top: 2px solid #0000;
  padding: 36px 32px;
  transition: border-color .25s, background .25s;
}

.service_step-kicker {
  color: #01687c;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: Barlow Condensed, sans-serif;
  font-size: .65rem;
}

.service_step-title {
  font-family: var(--main);
  color: #0d0f14;
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 400;
}

.service_step-text {
  font-family: var(--main);
  color: #3a3a3a;
  text-align: justify;
  margin: 0;
  font-size: .83rem;
  line-height: 1.72;
}

.service_refs {
  font-family: var(--main);
  background-color: #f5f7fa;
  font-weight: 300;
}

.service_table-wrap {
  overflow-x: auto;
}

.service_table {
  border-collapse: collapse;
  width: 100%;
  min-width: 640px;
  margin-top: 32px;
}

.service_table-head {
  color: #555;
  text-align: left;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-bottom: 2px solid #ccd8ea;
  padding: 12px 24px 12px 0;
  font-family: Barlow Condensed, sans-serif;
  font-size: .68rem;
  font-weight: 400;
}

.service_table-cell {
  color: #0d0f14;
  vertical-align: top;
  border-bottom: 1px solid #ccd8ea;
  padding: 18px 24px 18px 0;
  font-size: .86rem;
}

.service_table-cell-comp {
  color: #3a3a3a;
}

.service_table-cell-time {
  color: #555;
  white-space: nowrap;
}

.service_ref-role {
  font-family: var(--main);
  color: #01687c;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-size: .72rem;
  font-weight: 700;
  display: block;
}

.projekte_header {
  border-bottom: 1px solid #ccd8ea;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(112px, 14vw, 140px) clamp(20px, 5vw, 48px) clamp(56px, 8vw, 80px);
}

.projekte_header-grid {
  grid-column-gap: clamp(28px, 5vw, 64px);
  grid-row-gap: clamp(28px, 5vw, 64px);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  display: grid;
}

.projekte_kicker {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #01687c;
  letter-spacing: .26em;
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 20px;
  font-family: Barlow Condensed, sans-serif;
  font-size: .68rem;
  display: flex;
}

.projekte_kicker-line {
  background-color: #01687c;
  width: 28px;
  height: 1px;
  display: block;
}

.projekte_title {
  font-family: var(--main);
  letter-spacing: -.02em;
  margin: 0;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 200;
  line-height: .95;
}

.projekte_title-em {
  font-style: italic;
}

.projekte_intro {
  font-family: var(--main);
  color: #3a3a3a;
  text-align: justify;
  margin: 0;
  font-size: 1rem;
  line-height: 1.78;
}

.projekte_filterbar {
  z-index: 90;
  grid-row-gap: 0;
  grid-column-gap: 0;
  background-color: #fff;
  border-bottom: 1px solid #ccd8ea;
  padding: 0 clamp(20px, 5vw, 48px);
  display: flex;
  position: sticky;
  top: 90px;
  overflow-x: auto;
}

.projekte_filter-btn {
  color: #3a3a3a;
  letter-spacing: .06em;
  white-space: nowrap;
  cursor: pointer;
  background-color: #5bbdce;
  border-style: none none solid;
  border-bottom-width: 2px;
  border-bottom-color: #0000;
  padding: 16px 22px;
  font-family: Barlow, sans-serif;
  font-size: .78rem;
  font-weight: 300;
}

.projekte_filter-btn.projekte_filter-btn-active {
  background-color: #5bbdce;
}

.projekte_filter-btn-active {
  color: #01687c;
  border-bottom-color: #01687c;
}

.projekte_featured {
  border-top: 1px solid #ccd8ea;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  display: grid;
}

.projekte_featured-img-wrap {
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.projekte_featured-img {
  filter: brightness(.5) grayscale(20%);
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.projekte_featured-overlay {
  background-image: linear-gradient(to right, #0000 50%, #ffffff0a 100%);
  position: absolute;
  inset: 0;
}

.projekte_featured-content {
  border-left: 1px solid #ccd8ea;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 64px);
  display: flex;
}

.projekte_featured-meta {
  color: #01687c;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: Barlow Condensed, sans-serif;
  font-size: .72rem;
}

.projekte_featured-title {
  font-family: var(--main);
  letter-spacing: -.01em;
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 200;
  line-height: 1.1;
}

.projekte_featured-title-em {
  font-style: italic;
}

.projekte_featured-role {
  color: #01687c;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: Barlow Condensed, sans-serif;
  font-size: .68rem;
  display: block;
}

.projekte_featured-text {
  font-family: var(--main);
  color: #3a3a3a;
  text-align: justify;
  margin: 0 0 16px;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.8;
}

.projekte_kpi-row {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  font-family: var(--main);
  border-top: 1px solid #ccd8ea;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 24px;
  display: flex;
}

.projekte_kpi-value {
  color: #01687c;
  font-family: Barlow Condensed, sans-serif;
  font-size: 1.6rem;
  font-weight: 200;
  line-height: 1;
}

.projekte_kpi-suffix {
  font-size: 1rem;
}

.projekte_kpi-label {
  color: #555;
  letter-spacing: .06em;
  margin-top: 4px;
  font-size: .72rem;
}

.projekte_impact {
  border-top: 1px solid #ccd8ea;
  border-bottom: 1px solid #ccd8ea;
  grid-template-rows: auto;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.projekte_impact-item {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  font-family: var(--main);
  border-right: 1px solid #ccd8ea;
  flex-direction: column;
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 40px);
  display: flex;
}

.projekte_impact-item-last {
  border-right-style: none;
}

.projekte_impact-value {
  color: #0d0f14;
  font-family: Barlow Condensed, sans-serif;
  font-size: 3rem;
  font-weight: 200;
  line-height: 1;
}

.projekte_impact-suffix {
  color: #01687c;
  vertical-align: super;
  font-size: 1.4rem;
}

.projekte_impact-text {
  color: #3a3a3a;
  font-size: .82rem;
  line-height: 1.5;
}

.projekte_impact-title {
  color: #0d0f14;
  margin-bottom: 2px;
  font-weight: 500;
  display: block;
}

.projekte_grid-section {
  padding: clamp(56px, 8vw, 80px) clamp(20px, 5vw, 48px);
}

.projekte_grid-container {
  max-width: 1400px;
  margin: 0 auto;
}

.projekte_grid {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  grid-template-rows: auto;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.projekte_card {
  font-family: var(--main);
  background-color: #f5f7fa;
  border-top: 2px solid #0000;
  flex-direction: column;
  padding: clamp(28px, 3vw, 40px) clamp(24px, 3vw, 36px);
  display: flex;
}

.projekte_card-date {
  color: #01687c;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: Barlow Condensed, sans-serif;
  font-size: .65rem;
}

.projekte_card-company {
  color: #555;
  letter-spacing: .04em;
  margin-bottom: 6px;
  font-size: .78rem;
}

.projekte_card-title {
  color: #0d0f14;
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.3;
}

.projekte_card-role {
  color: #01687c;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: Barlow Condensed, sans-serif;
  font-size: .65rem;
  display: block;
}

.projekte_card-text {
  color: #3a3a3a;
  text-align: justify;
  flex: 1;
  margin: 0;
  font-size: .82rem;
  line-height: 1.7;
}

.projekte_card-tags {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  border-top: 1px solid #ccd8ea;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 16px;
  display: flex;
}

.projekte_tag {
  color: #01687c;
  letter-spacing: .16em;
  text-transform: uppercase;
  background-color: #fff;
  border: 1px solid #ccd8ea;
  border-radius: 2px;
  padding: 3px 10px;
  font-family: Barlow Condensed, sans-serif;
  font-size: .58rem;
}

.projekte_noresults {
  color: #555;
  text-align: center;
  padding: 60px 0;
  font-size: .95rem;
  display: none;
}

.legal {
  max-width: 860px;
  font-family: var(--main);
  margin: 0 auto;
  padding: clamp(110px, 13vw, 140px) clamp(20px, 5vw, 48px) clamp(64px, 9vw, 100px);
}

.legal_header {
  border-bottom: 1px solid #ccd8ea;
  margin-bottom: clamp(40px, 6vw, 64px);
  padding-bottom: clamp(32px, 5vw, 48px);
}

.legal_kicker {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #01687c;
  letter-spacing: .26em;
  text-transform: uppercase;
  align-items: center;
  margin-bottom: 20px;
  font-family: Barlow Condensed, sans-serif;
  font-size: .68rem;
  display: flex;
}

.legal_kicker-line {
  background-color: #01687c;
  width: 28px;
  height: 1px;
  display: block;
}

.legal_title {
  letter-spacing: -.02em;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 200;
  line-height: .95;
}

.legal_title-em {
  font-style: italic;
}

.legal_section {
  margin-bottom: 52px;
}

.legal_section-last {
  margin-bottom: 0;
}

.legal_section-heading {
  color: #0d0f14;
  border-bottom: 1px solid #ccd8ea;
  margin: 0 0 18px;
  padding-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 500;
}

.legal_table {
  border-collapse: collapse;
  width: 100%;
}

.legal_row {
  border-bottom: 1px solid #ccd8ea;
}

.legal_row-last {
  border-bottom-style: none;
}

.legal_cell-label {
  color: #555;
  width: 42%;
  padding: 10px 0;
  font-size: .88rem;
}

.legal_cell-value {
  color: #0d0f14;
  padding: 10px 0;
  font-size: .88rem;
}

.legal_link {
  color: #01687c;
  text-underline-offset: 3px;
  text-decoration: underline;
}

.legal_text {
  color: #3a3a3a;
  text-align: justify;
  margin: 0;
  font-size: .88rem;
  line-height: 1.82;
}

.legal_subheading {
  color: #0d0f14;
  margin: 20px 0 8px;
  font-size: 1rem;
  font-weight: 500;
}

.kontakt-map_pin-label {
  color: #ffffff80;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-family: Barlow Condensed, sans-serif;
  font-size: .68rem;
}

.text-span, .text-span-2, .text-span-3, .text-span-4, .body, .main, .main-2, .main-3 {
  font-family: var(--main);
}

.legal_credit {
  color: #555;
  text-align: center;
  border-top: 1px solid #ccd8ea;
  margin-top: clamp(40px, 6vw, 64px);
  padding-top: clamp(32px, 5vw, 48px);
  font-size: .78rem;
}

.master-lines {
  z-index: 10;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  margin-top: 100px;
  display: flex;
  position: relative;
  inset: 0 0 auto;
}

.single-line {
  transform-origin: 0%;
  background-color: #0d0f14;
  width: 100%;
  height: 4px;
}

.single-line.first-line {
  background-color: #01687c;
  height: 24px;
}

.single-line.second-line {
  background-color: #01687c;
  height: 12px;
}

.single-line.third-line {
  background-color: #01687c;
}

@media screen and (max-width: 991px) {
  .navbar_menu {
    display: none;
  }

  .navbar_burger {
    display: flex;
  }

  .about-stats {
    grid-template-rows: auto;
    grid-template-columns: repeat(3, 1fr);
  }

  .values_grid {
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .network {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .network_overlay {
    background-image: linear-gradient(to top, #0000 40%, #04080f 100%);
  }

  .profiles_grid {
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .kontakt-split {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .kontakt-info {
    border-bottom: 1px solid #ccd8ea;
    border-right-style: none;
  }

  .service_hero {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .service_steps-grid {
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .projekte_featured {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .projekte_grid {
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .master-lines {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .single-line.first-line {
    height: 18px;
  }

  .single-line.second-line {
    height: 8px;
  }

  .single-line.third-line {
    height: 2px;
  }
}

@media screen and (max-width: 767px) {
  .awards_row {
    padding: 18px 0;
    display: block;
  }

  .awards_cell-proj {
    text-align: left;
    justify-self: start;
    padding: 0;
  }

  .awards_cell-comp {
    opacity: .75;
    text-align: left;
    justify-self: start;
    margin-top: 8px;
    padding: 0;
  }

  .awards_cell-time {
    opacity: .75;
    text-align: left;
    letter-spacing: 1px;
    justify-self: start;
    margin-top: 2px;
    padding: 0;
    font-family: Barlow Condensed, sans-serif;
  }

  .awards_row-head {
    display: none;
  }

  .about-hero_top {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .about-hero_imgs {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .about-stats {
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .values_head, .values_grid, .karriere_layout {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .karriere_left {
    position: static;
  }

  .profiles_head, .profiles_grid, .faq-page_header-grid, .kontakt-map {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .kontakt-map_info {
    border-bottom: 1px solid #ccd8ea;
    border-right-style: none;
  }

  .service_feature, .service_steps-grid, .projekte_header-grid, .projekte_impact {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .projekte_impact-item {
    border-bottom: 1px solid #ccd8ea;
    border-right-style: none;
  }

  .projekte_impact-item-last {
    border-bottom-style: none;
  }

  .projekte_grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  .navbar_cta {
    display: none;
  }

  .kontakt-form_row {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .master-lines {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .single-line.first-line {
    height: 14px;
  }

  .single-line.second-line {
    height: 6px;
  }
}


@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BarlowCondensed';
  src: url('../fonts/BarlowCondensed-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BarlowCondensed';
  src: url('../fonts/BarlowCondensed-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BarlowCondensed';
  src: url('../fonts/BarlowCondensed-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BarlowCondensed';
  src: url('../fonts/BarlowCondensed-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BarlowCondensed';
  src: url('../fonts/BarlowCondensed-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BarlowCondensed';
  src: url('../fonts/BarlowCondensed-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BarlowCondensed';
  src: url('../fonts/BarlowCondensed-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BarlowCondensed';
  src: url('../fonts/BarlowCondensed-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BarlowCondensed';
  src: url('../fonts/BarlowCondensed-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}