/*
Theme Name: Theme
Author: DBDB
Author URI: https://dbdb.de/
Description: Wordpress Theme by DBDB
Version: 1.0
*/

/*  
Root Variables 
*/
:root {
  --full: none;
  --wide: 1280px;
  --h-gutter: 3rem;
  --v-gutter: clamp(3rem, 8vw, 10vh);
  --text-xs: clamp(0.75rem, 0.7212rem + 0.1282vw, 0.875rem); /* 360px–1920px */
  --text-sm: clamp(0.875rem, 0.8173rem + 0.2564vw, 1.125rem);
  --text-base: clamp(1rem, 0.9423rem + 0.2564vw, 1.25rem);
  --text-lg: clamp(1rem, 0.8846rem + 0.5128vw, 1.5rem);
  --text-xl: clamp(1.25rem, 1.1346rem + 0.5128vw, 1.75rem);
  --text-2xl: clamp(1.5rem, 1.3846rem + 0.5128vw, 2rem);
  --text-3xl: clamp(1.75rem, 1.43rem + 0.8vw, 2.5rem);
  --text-4xl: clamp(1.675rem, 0.4336rem + 4.229vw, 6rem);
  --rsb-050: #ffffff;
  --rsb-100: #f5faff;
  --rsb-200: #e8f1fd;
  --rsb-300: #c1d7f1;
  --rsb-400: #77c4ed;
  --rsb-500: #46b2e3;
  --rsb-600: #2d9fd8;
  --rsb-700: #2182ba;
  --rsb-800: #005a8c;
  --rsb-900: #125176;
  --rsb-950: #0e3955;
  --rsb-1000: #021622;
  --primary: var(--rsb-800);
  --secondary: var(--rsb-300);
  --white: var(--rsb-050);
  --black: var(--rsb-1000);
  --enzian: #005a8c;
  --stahl: #c1d7f1;
  --stahl-dunkel: #b8cae0;
  --orange: #ec6642;
  --light-blue: var(--stahl);
  --dark-blue: #94accd;
}
@media (min-width: 2160px) {
  :root {
    --wide: 1440px;
  }
}
@media (max-width: 768px) {
  :root {
    --h-gutter: 1.5rem;
  }
}
@media (max-width: 425px) {
  :root {
    --h-gutter: 1.25rem;
  }
}

/*
Fonts
*/
@font-face {
  font-family: "Locator";
  src: url("/wp-content/themes/rsb/assets/fonts/locator/LocatorWebLight.woff2")
    format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Locator";
  src: url("/wp-content/themes/rsb/assets/fonts/locator/LocatorWebLightItalic.woff2")
    format("woff2");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Locator";
  src: url("/wp-content/themes/rsb/assets/fonts/locator/LocatorWebRegular.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Locator";
  src: url("/wp-content/themes/rsb/assets/fonts/locator/LocatorWebMedium.woff2")
    format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Locator";
  src: url("/wp-content/themes/rsb/assets/fonts/locator/LocatorWebRegularItalic.woff2")
    format("woff2");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Locator";
  src: url("/wp-content/themes/rsb/assets/fonts/locator/LocatorWebBold.woff2")
    format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Locator";
  src: url("/wp-content/themes/rsb/assets/fonts/locator/LocatorWebBoldItalic.woff2")
    format("woff2");
  font-weight: 700;
  font-style: italic;
}

/* 
Base
*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
  scroll-margin-top: 4rem;
}
body {
  position: relative;
  margin: 0 auto;
  width: 100%;
  font-family: "Locator";
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--rsb-1000);
}
body.no-scroll {
  overflow: hidden;
}
main {
  min-height: 100vh;
}
h1 + p,
h2 + p,
h3 + p,
h4 + p,
h5 + p,
h6 + p {
  margin-top: 1.5rem;
}
p + p {
  margin-top: 1rem;
}
b,
strong {
  font-weight: 700;
}
p strong {
  color: var(--primary);
}
picture {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
*:focus-visible {
  outline: 2px solid var(--rsb-800);
}
.italic {
  font-style: italic;
}
.bold {
  font-weight: 700;
}
.caps {
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}
.text-xs {
  font-size: var(--text-xs);
}
.text-sm {
  font-size: var(--text-sm);
}
.text-base {
  font-size: var(--text-base);
}
.text-lg {
  font-size: var(--text-lg);
}
.text-xl {
  font-size: var(--text-xl);
}
.text-2xl {
  font-size: var(--text-2xl);
}
.text-primary {
  color: var(--primary);
}

.section-text p picture {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.section-text a {
  color: var(--primary);
}
.section-text a:hover {
  color: var(--rsb-950);
}

/* 
Content Sizes
*/
.content {
  padding-top: 4rem;
}
/* .content > *:not(.section.full-width) {
  margin: 0 auto;
  padding-left: var(--h-gutter);
  padding-right: var(--h-gutter);
} */

/*
Section
*/
.section {
  margin: 0 auto;
  padding-left: var(--h-gutter);
  padding-right: var(--h-gutter);
  padding-top: var(--v-gutter);
  padding-bottom: var(--v-gutter);
}
.content .section:nth-of-type(even) {
  background-color: var(--rsb-100);
}
.section-header {
  margin-bottom: 2.5rem;
}
.section-header.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-header.grid h2,
.section-header.grid > div {
  grid-column-end: span 6;
}
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: calc(var(--h-gutter) / 2);
}
.hidden {
  display: none;
}
.bg-gradient {
  background-image: url("/wp-content/themes/rsb/assets/svg/gradient.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.bg-white {
  background-color: var(--rsb-050) !important;
}
:where(.section.bg-gradient) {
  color: var(--rsb-050);
}
.section.bg-gradient .text-primary {
  color: var(--rsb-050);
}

/*
Buttons
*/
.button {
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  line-height: 1;
  border: 1px solid var(--light-blue);
  background-color: var(--light-blue);
  color: var(--enzian);
  transition: all 200ms ease-in-out;
  max-width: fit-content;
  font-size: var(--text-sm);
}
.button-solid-light {
  background-color: var(--rsb-100);
  color: var(--primary);
  border-color: var(--rsb-100);
}

/* :where(.bg-gradient) .button {
  color: var(--rsb-050);
  border-color: var(--rsb-050);
} */
.button:hover {
  background-color: var(--stahl-dunkel);
  border-color: var(--stahl-dunkel);
}
.button svg {
  height: 1.125rem;
  width: 1.125rem;
  stroke-width: 1.875;
  transition: transform 200ms linear;
}
.button:hover
  svg:not(svg.arrow-down, .desktop-header__search svg, .filter-button svg) {
  transform: translateX(0.125rem);
}
.button:hover svg.arrow-down {
  transform: translateY(0.1rem);
}
/* .button-solid-blue {
  background-color: var(--rsb-800);
  color: var(--rsb-050);
  border-color: var(--rsb-800);
}
.button-solid-blue:hover {
  background-color: var(--rsb-900);
  border-color: var(--rsb-900);
} */
.button-solid-green {
  background-color: var(--light-blue);
  color: var(--enzian);
  border-color: var(--light-blue);
}
.button-solid-green:hover {
  background-color: var(--stahl-dunkel);
  border-color: var(--stahl-dunkel);
  color: var(--enzian) !important;
}
.button-solid-light:hover {
  background-color: var(--rsb-200);
  border-color: var(--rsb-200);
  color: var(--rsb-900);
}
.button.filter-button {
  background-color: var(--rsb-50);
  color: var(--rsb-800);
  border-color: var(--rsb-50);
}
.button.filter-button.active {
  background-color: var(--rsb-800);
  color: var(--rsb-050);
  border-color: var(--rsb-800);
}

/*
Header
*/
.desktop-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--rsb-050);
  color: var(--rsb-800);
  z-index: 100;
  border-bottom: 1px solid var(--rsb-200);
}
.desktop-header a:hover,
.desktop-header button:hover {
  color: var(--rsb-900);
}
.desktop-header__wrapper {
  width: 100%;
  padding: 0 var(--h-gutter);
  height: calc(4rem - 1px);
  align-content: center;
}
.desktop-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
  gap: calc(var(--h-gutter) / 2);
  grid-column-end: span 6;
}
.desktop-header__logo {
  grid-column-end: span 6;
}
.header__logo {
  width: 8rem;
  z-index: 1;
  transition: all 200ms ease;
}
.desktop-header__nav {
  display: flex;
  gap: calc(var(--h-gutter) / 2);
}
.desktop-header__sub {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.desktop-header__search {
  padding: 0.5rem;
}
.desktop-header__search svg {
  /* width: min-content; */
  height: var(--text-sm);
}

/*
Mega Menu
*/
.mega-menu {
  height: calc(100vh - 4rem);
  width: 100%;
  position: fixed;
  top: 4rem;
  left: 0;
  display: none;
  z-index: 10;
}
.mega-menu.active {
  display: block;
}
.mega-menu.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(2, 22, 34, 0.75);
  z-index: -1;
  backdrop-filter: blur(5px);
}
.mega-menu__item {
  position: relative;
}
.mega-menu__item:hover:after {
  bottom: -23px;
  height: 0.25rem;
  background-color: var(--rsb-300);
}
.mega-menu__item:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0;
  transition: background-color 200ms ease;
}
.mega-menu__item.active:after {
  bottom: -23px;
  height: 0.25rem;
  background-color: var(--rsb-300);
}
.mega-menu__item.global-active:after {
  bottom: -23px;
  height: 0.25rem;
  background-color: var(--rsb-800);
}
.mega-menu__tab {
  padding: calc(var(--v-gutter) / 2) var(--h-gutter);
  background-color: var(--rsb-100);
  height: auto;
}
[data-tab="2"].mega-menu__tab .mega-menu__col-three a:first-of-type {
  font-weight: 700;
}
[data-tab="2"].mega-menu__tab .mega-menu__col-three a {
  text-wrap: balance;
}
.mega-menu__tab-content {
  grid-column-end: span 6;
}
.mega-menu__tab-image {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  grid-column-end: span 6;
}
.mega-menu__tab-image picture {
  height: 70vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mega-menu__tab-image img {
  height: 100%;
  object-fit: cover;
}
.mega-menu__tab-title {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mega-menu__tab-title a {
  display: inline-flex !important;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
}
/* .mega-menu .mega-menu__tab-title a {
  width: min-content;
  white-space: nowrap;
} */
.mega-menu__tab-title button svg,
.mega-menu__tab-title a svg {
  height: 1.5rem;
  transition: transform 200ms ease;
}
.mega-menu__tab-title a:hover svg {
  transform: translateX(0.5rem);
}
.mega-menu__tab-title button:hover svg {
  transform: rotate(90deg);
}
.mega-menu__tab-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--h-gutter) / 2);
  font-size: 1rem;
}
.mega-menu__tab-cols div,
.mega-menu__tab-cols li {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mega-menu__tab-cols .span-2 {
  grid-column-end: span 2;
}
.mega-menu__tab-cols p,
.mega-menu__col-list > p {
  font-weight: 700;
}
.mega-menu__col-list > p,
.mega-menu a {
  font-size: 1rem;
  max-width: fit-content;
}
.mega-menu__tab-cols a {
  color: var(--primary);
}
.mega-menu__tab-cols a:hover,
.mega-menu__tab-cols a.active {
  text-decoration: underline;
  text-underline-offset: 0.375rem;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--rsb-300);
}
header [href="/karriere#quereinsteiger"] {
  margin-top: 1rem;
}

/* .mega-menu a + a,
.mega-menu p + a {
  margin-top: 1rem;
} */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--rsb-050);
  color: var(--rsb-800);
  z-index: 100;
  border-bottom: 1px solid var(--rsb-200);
}
.mobile-header__wrapper {
  width: 100%;
}
.mobile-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--h-gutter);
  height: 4rem;
}
.mobile-header__nav {
  padding: 1rem var(--h-gutter);
  background-color: var(--rsb-100);
  height: calc(100vh - 4rem);
  overflow-y: auto;
}
.mobile-header__nav-list {
  font-size: var(--text-lg);
}
.mobile-menu__details {
  width: 100%;
}
.mobile-menu__details.nested-details {
  padding-left: 1rem;
}
.mobile-menu__details .mobile-menu__col {
  padding-left: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rsb-200);
}
.mobile-menu__details[open] > summary svg {
  transform: rotate(180deg);
}
.mobile-menu__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  line-height: 1.5;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rsb-200);
  cursor: pointer;
  font-weight: 700;
}
.mobile-menu__summary svg {
  height: 1.25rem;
}
.mobile-menu__col a {
  display: inline-block;
  width: 100%;
}
.mobile-menu__col a:first-of-type {
  font-weight: 700;
}
.mobile-menu__col a + a {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rsb-200);
}
.mobile-menu details > summary,
summary {
  list-style: none;
}
.mobile-menu details > summary::-webkit-details-marker,
summary::-webkit-details-marker {
  display: none;
}
.mobile-header__cta {
  margin-top: 0.5rem;
  padding-top: 2.5rem;
  margin-bottom: 4rem;
  border-top: 1px solid var(--rsb-200);
}
.mobile-header__cta a {
  width: 100%;
  max-width: 100%;
  justify-content: center;
}
.mobile-header__search .searchform > div {
  display: flex;
  gap: 0.5rem;
}
.mobile-header__search .searchform input[type="text"] {
  width: 100%;
  font-size: var(--text-lg);
  border-radius: 2rem;
  padding: 0.5rem 1rem;
}

/*
Hero Home
*/
.hero.section {
  padding: 0;
}
.hero {
  position: relative;
}
.hero .section-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--v-gutter) / 3) var(--h-gutter);
}
.hero h1 {
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
  color: var(--white);
  max-width: 20ch;
}
.hero.single-job h1 {
  font-size: calc(var(--text-4xl) * 0.675);
  max-width: 64ch;
}
.hero h2 {
  font-size: var(--text-xl);
  color: var(--white);
  max-width: 64ch;
}
.hero.home h2 {
  font-size: var(--text-2xl);
  max-width: 48ch;
}
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(2, 22, 34, 0.375);
  z-index: 1;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .button-wrapper {
  padding: calc(var(--v-gutter) / 3) var(--h-gutter);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero .button-wrapper > div {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero.page,
.hero.single-job,
.hero.single-project,
.hero.single-press {
  min-height: 80vh;
  overflow: hidden;
}
.page .hero-content,
.single-job .hero-content,
.single-project .hero-content,
.single-press .hero-content {
  padding: calc(var(--v-gutter) / 3) var(--h-gutter);
  display: flex;
  align-items: flex-end;
  min-height: inherit;
  background-color: rgba(2, 22, 34, 0.25);
}
.section.page-intro .button-wrapper,
.section-mbz .button-wrapper {
  padding-top: calc(var(--v-gutter) / 2);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.section.page-intro .section-header {
  margin-bottom: 0;
}

/*
Section Large Text
*/
.section-eyebrow {
  color: var(--primary);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  font-size: var(--text-lg);
  line-height: 1;
  margin-top: 0.5rem;
}
.hero .section-eyebrow {
  color: var(--white);
  padding-bottom: 1rem;
}
.section-large-text p {
  font-size: var(--text-4xl);
  font-style: italic;
  font-weight: 300;
  line-height: 1.2;
  margin: calc(var(--v-gutter) / 3) 0;
  color: var(--rsb-800);
}

:where(.bg-gradient) .section-eyebrow,
:where(.bg-gradient) .section-large-text p {
  color: var(--rsb-050);
}
/*
Section Image
*/
.section-image {
  padding: 0;
}
.section-image .section-wrapper {
  max-height: 90vh;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/*
Section Services
*/
.section-services .section-wrapper,
.section-products .section-wrapper,
.section-sustainability-projects .section-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--h-gutter) * 2);
}
.section-services li {
  font-size: clamp(1.25rem, 0.514rem + 2.8037vw, 5rem);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1;
  height: auto !important;
}
.services-swiper {
  overflow: hidden !important;
  max-height: 56vh;
  width: 100%;
}

.services-swiper .swiper-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.section-services__mobile {
  display: none;
}

/*
Section Products
*/
.products-swiper {
  overflow: hidden;
  position: relative;
  width: -webkit-fill-available;
  width: 100%;
}
.products-swiper .swiper-wrapper {
  width: 100%;
  display: flex;
}
.products-swiper .swiper-slide {
  min-width: 100%;
}
.products-swiper picture {
  height: auto;
}
.products-swiper .swiper-slide h3 {
  margin-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--primary);
}
.products-swiper .swiper-slide img {
  height: 64vh;
  object-fit: cover;
  width: 100%;
  max-width: 100%;
}
.swiper-button-wrapper {
  position: absolute;
  bottom: 0.25rem;
  right: 0;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}

.swiper-nav-prev svg,
.swiper-nav-next svg {
  width: 2rem;
  height: 2rem;
  stroke-width: 0.75;
  stroke: var(--rsb-800);
}

/*
Section Slider Projects
*/
.section-slider-projects .projects-swiper {
  overflow: hidden;
  position: relative;
}
.section-slider-projects .swiper-wrapper {
  display: flex;
  width: 100%;
}
.section-slider-projects .swiper-slide {
  min-width: 100%;
}
.projects-swiper .swiper-slide h3 {
  margin-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--primary);
}
.section-slider-projects .swiper-slide img {
  height: 90vh;
  width: 100%;
  object-fit: cover;
}

/*
Section Career CTA
*/
.section-career-cta .section-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--h-gutter) * 2);
}
.section-career-cta .section-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--v-gutter);
}
.section-career-cta .button-wrapper {
  margin-top: 2rem;
}
.section-career-cta .section-headline span {
  font-size: var(--text-sm);
  font-weight: 400;
}
.text-xl {
  font-size: var(--text-xl);
}
.section-headline .text-2xl {
  margin-bottom: 1rem;
}

/*
Section Reviews
*/
/* .section-reviews .section-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--h-gutter) / 2);
} */
.section-reviews .section-header {
  align-items: flex-start;
}
.section-reviews .reviews-swiper {
  overflow: hidden;
  min-height: 20rem;
  padding-top: 4rem;
  border-top: 1px solid var(--rsb-300);
}
.section-reviews .swiper-slide {
  width: 100% !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--h-gutter) / 2);
  height: auto;
}
.section-reviews .quote {
  font-size: clamp(2.25rem, 1.76rem + 1.8667vw, 4rem);
  line-height: 1.2;
  max-width: 80%;
  font-style: italic;
}
.section-reviews .review {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section-reviews .review-content {
  padding-bottom: 2rem;
  font-size: var(--text-2xl);
  color: var(--rsb-800);
  position: relative;
}
.section-reviews .swiper-button-wrapper {
  border-top: 1px solid var(--rsb-300);
  margin-top: 4rem;
  display: flex;
  gap: 0.125rem;
  position: relative;
  justify-content: space-between;
  padding-top: 1rem;
}
.section-reviews .review-author {
  font-size: var(--text-sm);
  color: var(--primary);
  border-top: 1px solid var(--rsb-300);
  padding-top: 2rem;
}
.section-reviews .bg-gradient .review-author {
  color: var(--rsb-050);
}
.section-reviews .review-author span:first-of-type {
  font-weight: 400;
}
.bg-gradient.section-reviews .review-content,
.bg-gradient.section-reviews .review-author {
  color: var(--rsb-050);
}
.bg-gradient.section-reviews .swiper-nav-prev svg,
.bg-gradient.section-reviews .swiper-nav-next svg {
  stroke: var(--rsb-050);
}
/*
Section Social Media
*/
.section-social-media .grid a {
  grid-column: span 3;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
}
/* .section-social-media .grid video {
  transform: translateY(-25%);
} */
.section-social-media .social-media-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.section-social-media .social-media-links a img {
  max-width: 2rem;
  width: 2rem;
}

/*
Section Jobs
*/
.section-jobs .job a,
.section-search-results .section-search-results__item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
  width: 100%;
  font-size: var(--text-xl);
  padding: 1rem 0;
  border-top: 1px solid var(--rsb-300);
  color: var(--primary);
  transition: background-color 200ms ease;
}
.section-jobs .job a:hover,
.section-search-results .section-search-results__item a:hover {
  color: var(--rsb-900);
  background-color: var(--rsb-100);
}
.section-jobs .job:last-of-type,
.section-search-results .section-search-results__item:last-of-type {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--rsb-300);
}
.section-jobs .job:first-of-type,
.section-search-results .section-search-results__item:first-of-type {
  margin-top: 1.5rem;
}
.section-jobs .job a svg,
.section-search-results .section-search-results__item a svg {
  height: 1.5rem;
  width: 1.5rem;
  stroke-width: 1.25;
  transition: all 200ms ease;
  opacity: 0;
  transform: translateX(-0.5rem);
}
.section-jobs .job a:hover svg,
.section-search-results .section-search-results__item a:hover svg {
  opacity: 1;
  transform: translateX(0);
}
.section-job__free-text a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  text-decoration-thickness: 1px;
}

/*
Section Video
*/
.section-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16 / 9;
}

/*
Section Testimonials
*/
.section-testimonials .section-header {
  border-bottom: 1px solid var(--rsb-300);
  padding-bottom: calc(var(--v-gutter) / 2);
  margin-bottom: calc(var(--v-gutter) / 2);
}
.testimonial-image {
  grid-column-end: span 4;
  overflow: hidden;
}
.testimonial-image img {
  height: 60vh;
}
.testimonial-content {
  grid-column: 7 / span 6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-text {
  font-size: var(--text-lg);
}
.testimonial-author {
  font-size: var(--text-sm);
}
.testimonial-author span:first-of-type {
  font-weight: 400;
}
.testimonials-swiper {
  overflow: hidden;
  position: relative;
}
.testimonials-swiper .swiper-wrapper {
  display: flex;
}
.testimonials-swiper .swiper-slide {
  min-width: 100%;
}
.testimonials-swiper .swiper-pagination {
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
  z-index: 10;
  padding-top: 1.5rem;
  margin-top: calc(var(--v-gutter) / 2);
  border-top: 1px solid var(--rsb-300);
  position: relative;
}
.testimonials-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--rsb-050);
  border-radius: 50%;
  transition: background-color 200ms ease;
  opacity: 0.5;
}
.testimonials-swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/*
Section Benefits
*/
.section-benefits .benefits.grid {
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  gap: var(--h-gutter);
}
.goals.grid {
  grid-template-columns: repeat(auto-fill, minmax(36rem, 1fr));
  gap: var(--h-gutter);
  margin-top: var(--v-gutter);
}

.section-benefits .benefit-icon,
.section-goals .goal-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.section-benefits .benefit-icon img,
.section-goals .goal-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section-benefits .benefit-title,
.section-goals .goal-title {
  font-weight: 700;
  font-size: var(--text-sm);
}
.section-benefits .benefit-text,
.section-goals .goal-text {
  margin-top: 0.5rem;
  font-size: var(--text-sm);
  text-wrap: balance;
}

/*
Section Single Job
*/
.section-job__intro,
.section-job__details,
.section-project__intro,
.section-project__details,
.section-project-gallery__item,
.contact-form,
.section-project-next__content {
  grid-column: 3 / span 8;
}
.section-job__details,
.section-job__details,
.section-project__details {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: var(--h-gutter);
}
.section-job__details > div:first-child [job-data] + [job-data] {
  margin-top: 2rem;
}
.section-job__free-text {
  margin-top: 4rem;
}
.section-job {
  row-gap: var(--v-gutter);
}
[job-data="time"] {
  display: none;
}
.section-job__intro [job-data] {
  margin-top: 1.5rem;
  font-size: var(--text-sm);
}
.section-job__intro [job-data="description"] {
  font-size: var(--text-xl);
}
[project-data] h2 {
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--primary);
}
[job-data] ul {
  list-style: disc;
}
.section-job__details [job-data] p {
  margin-left: 2.25rem;
}
[job-data] ul li {
  margin-left: 1.25rem;
  padding-left: 1rem;
}
[job-data] ul li::marker {
  color: var(--rsb-300);
}
[job-data] ul li + li,
[project-data] ul li + li {
  margin-top: 0.25rem;
}
.section-job h1 {
  display: flex;
}
.section-job__headline {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--text-xl);
  color: var(--primary);
  font-weight: 700;
}
.section-job__headline span svg {
  width: 1.25rem;
  height: 1.25rem;
}
.section-job__keyfact,
.section-project__keyfact {
  position: sticky;
  top: 6rem;
  align-self: flex-start;
}
.section-job__keyfact,
.section-project__keyfact {
  font-size: var(--text-xs);
}
.section-project__keyfact > div + div {
  margin-top: 1rem;
}
.section-project__keyfact a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--rsb-300);
}
.section-project__keyfact a:hover {
  color: var(--rsb-950);
}
.section-job__keyfact {
  border-radius: 0.5rem;
  padding: 1rem;
  color: var(--rsb-100);
}
.section-job__keyfact h2 {
  font-size: var(--text-base);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #346b97;
}
.job-keyfact {
  display: block;
}
.job-keyfact__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.job-keyfact span {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-weight: 700;
}
.job-keyfact svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.job-keyfact p,
.job-keyfact a {
  margin-left: 1.75rem !important;
}
.job-keyfact a {
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
}
.job-keyfact + .job-keyfact {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #346b97;
}
.job-keyfact__cta {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #346b97;
}
.section-job__keyfact .button {
  max-width: 100%;
  width: 100%;
  justify-content: center;
}
.job-keyfact__share {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.job-keyfact__share button {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
}
/*
Section Contact Form
*/
.contact-form h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form .form-row.single-row {
  grid-template-columns: 1fr;
  gap: 1rem;
}
.contact-form .form-row + h3 {
  margin-top: 3rem;
}
.contact-form .form-row + .form-row {
  margin-top: 1rem;
}
.contact-form .form-row input,
.contact-form .form-row textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid var(--rsb-200);
  border-radius: 0.125rem;
}
.contact-form .form-row input[type="file"] {
  color: var(--primary);
  text-align: center;
  background-color: var(--rsb-050);
}

.contact-form .form-row input::file-selector-button {
  background-color: unset;
  border: unset;
  cursor: pointer;
  padding: 0;
  padding-right: 2rem;
}
.contact-form .form-row input:focus-visible {
  outline-color: var(--primary);
}
.contact-form .form-row label span:first-of-type {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--primary);
}
.contact-form h2 {
  margin-bottom: calc(var(--v-gutter) / 2);
}
.contact-form .wpcf7-submit {
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  line-height: 1;
  border: 1px solid var(--light-blue);
  color: var(--white);
  transition: all 200ms ease-in-out;
  max-width: fit-content;
  cursor: pointer;
  margin-top: 2rem;
  background-color: var(--light-blue);
}
.contact-form .wpcf7-submit:hover {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
}
.contact-form [data-name="datenschutz"] label {
  display: flex;
  align-items: flex-start;
}
.contact-form [data-name="datenschutz"] input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
  margin-top: 2px;
}
.contact-form [data-name="datenschutz"] .wpcf7-list-item {
  padding: 0;
  margin: 0;
}
.contact-form [data-name="datenschutz"] a {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}
/*
Section Contact Person
*/
.section-contact-person .section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--h-gutter) / 2);
}
.section-contact-person .contact-person-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.section-contact-person .contact-person-text {
  font-size: var(--text-2xl);
  text-wrap: balance;
}
.section-contact-person .contact-person-position {
  font-size: var(--text-sm);
  margin-top: 0.25rem;
}
.section-contact-person .contact-person-image img {
  max-height: 80vh;
  object-fit: cover;
}
.section-contact-person .button-wrapper {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/*
Section Product Posts
*/
.product-item .product-item__image {
  overflow: hidden;
  aspect-ratio: 4 / 2;
}
.product-item .product-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sepcial-anchor {
  scroll-padding-top: var(--v-gutter);
  scroll-margin-top: var(--v-gutter);
}
.service-projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--h-gutter) / 2);
}
.project-item > div {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.project-item > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms ease-in-out;
}
.project-item:hover > div img {
  transform: scale(1.02);
}
.project-item h4 {
  margin-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--primary);
}

.project-item:hover h4 {
  color: var(--rsb-950);
}
.section-projects .grid {
  grid-template-columns: 1fr 1fr;
}
.section-project__headline {
  font-size: var(--text-2xl);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem !important;
}
.section-project-gallery__item + .section-project-gallery__item {
  margin-top: calc(var(--v-gutter) / 2);
}
.section-project__description {
  font-size: var(--text-lg);
}
.section-project__description + .section-project-gallery {
  margin-top: 2rem;
}

.section-project-next {
  border-top: 1px solid var(--rsb-200);
}
.section-project-next__content {
  display: flex;
  justify-content: space-between;
}
.section-pagination {
  padding-top: 0;
}
.section-pagination .section-wrapper {
  border-top: 1px solid var(--rsb-200);
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.section-pagination a,
.section-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--rsb-200);
  color: var(--primary);
  transition: all 200ms ease-in-out;
  font-size: 14px;
}
.section-pagination a:hover {
  background-color: var(--rsb-200);
}
.section-pagination .page-numbers.current {
  background-color: var(--primary);
  color: var(--rsb-050);
}

/*
Section Keyfacts
*/
.keyfact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--h-gutter) / 2);
  font-size: var(--text-xl);
  color: var(--primary);
}
.keyfact:first-of-type {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rsb-200);
}
.keyfact div:first-child {
  font-weight: 700;
}
.keyfact + .keyfact {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rsb-200);
}

/*
Section Directors
*/
.directors {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: calc(var(--h-gutter) * 2);
}
.director-content {
  margin-top: 0.5rem;
}

/*
Section Press
*/
.section-press__content {
  grid-column: 4 / span 6;
}
.section-press__content .section-text {
  font-size: var(--text-lg);
}
.section-text p picture {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

/*
Footer
*/
.section-footer {
  color: var(--primary);
  background-color: var(--rsb-100);
  border-top: 1px solid var(--rsb-200);
  font-size: var(--text-sm);
  position: relative;
}
.footer-info,
.footer-nav {
  grid-column-end: span 6;
}
.footer-info .header__logo {
  margin-bottom: 2rem;
}
.footer-nav {
  column-count: 2;
  column-gap: calc(var(--h-gutter) / 2);
}
.footer-nav__col {
  break-inside: avoid;
}
.footer-nav__col + .footer-nav__col {
  margin-top: 4rem;
}
.footer-nav__col h3,
.footer-nav__col p {
  font-weight: 700;
}
.footer-nav__col h3 {
  margin-bottom: 1.5rem;
  font-size: var(--text-base);
}
.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-nav__list [href="/leistungen"],
.footer-nav__list [href="/produkte"],
.footer-nav__list [href="/karriere"],
.footer-nav__list [href="/unternehmen"],
.footer-nav__list [href="/projekte"]:first-of-type,
.mega-menu [href="/leistungen"],
.mega-menu [href="/produkte"],
.mega-menu [href="/karriere"],
.mega-menu [href="/unternehmen"],
.mega-menu [href="/projekte"]:first-of-type {
  font-weight: 700;
}
.footer-nav__list + .footer-nav__list {
  margin-top: 1.5rem;
}
.section-footer a {
  width: fit-content;
}
.section-footer a:hover {
  color: var(--rsb-950);
}

/*
Section History
*/
.history-swiper {
  overflow: hidden;
  position: relative;
}
.history-swiper .swiper-slide {
  height: 80vh;
}
.history-event {
  background-color: var(--rsb-100);
  padding: calc(var(--h-gutter) / 2);
  height: 100%;
  display: grid;
  place-content: center;
  overflow: hidden;
}
.history-event.has-image {
  grid-template-columns: 1fr 1fr;
  place-content: unset;
  gap: calc(var(--h-gutter) / 2);
}
.history-event.has-image .history-event__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.history-event__image {
  overflow: hidden;
}
.history-event__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.history-event__content {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto;
}
.history-timeline__wrapper {
  background-color: var(--rsb-100);
  width: 100%;
  padding: 0 calc(var(--h-gutter) / 2);
}
.history-timeline {
  padding: 1rem 0;
  border-top: 1px solid var(--rsb-200);
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.history-timeline .swiper-pagination-bullet {
  all: unset;
}
.history-timeline .swiper-pagination-bullet {
  opacity: 0.5;
  color: var(--primary);
  font-size: var(--text-xs);
  font-weight: 700;
  cursor: pointer;
}
.history-timeline .swiper-pagination-bullet-active {
  opacity: 1;
}
.history-timeline > span {
  line-height: 1;
}
.swiper-notification {
  display: none;
}

/*
Section Certificates
*/
.certificate,
.date-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  color: var(--primary);
  padding: 1rem 0;
  border-bottom: 1px solid var(--rsb-200);
  width: 100%;
  transition: background-color 200ms ease;
}
.date-item p {
  margin-top: 0.25rem;
}
.date-item:hover {
  color: var(--rsb-950);
  background-color: var(--rsb-100);
}
.certificates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--h-gutter) / 2);
}

.certificate svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  stroke: var(--primary);
}

.certificate:first-child,
.date-item:first-child {
  padding-top: 1rem;
  border-top: 1px solid var(--rsb-200);
}
.date-item span {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.date-item span svg {
  stroke: var(--primary);
}
.section-press-kit a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.section-press-kit a svg {
  width: 0.75rem;
  height: 0.75rem;
  stroke: var(--primary);
}

/* Section Contact */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--h-gutter);
}
.section-contact h3 {
  font-weight: 700;
  color: var(--primary);
  font-size: var(--text-xl);
}
.section-contact a {
  display: block;
  width: fit-content;
}
.section-contact .button {
  margin-top: 1.5rem;
}
.section-contact .contact-form {
  grid-column: 1 / span 12;
}
.section-contact .contact-form .single-row {
  margin-top: 1rem;
}
.contact-form .wpcf7-not-valid-tip {
  color: #dc3232 !important;
}
.contact-form .wpcf7 form .wpcf7-response-output {
  margin: 2rem 0;
  padding: 1rem;
  text-align: center;
  background-color: var(--light-blue);
  color: white;
  border: 0;
  border-radius: 1rem;
}

.section-posts-service ul {
  list-style-type: disc;
  margin-left: 1.25rem;
}
.section-posts-service p + ul {
  margin-top: 1rem;
}
.section-posts-service ul li::marker {
  color: var(--rsb-300);
}
.section-posts-service ul li + li {
  margin-top: 0.5rem;
}

/*
Section Partner
*/
.section-partner .partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
  gap: 1rem;
}
.section-partner .partner {
  padding: var(--h-gutter);
  background-color: var(--primary);
}
.section-partner .partner-image {
  width: 100%;
  margin: 0 auto;
}
.section-partner .partner-image img {
  width: 100%;
  max-width: 12rem;
  height: 6rem;
  max-height: 8rem;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}

/*
Section Statement
*/
.section-statement .section-statement__headline {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--primary);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.section-text ol br {
  display: block;
  content: "";
  margin-top: 0.25rem;
}
.section-text h1,
.section-text h2,
.section-text h3,
.section-text h4,
.section-text h5,
.section-text h6 {
  font-weight: 700;
  color: var(--primary);
}
.section-text {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}
.section-text h1 {
  margin-bottom: 5vh;
}
.section-text p + h3,
.section-text p + h4,
.section-text p + h5,
.section-text p + h6,
.section-text ol + h2,
.section-text ol + h3,
.section-text ol + h4,
.section-text ol + h5,
.section-text ol + h6 {
  margin-top: 2.5rem;
}
.section-text h1 + p,
.section-text h2 + p,
.section-text h3 + p,
.section-text h4 + p,
.section-text h5 + p,
.section-text h6 + p,
.section-text h1 + ol,
.section-text h2 + ol,
.section-text h3 + ol,
.section-text h4 + ol,
.section-text h5 + ol,
.section-text h6 + ol {
  margin-top: 1rem;
}
.section-text p + p {
  margin-top: 1rem;
}
.section-text h2 + h3,
.section-text h3 + h4 {
  margin-top: 1rem;
}
.section-text p + h2 {
  margin-top: 3rem;
}
.section-text ul {
  list-style: disc;
}
ol {
  list-style: decimal !important;
}
.section-text ul li,
.section-text ol li {
  padding-left: 0.25rem;
  margin-left: 1rem;
}

.section-text ul li::marker,
.section-text ol li::marker {
  color: var(--rsb-800);
}

.section-text ul li + li,
.section-text ol li + li {
  margin-top: 0.75rem;
}
.section-text p + ul,
.section-text ul + p,
.section-text p + ol,
.section-text ol + p {
  margin-top: 1rem;
}
.section-text a {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--primary);
}

.section-search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(2, 22, 34, 0.75);
  backdrop-filter: blur(5px);
}
.section-search-modal__wrapper {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
}
.section-search-modal__content {
  color: var(--primary);
  width: 50vw;
  padding: 2rem;
  background-color: var(--rsb-050);
  border-radius: 0.5rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
.section-search-modal__header {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-search-modal__header svg {
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}
.section-search-modal__content h2 {
  font-size: var(--text-lg);
}
.section-search-modal__content .searchform input[type="text"],
.section-search-results .searchform input[type="text"] {
  font-size: var(--text-xl);
  border-bottom: 1px solid var(--rsb-300);
  width: 100%;
}
.section-search-modal__content .searchform input[type="text"]:focus-visible,
.section-search-results .searchform input[type="text"]:focus-visible {
  outline: unset;
  border-bottom: 1px solid var(--primary);
}
.section-search-modal__content .searchform input[type="submit"],
.section-search-results .searchform input[type="submit"] {
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  border-radius: 2rem;
  white-space: nowrap;
  line-height: 1;
  transition: all 200ms ease-in-out;
  width: 100%;
  text-align: center;
  font-size: var(--text-sm);
  background-color: var(--rsb-100);
  color: var(--primary);
  cursor: pointer;
}
.section-search-modal__content .searchform input[type="submit"]:hover {
  background-color: var(--rsb-200);
}
.section-search-results__list {
  margin-top: 4rem;
}
.section-search-results__list h2 {
  font-weight: 700;
  color: var(--primary);
}
.section-search-results .searchform input[type="text"] {
  font-size: var(--text-xl);
  border-bottom: 1px solid var(--rsb-300);
  width: 40ch;
  margin-top: 1rem;
}
.section-search-results .searchform input[type="submit"],
.mobile-header__search .searchform input[type="submit"] {
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  border-radius: 2rem;
  white-space: nowrap;
  line-height: 1;
  transition: all 200ms ease-in-out;
  width: min-content;
  text-align: center;
  font-size: var(--text-sm);
  background-color: var(--primary);
  color: var(--rsb-050);
  cursor: pointer;
}
.mobile-header__search .searchform input[type="submit"] {
  margin-top: 0;
}
.section-search-results .searchform input[type="submit"]:hover {
  background-color: var(--rsb-900);
}
.section-search-results .searchform > div {
  display: flex;
  gap: 1rem;
}

/*
Section Departments
*/
.section-departments .departments {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: calc(var(--h-gutter) / 2);
}
.section-departments .department-contact {
  aspect-ratio: 3 / 2;
  display: grid;
  grid-template-columns: 2fr 1fr;
  background-color: var(--rsb-050);
}
.department-contact__info {
  padding: 1rem 1.5rem;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.department-contact__info h2 {
  font-weight: 700;
  font-size: var(--text-base);
}
.department-contact__info a {
  display: block;
  width: fit-content;
  font-size: var(--text-sm);
}
.department-contact__info a:hover {
  color: var(--rsb-950);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  text-decoration-color: var(--rsb-300);
  text-decoration-thickness: 1px;
}
/*
Section Subnav
*/
.section-sub-nav {
  position: fixed;
  top: 4rem;
  left: 0;
  width: 100%;
  background-color: var(--rsb-050);
  border-bottom: 1px solid var(--rsb-200);
  overflow: hidden;
  padding: 0 1.5rem;
  padding-right: 3.5rem;
}
.section-sub-nav .section-wrapper {
  display: flex;
  padding: 0 1rem;
}
.section-sub-nav a {
  font-size: var(--text-xs);
  color: var(--primary);
  padding: 0.5rem 1rem;
  width: fit-content;
  background-color: var(--rsb-050);
  white-space: nowrap;
  text-align: center;
  position: relative;
  flex-shrink: unset;
}
.section-sub-nav a:hover:after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  width: calc(100% - 2rem);
  height: 0.125rem;
  background-color: var(--rsb-300);
}
.section-sub-nav a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  width: calc(100% - 2rem);
  height: 0.125rem;
  background-color: var(--primary);
}
.sub-nav-swiper {
  display: flex;
  position: relative;
}
.sub-nav-swiper button {
  position: absolute;
  top: 0;
  z-index: 10;
  height: 100%;
  width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--rsb-050);
  cursor: pointer;
}
.sub-nav-swiper .swiper-nav-next {
  right: -3.5rem;
  border-left: 1px solid var(--rsb-200);
}
.sub-nav-swiper .swiper-nav-prev {
  left: -1.5rem;
  border-right: 1px solid var(--rsb-200);
}
.sub-nav-swiper .swiper-nav-prev svg,
.sub-nav-swiper .swiper-nav-next svg {
  height: 1rem;
  width: 1rem;
}

.scroll-top {
  position: fixed;
  bottom: 0.5rem;
  right: 0.5rem;
  background-color: var(--primary);
  border-radius: 2rem;
  width: 2rem;
  height: 2rem;
  display: none;
}
.scroll-top > div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.scroll-top svg {
  width: 1rem;
  height: 1rem;
  stroke: var(--rsb-050);
}

.uc-embedding-accept {
  background-color: var(--primary);
  color: var(--rsb-050);
  margin-bottom: 1rem;
}
.uc-embedding-more-info {
  background-color: var(--rsb-100);
  margin-top: 1rem;
}
.uc-embedding-container {
  width: 100% !important;
}

.section-mbz img {
  max-width: 40rem;
  margin-bottom: 2rem;
}

/*
Section Project Filter
*/
.section-filters__category:first-child {
  margin-bottom: 1.5rem;
}
.section-filters__category h3 {
  font-size: var(--text-sm);
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--primary);
}
.section-filters__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.filter-button {
  font-size: var(--text-xs) !important;
  font-weight: 400 !important;
  padding: 0.5rem 0.75rem !important;
}
.empty-filter {
  font-size: var(--text-sm);
  margin-top: 2rem;
}
.filter-button svg {
  width: 1rem;
  height: 1rem;
}
.button.filter-button {
  transition: unset;
}
.filter-button.hidden {
  display: none;
}
.button.filter-button__reset {
  padding: 0.5rem !important;
}
.button.filter-button__reset svg {
  width: 0.875rem;
  height: 0.875rem;
}

.section-video-grid .video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: calc(var(--h-gutter) / 2);
}

/*
Section Hard Facts
*/
.hard-facts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: calc(var(--h-gutter) / 2);
}
.hard-fact {
  display: flex;
  flex-direction: column;
  text-wrap: balance;
  font-weight: 700;
  color: var(--primary);
}
.hard-fact h3 > div {
  font-size: clamp(2.25rem, 1.76rem + 1.8667vw, 4rem);
  font-weight: 700;
  color: var(--light-blue);
  font-style: italic;
}

.section-sustainability-projects .section-headline {
  margin: 2rem 0;
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 1.76rem + 1.8667vw, 4rem);
  font-style: italic;
  color: var(--primary);
}
.section-sustainability-projects .section-copy {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 0.5rem;
}
.section-sustainability-projects .section-copy p {
  text-wrap: balance;
  max-width: 68ch;
  font-size: var(--text-lg);
}
.section-sustainability-projects .button-wrapper {
  margin-top: 2rem;
}

/*
Media Queries
*/

@media (max-width: 1536px) {
  .section-job__intro,
  .section-job__details,
  .section-project__intro,
  .section-project__details,
  .section-project-gallery__item,
  .contact-form,
  .section-project-next__content {
    grid-column: 1 / span 12;
  }
}

@media (max-width: 1280px) {
  .mega-menu__tab-title {
    font-size: var(--text-lg);
  }
  .section-departments .departments {
    grid-template-columns: 1fr 1fr;
  }
  .section-press__content {
    grid-column: 1 / span 12;
  }
}

@media (max-width: 1024px) {
  .header__logo {
    width: 6rem;
  }
  .mobile-header {
    display: block;
  }
  .desktop-header {
    display: none;
  }
  .section-slider-projects .swiper-slide img {
    max-height: 70vh;
  }
  .section-job__details,
  .section-project__details {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .section-job__keyfact {
    position: relative;
    top: 0;
    grid-row-start: 1;
  }
  .section-benefits .benefits.grid,
  .section-goals .goals.grid {
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--h-gutter) * 0.875);
  }
  .section-video-grid .video-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-sustainability-projects .section-wrapper {
    grid-template-columns: 1fr;
    gap: var(--v-gutter);
  }
}

/*
Section Image Quote
*/
.image-quote {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--h-gutter) / 2);
  color: var(--primary);
}
.goals-quote blockquote,
.image-quote blockquote {
  font-size: clamp(2.25rem, 1.76rem + 1.8667vw, 4rem);
  font-style: italic;
  line-height: 1.2;
}
.image-quote cite {
  font-style: normal;
  margin-top: 1rem;
  display: block;
}
.goals-quote blockquote {
  margin-top: 2rem;
  max-width: 29ch;
}

/*
Section CLaims
*/
.claims {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--h-gutter) / 2);
}
.claim {
  background-color: var(--rsb-050);
  padding: var(--h-gutter);
  color: var(--primary);
  text-wrap: balance;
}
.claim .section-eyebrow {
  color: var(--primary);
}
.claim__icon {
  width: 8rem;
  aspect-ratio: 1 / 1;
  margin-bottom: var(--h-gutter);
}
.claim__icon img {
  width: 100%;
  height: 100%;
}
.text-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--h-gutter) / 2);
}
.text-image__image {
  display: flex;
  justify-content: center;
}
.text-image__image img {
  width: 100%;
  height: auto;
  max-width: 48rem;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
  }
  .hero.page,
  .hero.single-job,
  .hero.single-project,
  .hero.single-press {
    min-height: 60vh;
  }
  .section-services .section-wrapper,
  .section-products .section-wrapper,
  .section-career-cta .section-wrapper {
    grid-template-columns: 1fr;
    gap: var(--v-gutter);
  }
  .services-swiper {
    display: none !important;
  }
  .section-services__mobile {
    display: block;
  }
  .section-services__mobile li + li {
    margin-top: 1.5rem;
  }
  .products-swiper .swiper-slide img {
    min-height: 40vh;
  }
  .section-slider-projects .swiper-slide img {
    max-height: 50vh;
  }
  .section-social-media .section-eyebrow,
  .section-jobs .section-eyebrow {
    margin-bottom: calc(var(--v-gutter) / 2);
  }
  .section-header.grid h2,
  .section-header.grid > div {
    grid-column-end: span 12;
  }
  .section-social-media .grid a {
    grid-column: span 6;
  }
  .section-header {
    margin-bottom: 2rem;
  }
  .section-header .section-eyebrow {
    margin-bottom: 2rem;
  }
  .section-jobs .job a,
  .section-search-results .section-search-results__item a {
    padding: 0.75rem 0;
    font-size: var(--text-sm);
    line-height: 1.25;
  }
  .section-jobs .job a {
    white-space: unset;
  }
  .section-jobs .job a span,
  .section-search-results .section-search-results__item a span {
    overflow: hidden;
    max-width: 90%;
  }
  .section-jobs .job:last-of-type,
  .section-search-results .section-search-results__item:last-of-type {
    margin-bottom: 0.75rem;
  }
  .section-jobs .job a svg,
  .section-search-results .section-search-results__item a svg {
    stroke-width: 1;
    opacity: 0.75;
    width: 1rem;
    height: 1rem;
    transform: translateX(0);
  }
  .testimonial.grid {
    row-gap: calc(var(--v-gutter) / 2);
  }
  .testimonial-text {
    font-size: var(--text-lg);
  }
  .testimonial-image {
    grid-column-end: span 12;
    overflow: hidden;
  }

  .testimonial-content {
    grid-column: 1 / span 12;
    display: flex;
    gap: 2rem;
  }

  .section-benefits .benefit-icon,
  .section-goals .goal-icon {
    width: 2rem;
    height: 2rem;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
  .section-contact-person .section-content {
    grid-template-columns: 1fr;
    gap: var(--v-gutter);
  }
  .section-contact-person .contact-person-content > div:last-child {
    display: none;
  }
  .section-contact-person .contact-person-image {
    grid-row-start: 1;
  }
  .section-contact-person .contact-person-image img {
    max-height: 40vh;
  }
  .section-job__intro > div:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .section-footer .grid {
    row-gap: var(--v-gutter);
  }
  .footer-info,
  .footer-nav {
    grid-column-end: span 12;
  }
  .footer-nav {
    column-count: 1;
    column-gap: calc(var(--h-gutter) / 2);
  }
  .service-projects {
    grid-template-columns: 1fr;
    gap: calc(var(--h-gutter) / 2);
  }
  .section-projects .grid {
    grid-template-columns: 1fr;
  }
  .directors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--h-gutter);
  }
  .section-job__keyfact,
  .section-project__keyfact {
    font-size: var(--text-base);
  }
  .date-item span svg {
    width: 1rem;
    height: 1rem;
  }
  .date-item {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  .section-sub-nav a {
    font-size: var(--text-sm);
    color: var(--primary);
    padding: 0.5rem 1rem;
    background-color: var(--rsb-050);
    white-space: nowrap;
    text-align: center;
  }
  .section-sub-nav {
    position: fixed;
    bottom: unset;
    left: 0;
    width: 100%;
    background-color: var(--rsb-050);
    border-top: unset;
    overflow: hidden;
    top: 3.05rem;
    border-bottom: 1px solid var(--rsb-200);
  }
  .history-swiper .swiper-slide {
    height: 60vh;
  }
  .history-event {
    padding: var(--h-gutter);
  }
  .history-event.has-image {
    grid-template-columns: 1fr;
  }
  .history-event__image {
    display: none;
  }
  .certificates {
    grid-template-columns: 1fr;
  }
  .section-partner .partners {
    grid-template-columns: 1fr;
  }
  .section-reviews .swiper-slide {
    grid-template-columns: 1fr;
    gap: 2rem;
    height: 100%;
  }
  .section-reviews .reviews-swiper {
    padding-top: 2rem;
  }
  .section-reviews .swiper-button-wrapper {
    margin-top: 2rem;
  }
  .section-reviews .quote {
    max-width: 100%;
  }
  .section-reviews .review-author {
    padding-top: 1rem;
  }
  .section-reviews .review-content {
    font-size: 1.25rem;
  }
  .text-image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--v-gutter);
  }
}

@media (max-width: 640px) {
  .header__logo {
    width: 4rem;
  }
  .mobile-header__inner {
    height: 3rem;
  }
  .content {
    padding-top: 3rem;
  }
  .products-swiper .swiper-slide img {
    min-height: 32vh;
  }
  html {
    scroll-padding-top: 4rem;
    scroll-margin-top: 4rem;
  }
  [job-data] ul li {
    margin-left: 1.55rem;
    padding-left: 0.75rem;
  }
  .contacts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--v-gutter);
  }
  .button {
    padding: 0.675rem 1rem;
    font-weight: 500;
    font-size: 16px;
  }
  .button svg {
    width: 1rem;
    height: 1rem;
  }
  .section-search-results .searchform input[type="submit"],
  .mobile-header__search .searchform input[type="submit"] {
    font-weight: 500;
  }
  .section-departments .departments {
    grid-template-columns: 1fr;
  }
  .department-contact__info {
    padding: 0.75rem 1rem;
  }
  .section-departments .department-contact:has(picture) {
    grid-template-columns: 1fr 1fr;
  }
  .section-benefits .benefits.grid,
  .section-goals .goals.grid {
    gap: calc(var(--v-gutter) * 0.75);
    grid-template-columns: 1fr;
  }
  .section-video-grid .video-grid {
    grid-template-columns: 1fr;
  }
  .section-benefits .benefit-text,
  .section-goals .goal-text {
    font-size: var(--text-sm);
    text-wrap: wrap;
  }
}

@media (max-width: 425px) {
  .directors {
    grid-template-columns: 1fr;
  }
  .date-item span svg {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

.nocaptcha a {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  text-decoration-thickness: 1px;
  color: var(--primary);
  display: inline-flex;
}

.nf-field-label .nf-label-span,
.nf-field-label label {
  font-weight: 400 !important;
  color: var(--primary);
  font-size: 14px;
  display: block;
}
.nf-after-field .nf-error-msg {
  font-size: 14px;
}

.text-wrapper * + .wp-caption {
  padding-top: 3rem;
}
.text-wrapper .wp-caption {
  width: 100% !important;
}
.text-wrapper .wp-caption img {
  width: 100% !important;
  height: auto !important;
}
.text-wrapper .wp-caption-text {
  font-size: var(--text-xs);
  color: var(--primary);
  margin-top: 0.5rem;
}
.text-wrapper a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--primary);
}
