@charset "UTF-8";
/* - Accrodion - */
/* - Background - */
/* - Canvas - */
/* - Card - */
/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/* - Cookie - */
/* - Cover Image -*/
/* - Footer - */
/* - Header - */
/* - Headline - */
/* - Inverse - */
/* - Link -*/
/* - List - */
/* - No Js Notice - */
/* -  Overriding - */
/* - Social Icon - */
/* - Slider - */
/* - Faces slider -*/
/* - Sticky -*/
/* - Statement - */
/* - Video - */
/* Webfont: BPTheinhardt-Bold */
@font-face {
  font-family: "BP Theinhardt";
  src: url("/assets/dist/BP-Theinhardt-Bold.90f76087.woff2");
  font-style: normal;
  font-weight: bold;
  font-display: block;
}
/* Webfont: BPTheinhardt-Regular */
@font-face {
  font-family: "BP Theinhardt";
  src: url("/assets/dist/BP-Theinhardt-Regular.491bb5f2.woff2");
  font-style: normal;
  font-weight: normal;
  font-display: block;
}
/* Font NB Architektur */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden; /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("/assets/dist/owl.video.play.a11c478b.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/* Use the __base-dir.scss
Global styles are imported here
A custom reset file can be added to override normalize
Typography (h1-6, p, a, blockquote, etc.) should be included
Globally defined tags (body, main, article, div, etc.) should also be included
One @import per line
The following files are imported as standard ready for customization:
    _reset.scss
    _typography.scss
Additional base stylesheets can be imported */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 1rem;
  hyphens: auto;
}
html:focus {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
ul,
ol,
dt {
  margin: 0;
}

body {
  min-height: 100dvh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul {
  list-style: none;
  padding-left: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
picture,
video {
  width: 100%;
  max-width: 100%;
  display: block;
  height: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

input {
  max-width: 100%;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

/* 
Use the __abstracts-dir.scss
Helper functions and non–output snippets only (font-face imports, reusable mixins, global variables, colors, etc.)
One @import per line
The following files are imported as standard ready for customization:
    _fonts.scss
    _mixins.scss
    _variables.scss
Abstracts should be grouped with an inline comment title
One abstract per line
C-style comments can be used to add context
Files with no data should not be removed */
/* - Accrodion - */
/* - Background - */
/* - Canvas - */
/* - Card - */
/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/* - Cookie - */
/* - Cover Image -*/
/* - Footer - */
/* - Header - */
/* - Headline - */
/* - Inverse - */
/* - Link -*/
/* - List - */
/* - No Js Notice - */
/* -  Overriding - */
/* - Social Icon - */
/* - Slider - */
/* - Faces slider -*/
/* - Sticky -*/
/* - Statement - */
/* - Video - */
/* 
Use the __abstracts-dir.scss
Helper functions and non–output snippets only (font-face imports, reusable mixins, global variables, colors, etc.)
One @import per line
The following files are imported as standard ready for customization:
    _fonts.scss
    _mixins.scss
    _variables.scss
Abstracts should be grouped with an inline comment title
One abstract per line
C-style comments can be used to add context
Files with no data should not be removed */
html {
  font-size: 1rem;
  font-style: 400;
  font-family: "BP Theinhardt";
  scroll-padding-top: 3.125rem;
  overflow: auto;
  scroll-behavior: smooth;
}
@media (min-width: 64rem) {
  html {
    scroll-padding-top: 6.25rem;
  }
  .tablet html {
    scroll-padding-top: 3.125rem;
  }
}

.bb-container {
  padding-inline: 1rem;
  max-width: 90rem;
  margin-inline: auto;
}
@media (min-width: 40rem) {
  .bb-container {
    padding-inline: 1.5rem;
  }
}

.bb-page__title {
  letter-spacing: 0.08px;
  font-size: 1.375rem;
  line-height: 1.625rem;
}
@media (min-width: 40rem) {
  .bb-page__title {
    letter-spacing: 0.13px;
    font-size: 1.875rem;
    line-height: 1.875rem;
  }
}
@media (min-width: 64rem) {
  .bb-page__title {
    font-size: 3.75rem;
    line-height: 3.75rem;
  }
}
@media (min-width: 75rem) {
  .bb-page__title {
    font-size: 5rem;
    line-height: 5.375rem;
  }
}

@media (max-width: 63.94rem) {
  body {
    padding-top: 3.125rem;
  }
}
@media (min-width: 64rem) {
  .tablet body {
    padding-top: 3.125rem;
  }
}

body .bb-consentbanner-footer .bb-consentbanner-buttons .bb-button.bb-btn--typeP {
  background: #2F6FC7;
}
body .bb-consentbanner-footer .bb-consentbanner-buttons .bb-button.bb-btn--typeP:hover {
  background: #05DCF8;
}
body .bb-consentbanner-footer .bb-consentbanner-buttons .bb-button.bb-btn--typeS {
  color: #000;
}
body .bb-consentbanner-footer .bb-consentbanner-buttons .bb-button.bb-btn--typeS:hover {
  color: #05DCF8;
}
body .bb-consentbanner-footer .bb-consentbanner--link {
  color: #004e00;
}
body .bb-consentbanner-footer .bb-consentbanner--link:hover {
  color: #05DCF8;
}

.bb-consentbanner-content .bb-control-label {
  color: #000;
}

body .bb-consentbanner-button.bb-widget {
  background-color: #269d70;
  border: 2px solid #269d70;
}
body .bb-consentbanner-button.bb-widget:hover {
  background-color: #05DCF8;
  border-color: #05DCF8;
}
body .bb-consentbanner-content .bb-control-checkbox input:checked + .bb-toggle,
body .bb-consentbanner-placeholder .bb-control-checkbox input:checked + .bb-toggle {
  background-color: #05DCF8;
}
body .bb-consentbanner-placeholder {
  border-color: #004e00;
}

/* 
Use the __abstracts-dir.scss
Helper functions and non–output snippets only (font-face imports, reusable mixins, global variables, colors, etc.)
One @import per line
The following files are imported as standard ready for customization:
    _fonts.scss
    _mixins.scss
    _variables.scss
Abstracts should be grouped with an inline comment title
One abstract per line
C-style comments can be used to add context
Files with no data should not be removed */
/* - Accrodion - */
/* - Background - */
/* - Canvas - */
/* - Card - */
/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/* - Cookie - */
/* - Cover Image -*/
/* - Footer - */
/* - Header - */
/* - Headline - */
/* - Inverse - */
/* - Link -*/
/* - List - */
/* - No Js Notice - */
/* -  Overriding - */
/* - Social Icon - */
/* - Slider - */
/* - Faces slider -*/
/* - Sticky -*/
/* - Statement - */
/* - Video - */
/* 
Use the __abstracts-dir.scss
Helper functions and non–output snippets only (font-face imports, reusable mixins, global variables, colors, etc.)
One @import per line
The following files are imported as standard ready for customization:
    _fonts.scss
    _mixins.scss
    _variables.scss
Abstracts should be grouped with an inline comment title
One abstract per line
C-style comments can be used to add context
Files with no data should not be removed */
body {
  letter-spacing: 0.48px;
  font-size: 1rem;
}
@media (min-width: 40rem) {
  body {
    font-size: 1.125rem;
    letter-spacing: 0.6px;
  }
}

p {
  line-height: 1.375rem;
}
@media (min-width: 40rem) {
  p {
    line-height: 1.5rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #269d70;
}

/* 
Use the __abstracts-dir.scss
Helper functions and non–output snippets only (font-face imports, reusable mixins, global variables, colors, etc.)
One @import per line
The following files are imported as standard ready for customization:
    _fonts.scss
    _mixins.scss
    _variables.scss
Abstracts should be grouped with an inline comment title
One abstract per line
C-style comments can be used to add context
Files with no data should not be removed */
/* - Accrodion - */
/* - Background - */
/* - Canvas - */
/* - Card - */
/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/* - Cookie - */
/* - Cover Image -*/
/* - Footer - */
/* - Header - */
/* - Headline - */
/* - Inverse - */
/* - Link -*/
/* - List - */
/* - No Js Notice - */
/* -  Overriding - */
/* - Social Icon - */
/* - Slider - */
/* - Faces slider -*/
/* - Sticky -*/
/* - Statement - */
/* - Video - */
/* 
Use the __abstracts-dir.scss
Helper functions and non–output snippets only (font-face imports, reusable mixins, global variables, colors, etc.)
One @import per line
The following files are imported as standard ready for customization:
    _fonts.scss
    _mixins.scss
    _variables.scss
Abstracts should be grouped with an inline comment title
One abstract per line
C-style comments can be used to add context
Files with no data should not be removed */
.bb-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 3.125rem;
  z-index: 99;
  background: #fff;
}

@media (min-width: 64rem) {
  .bb-header {
    height: 6.25rem;
    padding-top: 0.625rem;
  }
  .no-js .bb-header {
    background: #fff;
  }
  .bb-page .bb-header {
    position: relative;
  }
  .bb-page .bb-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation-name: subpage-sticky-animation;
    animation-duration: 1s;
    animation-iteration-count: initial;
  }
  .bb-page .bb-header.is-sticky + .bb-main {
    margin-top: 6.25rem;
  }
  .tablet .bb-page .bb-header {
    position: fixed;
  }
  .tablet .bb-header {
    height: 3.125rem;
    padding-top: 0;
  }
  .bb-header.is-sticky {
    background: #fff;
    animation-name: sticky-animation;
    animation-duration: 1s;
    animation-iteration-count: initial;
  }
}
.bb-header--inner {
  position: relative;
  padding-right: 3.125rem;
}

.bb-header--logo {
  display: block;
}

.bb-header--nav {
  display: none;
  margin-top: -0.25rem;
}

@media (min-width: 64rem) {
  .bb-header--nav {
    display: block;
  }
  .tablet .bb-header--nav {
    display: none;
  }
}
.bb-header--nav-lang {
  display: none;
}

@media (min-width: 64rem) {
  .bb-header--nav-lang {
    display: inline-block;
    position: absolute;
    right: 1rem;
    top: 0.625rem;
  }
  .tablet .bb-header--nav-lang {
    display: none;
  }
}
.bb-header .bb-container {
  position: relative;
}

@keyframes sticky-animation {
  0% {
    background: rgba(255, 255, 255, 0);
  }
  100% {
    background: rgb(255, 255, 255);
  }
}
@keyframes subpage-sticky-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bb-canvas {
  top: 3.125rem;
  left: 0;
  transform: translateX(-100%);
  transition: transform 300ms ease-in-out;
  position: fixed;
  bottom: 0;
  width: 18.75rem;
  background-color: #fff;
}

.bb-canvas.is-open {
  transform: translateX(0);
}

.bb-canvas--button {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  background: #fff;
  width: 3.125rem;
  height: 3.125rem;
}

@media (min-width: 40rem) {
  .bb-canvas--button {
    right: 0.438rem;
  }
}
.bb-canvas--button__bar {
  position: relative;
}

.bb-canvas--button__bar:before, .bb-canvas--button__bar:after {
  content: "";
  position: absolute;
  left: 0;
}

.bb-canvas--button__bar:before {
  top: -0.625rem;
}

.bb-canvas--button__bar:after {
  bottom: -0.625rem;
}

.bb-canvas--button__bar, .bb-canvas--button__bar:before, .bb-canvas--button__bar:after {
  display: inline-block;
  height: 0.25rem;
  width: 2.125rem;
  background: #004e00;
  border-radius: 0.188rem;
}

.bb-canvas--button__label {
  display: none;
}

.bb-canvas--nav .bb-nav--list, .bb-canvas--nav-lang .bb-nav--list {
  margin: 0;
}

.bb-canvas--nav .bb-nav--item {
  display: block;
}

.bb-canvas--nav .bb-nav--link {
  padding: 0.75rem 1rem;
  display: block;
  margin: 0;
}

.bb-canvas--nav-lang .bb-nav--list {
  padding: 0.75rem 1rem;
}

.bb-canvas--nav-lang .bb-nav--list .bb-nav--item:before {
  font-size: 1.125rem;
}

.bb-nav {
  margin-left: 0;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.bb-nav--list {
  margin: 0 -0.5rem;
}

.bb-nav--item {
  display: inline-block;
}

.bb-nav--lang .bb-nav--item:not(:last-child) {
  position: relative;
  padding-right: 1rem;
}

.bb-nav--lang .bb-nav--item:not(:last-child):before {
  font-size: 1.25rem;
  position: absolute;
  content: "/";
  display: inline-block;
  right: 0;
  top: 0;
  color: #004e00;
}

.bb-nav--link, .bb-nav--span {
  position: relative;
  margin-inline: 0.5rem;
  color: #004e00;
  font-size: 1.25rem;
  text-transform: lowercase;
}

.bb-nav--link:hover, .bb-nav--span:hover {
  color: #05DCF8;
}

.bb-nav--lang {
  margin-inline: 0;
}

.bb-nav--lang .bb-nav--link {
  margin-inline: 0;
}

.bb-nav--lang .bb-nav-item--active .bb-nav--link {
  color: #05DCF8;
}

@media (min-width: 64rem) {
  .bb-nav--lang .bb-nav-item--active .bb-nav--link:not(.is-sticky .bb-nav--lang .bb-nav-item--active .bb-nav--link) {
    color: #05DCF8;
  }
}
.bb-footer {
  background-color: #004e00;
  color: #fff;
  padding-block: 5.188rem 2.813rem;
  margin-top: 9.375rem;
}

.bb-footer--top {
  padding-top: 0.625rem;
  margin-bottom: 0.938rem;
}

.bb-footer__rte {
  margin-bottom: 4.375rem;
}

.bb-footer__rte p {
  font-weight: 700;
  letter-spacing: 0.08px;
  font-size: 50px;
  line-height: 55px;
}

@media (min-width: 64rem) {
  .bb-footer__rte p {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (min-width: 75rem) {
  .bb-footer__rte p {
    font-size: 80px;
    line-height: 86px;
  }
}
.bb-footer__rte strong {
  color: #B7FAB7;
}

@media (min-width: 40rem) {
  .bb-footer--nav {
    display: flex;
  }
}
.bb-footer--nav .bb-nav {
  margin: 0 -0.5rem;
}

.bb-footer--nav .bb-nav--link, .bb-footer--nav .bb-nav--span {
  color: #fff;
  letter-spacing: 0.48px;
  font-size: 1rem;
}

@media (min-width: 40rem) {
  .bb-footer--nav .bb-nav--link, .bb-footer--nav .bb-nav--span {
    font-size: 1.125rem;
    letter-spacing: 0.6px;
  }
}
.bb-footer--nav .bb-nav--link:hover, .bb-footer--nav .bb-nav--span:hover {
  color: #05DCF8;
}

.bb-footer--nav .bb-nav--span {
  color: #05DCF8;
}

.bb-footer--lower {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 0.625rem;
  margin-top: 6.563rem;
}

.bb-footer--lower p {
  margin-bottom: 0;
}

@media (min-width: 64rem) {
  .bb-footer .bb-rte {
    width: 100%;
  }
}
@media (max-width: 39.94rem) {
  .bb-footer .bb-copyright {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }
}
.bb-block--blog, .bb-block--reference, .bb-block--news {
  margin-block: 9.375rem;
}

.bb-block--projects, .bb-block--expertise, .bb-block--services {
  margin-block: 9.375rem 6.25rem;
}

.bb-block--back-button {
  margin-block: 1.563rem 3.125rem;
}

.bb-block--back-button + .bb-block--textarea + .bb-block--textarea-bg {
  margin-top: 1.563rem;
}

.bb-block--facts {
  margin-top: 1rem;
}

.bb-block--textarea + .bb-block--textarea-bg {
  margin-top: 9.375rem;
}

.bb-block--textarea + .bb-block--content-image {
  margin-top: 9.375rem;
}

.bb-block--textarea + .bb-block--mosaic {
  margin-top: 3.125rem;
}

.bb-block--textarea + .bb-block--accordion {
  margin-top: 3.125rem;
}

.bb-block--textarea-bg {
  margin-bottom: 3.125rem;
}

.bb-block--textarea-bg + .bb-block--textarea-bg,
.bb-block--textarea-bg + .bb-block--hero {
  margin-top: -3.125rem;
}

.bb-block--textarea-bg + .bb-block--hero {
  margin-bottom: 9.375rem;
}

.bb-block--textarea-bg + .bb-block--textarea {
  margin-top: 3.125rem;
}

.bb-block--content-image + .bb-block--textarea {
  margin-top: 3.125rem;
}

.bb-block--content-image img {
  height: 100%;
}

@media (min-width: 64rem) {
  .bb-block--content-image-title .bb-container {
    position: relative;
  }
}
.bb-block--content-image-title .bb-page__title-wrapper {
  padding: 0 0.125rem 1rem;
}

@media (min-width: 64rem) {
  .bb-block--content-image-title .bb-page__title-wrapper {
    padding: 2.25rem 1.125rem;
    background-color: #fff;
    position: absolute;
    bottom: 4rem;
    left: 5.5rem;
  }
}
.bb-block--accordion + .bb-block--textarea,
.bb-block--accordion + .bb-block--mosaic {
  margin-top: 6.25rem;
}

.bb-block--mosaic + .bb-block--mosaic {
  margin-top: 1rem;
}

.bb-block--mosaic + .bb-block--textarea {
  margin-top: 3.125rem;
}

.bb-block--mosaic + .bb-block--accordion {
  margin-top: 6.25rem;
}

@media (min-width: 64rem) {
  .bb-rte {
    width: 80%;
  }
}
.bb-rte > * {
  margin-bottom: 1rem;
}

.bb-rte > *:last-child {
  margin-bottom: 0;
}

.bb-rte h1 {
  letter-spacing: 0.08px;
  font-size: 50px;
  line-height: 55px;
}

@media (min-width: 64rem) {
  .bb-rte h1 {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (min-width: 75rem) {
  .bb-rte h1 {
    font-size: 80px;
    line-height: 86px;
  }
}
.bb-rte h2 {
  font-size: 36px;
  letter-spacing: 1.08px;
  line-height: 40px;
}

@media (min-width: 64rem) {
  .bb-rte h2 {
    font-size: 55px;
    font-weight: 700;
    line-height: 68px;
    letter-spacing: 2.2px;
  }
}
.bb-rte h3 {
  font-size: 1.5rem;
  letter-spacing: 0.3px;
  line-height: 30px;
}

@media (min-width: 64rem) {
  .bb-rte h3 {
    font-size: 36px;
    letter-spacing: 1.08px;
    line-height: 34px;
  }
}
.bb-rte h1, .bb-rte h2, .bb-rte h3 {
  margin: 0;
}

.bb-rte h1 + h2,
.bb-rte h1 + h3,
.bb-rte h2 + h3 {
  margin-top: 1.563rem;
}

.bb-rte strong {
  color: #269d70;
}

/* 
Use the __abstracts-dir.scss
Helper functions and non–output snippets only (font-face imports, reusable mixins, global variables, colors, etc.)
One @import per line
The following files are imported as standard ready for customization:
    _fonts.scss
    _mixins.scss
    _variables.scss
Abstracts should be grouped with an inline comment title
One abstract per line
C-style comments can be used to add context
Files with no data should not be removed */
/* - Accrodion - */
/* - Background - */
/* - Canvas - */
/* - Card - */
/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/* - Cookie - */
/* - Cover Image -*/
/* - Footer - */
/* - Header - */
/* - Headline - */
/* - Inverse - */
/* - Link -*/
/* - List - */
/* - No Js Notice - */
/* -  Overriding - */
/* - Social Icon - */
/* - Slider - */
/* - Faces slider -*/
/* - Sticky -*/
/* - Statement - */
/* - Video - */
/* 
Use the __abstracts-dir.scss
Helper functions and non–output snippets only (font-face imports, reusable mixins, global variables, colors, etc.)
One @import per line
The following files are imported as standard ready for customization:
    _fonts.scss
    _mixins.scss
    _variables.scss
Abstracts should be grouped with an inline comment title
One abstract per line
C-style comments can be used to add context
Files with no data should not be removed */
.bb-logo {
  background-image: url("/assets/dist/logo.5e527c02.svg");
  margin: 0;
  text-align: center;
  width: 20.938rem;
  height: 3.125rem;
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  max-width: calc(100% - 3.125rem);
}

@media (min-width: 40rem) {
  .bb-logo {
    width: 25rem;
  }
}
.bb-logo--label {
  font-size: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.bb-logo--name {
  display: none;
}

.bb-hero {
  background-position: center;
  background-size: cover;
}

@media (max-width: 63.94rem) {
  .bb-hero {
    aspect-ratio: 16/9;
  }
}
@media (min-width: 64rem) {
  .bb-hero {
    height: 50.625rem;
  }
}
.bb-hero video {
  object-fit: cover;
  background-position: center;
  height: 100%;
}

.bb-hero .bb-youtube__wrapper,
.bb-hero .bb-youtube {
  height: 100%;
}

.bb-hero .bb-container {
  height: 100%;
  padding-block: 3.75rem;
}

@media (min-width: 64rem) {
  .bb-hero .bb-container {
    padding-block: 10rem;
  }
}
.bb-hero__text {
  padding: 1.25rem 0.938rem 2.5rem;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bb-hero__text > * {
  letter-spacing: 0.08px;
  font-size: 50px;
  line-height: 55px;
  color: #fff;
}

@media (min-width: 64rem) {
  .bb-hero__text > * {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (min-width: 75rem) {
  .bb-hero__text > * {
    font-size: 80px;
    line-height: 86px;
  }
}
.bb-textarea_bg {
  padding-block: 5rem;
}

.bb-textarea_bg h2, .bb-textarea_bg h3, .bb-textarea_bg p {
  font-weight: 700;
  margin: 0;
}

.bb-textarea_bg h2, .bb-textarea_bg h3 {
  font-size: 36px;
  letter-spacing: 1.08px;
  line-height: 40px;
  color: var(--headline-color);
}

@media (min-width: 64rem) {
  .bb-textarea_bg h2, .bb-textarea_bg h3 {
    font-size: 55px;
    font-weight: 700;
    line-height: 68px;
    letter-spacing: 2.2px;
  }
}
.bb-textarea_bg p {
  font-size: 1.5rem;
  letter-spacing: 0.3px;
  line-height: 30px;
}

@media (min-width: 64rem) {
  .bb-textarea_bg p {
    font-size: 36px;
    letter-spacing: 1.08px;
    line-height: 34px;
  }
}
@media (min-width: 64rem) {
  .bb-textarea_bg .bb-rte {
    width: 100%;
  }
}
.bb-textarea-video .bb-video__wrapper {
  margin-block: 3.125rem;
}

.bb-textarea-video .bb-consentbanner-placeholder {
  aspect-ratio: 16/9;
}

.bb-services__grid {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -0.5rem;
  row-gap: 2rem;
  margin-top: 6.25rem;
}

.bb-services__grid-item {
  width: calc(50% - 1rem);
  margin-inline: 0.5rem;
}

@media (min-width: 40rem) {
  .bb-services__grid-item {
    width: calc(33.33333% - 1rem);
  }
}
.bb-service-card {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
}

.bb-service-card:hover .bb-service-card__media {
  position: relative;
}

.bb-service-card:hover .bb-service-card__media:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: inline-block;
  border-radius: 50%;
  background-color: #05DCF8;
}

.bb-service-card:hover .bb-service-card__title {
  color: #05DCF8;
}

.bb-service-card__title {
  font-size: 22px;
  letter-spacing: 0.3px;
  line-height: 28px;
}

@media (min-width: 64rem) {
  .bb-service-card__title {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: 0.812px;
  }
}
.bb-service-card__media {
  max-width: 12.5rem;
  width: 80%;
}

.bb-expertise {
  padding-block: 0.625rem;
}

.bb-expertise__list {
  margin-top: 1.563rem;
}

.bb-expertise__list-item:nth-child(odd) {
  background-color: rgba(38, 157, 112, 0.1);
}

.bb-expertise__title {
  font-size: 22px;
  letter-spacing: 0.3px;
  line-height: 28px;
}

@media (min-width: 64rem) {
  .bb-expertise__title {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: 0.812px;
  }
}
@media (min-width: 64rem) {
  .bb-expertise__intro {
    width: 75%;
  }
}
.bb-expertise__intro strong {
  color: #269d70;
}

.bb-expertise__link {
  color: #2F6FC7;
}

.bb-expertise__link:hover {
  color: #05DCF8;
}

.bb-cards {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -0.5rem;
  row-gap: 1rem;
  margin-top: 1.563rem;
}

.bb-cards__item {
  width: calc(100% - 1rem);
  margin-inline: 0.5rem;
}

@media (min-width: 40rem) {
  .bb-cards__item {
    width: calc(33.33333% - 1rem);
  }
}
.bb-card {
  display: flex;
  flex-direction: column;
}

.bb-card:hover .bb-card__media {
  position: relative;
}

.bb-card:hover .bb-card__media:before {
  position: absolute;
  content: "";
  display: inline-block;
  background-color: rgba(5, 220, 248, 0.7);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.bb-card:hover .bb-card__title,
.bb-card:hover .bb-card__intro {
  color: #05DCF8;
}

.bb-card__title, .bb-card__intro {
  font-size: 22px;
  letter-spacing: 0.3px;
  line-height: 28px;
}

@media (min-width: 64rem) {
  .bb-card__title, .bb-card__intro {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: 0.812px;
  }
}
.bb-card__media {
  order: -1;
  margin-bottom: 2rem;
}

.bb-card--alt {
  position: relative;
  overflow: hidden;
}

.bb-card--alt:hover .bb-card__body {
  bottom: 0 !important;
}

.bb-card--alt:hover .bb-card__title,
.bb-card--alt:hover .bb-card__intro {
  color: #fff;
}

.bb-card--alt .bb-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 0.625rem 0.375rem;
  background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.47) 47%, #110811);
  transition: bottom 0.3s linear;
}

.bb-card--alt .bb-card__title, .bb-card--alt .bb-card__intro {
  color: #fff;
}

.bb-card--alt .bb-card__title {
  letter-spacing: 0.48px;
  font-size: 1rem;
  line-height: 1.375rem;
  color: #fff;
}

@media (min-width: 40rem) {
  .bb-card--alt .bb-card__title {
    letter-spacing: 0.6px;
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}
.bb-card--alt .bb-card__intro {
  letter-spacing: 0.74px;
  font-size: 0.75rem;
  line-height: 1rem;
}

.bb-card--alt .bb-card__media {
  margin-bottom: 0;
}

.bb-facts h2, .bb-facts h3, .bb-facts p {
  display: inline;
  font-size: 22px;
  letter-spacing: 0.3px;
  line-height: 28px;
  color: #004e00;
}

@media (min-width: 64rem) {
  .bb-facts h2, .bb-facts h3, .bb-facts p {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: 0.812px;
  }
}
.bb-facts p {
  font-weight: 700;
}

.bb-button {
  background-color: #000;
  color: #fff;
  padding: 0.25rem 1.625rem;
  border-radius: 0.25rem;
}

.bb-button:hover {
  background-color: #05DCF8;
}

.bb-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "big";
  gap: 1rem;
}

.bb-mosaic--2, .bb-mosaic--3, .bb-mosaic--4 {
  grid-template-columns: 2fr 1fr;
}

.bb-mosaic--2.bb-mosaic--reverse, .bb-mosaic--3.bb-mosaic--reverse, .bb-mosaic--4.bb-mosaic--reverse {
  grid-template-columns: 1fr 2fr;
}

.bb-mosaic--2 {
  grid-template-areas: "big top";
}

.bb-mosaic--2.bb-mosaic--reverse {
  grid-template-areas: "top big";
}

.bb-mosaic--3 {
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "big top" "big middle";
}

.bb-mosaic--3.bb-mosaic--reverse {
  grid-template-areas: "top big" "middle big";
}

.bb-mosaic--4 {
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-areas: "big top" "big middle" "big bottom";
}

.bb-mosaic--4.bb-mosaic--reverse {
  grid-template-areas: "top big" "middle big" "bottom big";
}

.bb-mosaic .bb-media {
  margin: 0;
}

.bb-mosaic .bb-media figure {
  height: 100%;
  width: 100%;
}

.bb-mosaic .bb-media--big {
  grid-area: big;
}

.bb-mosaic .bb-media--top {
  grid-area: top;
}

.bb-mosaic .bb-media--middle {
  grid-area: middle;
}

.bb-mosaic .bb-media--bottom {
  grid-area: bottom;
}

.bb-mosaic .bb-media img {
  height: 100%;
  object-fit: cover;
}

.bb-accordion {
  position: relative;
}

.bb-accordion__label {
  font-size: 1.063rem;
  line-height: 1.25rem;
  letter-spacing: 0.34px;
  font-weight: 700;
  color: #2F6FC7;
  display: block;
  margin-top: 1rem;
}

.bb-accordion__label:hover {
  color: #05DCF8;
}

.bb-accordion__cb {
  position: absolute;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
}

.bb-accordion__cb ~ .bb-rte,
.bb-accordion__cb ~ .bb-rte + .bb-accordion__label {
  display: none;
}

.bb-accordion__cb ~ .bb-rte {
  margin-top: 1.5rem;
}

@media (min-width: 40rem) {
  .bb-accordion__cb ~ .bb-rte {
    margin-top: 2.25rem;
  }
}
.bb-accordion__cb:checked + .bb-accordion__label {
  display: none;
}

.bb-accordion__cb:checked ~ .bb-rte,
.bb-accordion__cb:checked ~ .bb-rte + .bb-accordion__label {
  display: block;
}

.bb-slider {
  background-color: #000;
}

@media (min-width: 64rem) {
  .bb-slider {
    margin-bottom: 0;
  }
}
.bb-slider__media {
  width: 100%;
  height: 100%;
  aspect-ratio: 19/8;
}

.bb-slider__media img {
  object-fit: cover;
  height: 100%;
}

.bb-slider .owl-stage {
  background-color: #004e00;
}

@media (min-width: 64rem) {
  .bb-slider .owl-stage {
    background-color: transparent;
  }
}
.bb-slider .owl-stage-outer {
  overflow: hidden;
}

.bb-slider .owl-dots {
  background: transparent;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.bb-slider .owl-dots .owl-dot > span {
  height: 0.75rem;
  width: 0.75rem;
  background-color: #fff;
}

.bb-slider .owl-dots .owl-dot:hover > span {
  background-color: #05DCF8;
}

.bb-slider .owl-dots .owl-dot.active > span {
  background-color: #269d70;
}

.bb-slider--partners {
  background-color: #004e00;
}

.bb-slider--partners .bb-slider__item {
  display: flex;
  justify-content: center;
}

.bb-slider--partners .bb-slider__media {
  max-width: 200px;
  aspect-ratio: auto;
  background-color: #004e00;
  border-radius: 50%;
  overflow: hidden;
}

.bb-slider--partners .owl-stage {
  background-color: #004e00;
}

.bb-slider--partners .owl-stage .active .bb-slider__media {
  display: flex;
  justify-content: center;
}

.bb-slider--partners img {
  width: 200px;
  max-width: 200px;
}

.bb-image--lightbox {
  display: inline-block;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.bb-image--lightbox img {
  transition: transform 2s ease;
}

.bb-image--lightbox:hover img {
  transform: scale(1.1);
}

#imagelightbox {
  z-index: 9999;
  cursor: pointer;
  opacity: 0;
  -ms-touch-action: none;
  touch-action: none;
}

#imagelightbox-loading {
  position: fixed;
  z-index: 10003;
  top: 50%;
  left: 50%;
  margin-left: -1.875rem;
  margin-top: -1.875rem;
}

#imagelightbox-loading div {
  height: 60px;
  width: 60px;
  margin: 0 auto;
  position: relative;
  -webkit-animation: rotation 1.5s infinite linear;
  animation: rotation 1.5s infinite linear;
  border-left: 6px solid #004300;
  border-right: 6px solid rgba(0, 67, 0, 0.3);
  border-bottom: 6px solid rgba(0, 67, 0, 0.3);
  border-top: 6px solid rgba(0, 67, 0, 0.3);
  border-radius: 100%;
}

#imagelightbox-overlay {
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #bbbbbb;
}

#imagelightbox-close {
  position: fixed;
  z-index: 10009;
  right: 10px;
  top: 10px;
  height: 25px;
  width: 25px;
  background-color: #269d70;
  border-radius: 50%;
  text-align: left;
  text-indent: -9999px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  border: none;
}

#imagelightbox-close:hover {
  background-color: #05dcf8;
}

#imagelightbox-close:hover:after, #imagelightbox-close:hover:before {
  background-color: #ffffff;
}

#imagelightbox-close:after, #imagelightbox-close:before {
  width: 2px;
  background-color: #ffffff;
  content: "";
  position: absolute;
  top: 20%;
  bottom: 20%;
  left: 50%;
  margin-left: -1px;
}

#imagelightbox-close:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#imagelightbox-close:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#imagelightbox-caption {
  bottom: 0;
  left: 0;
  position: fixed;
  z-index: 50000;
  padding: 10px;
  display: inline-block;
  width: 100%;
  color: #ffffff;
  text-align: center;
}

.imagelightbox-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  max-width: 100%;
}

.imagelightbox-arrow {
  width: 4em;
  height: 4em;
  background-color: #269d70;
  vertical-align: middle;
  position: fixed;
  z-index: 1000100;
  top: 50%;
  margin-top: -1.75em;
  border: none;
  cursor: pointer;
  border-radius: 4em;
}

.imagelightbox-arrow:focus, .imagelightbox-arrow:hover {
  background-color: #05dcf8;
  outline: 0;
  border-top: 0.063rem solid #269d70;
  border-bottom: 0.063rem solid #269d70;
}

.imagelightbox-arrow:active {
  outline: 0;
}

.imagelightbox-arrow:before {
  width: 0;
  height: 0;
  border: 0.75em solid transparent;
  content: "";
  display: inline-block;
  margin-bottom: -0.3em;
}

.imagelightbox-arrow-left {
  left: 2em;
}

.imagelightbox-arrow-left:before {
  border-left: none;
  border-right-color: #ffffff;
  margin-left: -0.5em;
}

.imagelightbox-arrow-right {
  right: 2em;
}

.imagelightbox-arrow-right:before {
  border-right: none;
  border-left-color: #ffffff;
  margin-right: -0.5em;
}

[data-whatintent=touch] .imagelightbox-arrow {
  display: none !important;
}

#imagelightbox-caption, #imagelightbox-close, #imagelightbox-loading, #imagelightbox-nav, #imagelightbox-overlay, #imagelightbox-arrow {
  -webkit-animation: fade-in 0.25s linear;
  animation: fade-in 0.25s linear;
}

.lightbox-caption {
  margin: 0 auto;
  max-width: 980px;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@media only screen and (min-width: 960px) {
  #imagelightbox-close {
    top: 30px;
    right: 30px;
    height: 30px;
    width: 30px;
  }
}
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  to {
    opacity: 1;
  }
}
@media only screen and (max-width: 41.25em) {
  #imagelightbox-close {
    top: 2em;
    right: 2em;
  }
  #imagelightbox-nav {
    bottom: 1.25em;
  }
  .imagelightbox-arrow {
    width: 2.5em;
    height: 2.5em;
  }
  .imagelightbox-arrow-left {
    left: 1.25em;
  }
  .imagelightbox-arrow-right {
    right: 1.25em;
  }
}
@media only screen and (max-width: 20em) {
  .imagelightbox-arrow-left {
    left: 0;
  }
  .imagelightbox-arrow-right {
    right: 0;
  }
}
@media only screen and (min-width: 660px) {
  .imagelightbox-arrow:before {
    border: 1em solid transparent;
  }
  .imagelightbox-arrow-left:before {
    border-left: none;
    border-right-color: #ffffff;
  }
  .imagelightbox-arrow-right:before {
    border-right: none;
    border-left-color: #ffffff;
  }
  .imagelightbox-arrow-left:hover:before {
    border-right-color: #ffffff;
  }
  .imagelightbox-arrow-right:hover:before {
    border-left-color: #ffffff;
  }
}
.bb-youtube {
  border: 0.125rem solid #269d70;
  display: flex;
}

.bb-youtube__poster,
.bb-youtube iframe {
  aspect-ratio: 16/9;
  width: 100%;
}

.bb-youtube iframe {
  border: none;
}

.bb-youtube__poster {
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  place-items: center;
  cursor: pointer;
  background-size: cover;
}

.bb-youtube__poster:hover .bb-youtube__play {
  background-color: #05DCF8;
}

.bb-youtube__poster:hover .bb-youtube__play::before {
  border-left-color: #fff;
}

.bb-youtube__play {
  border-radius: 50%;
  width: 4.375rem;
  height: 4.375rem;
  border: none;
  background-color: #fff;
  margin: 0;
  padding: 0;
  position: relative;
}

.bb-youtube__play:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  content: "";
  display: inline-block;
  border-top: 1rem solid transparent;
  border-left: 1.5rem solid #269d70;
  border-bottom: 1rem solid transparent;
}

.bb-youtube__wrapper {
  background-color: #269d70;
}

.bb-youtube__wrapper .bb-consentbanner-placeholder-headline {
  color: #B7FAB7;
}

.bb-youtube__wrapper .bb-title {
  margin-bottom: 1rem;
  font-weight: 1.5rem;
}

.bb-service-menu {
  margin-block: 1.563rem 3.125rem;
  position: relative;
}

.bb-service-menu__cb {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

@media (min-width: 64rem) {
  .bb-service-menu__cb {
    display: none;
  }
}
@media (max-width: 63.94rem) {
  .bb-service-menu__cb:checked ~ .bb-service-menu__list {
    display: block;
  }
}
@media (max-width: 63.94rem) {
  .bb-service-menu__cb:checked ~ .bb-service-menu__list .is-active {
    display: none;
  }
}
@media (max-width: 63.94rem) {
  .bb-service-menu__list {
    background-color: #202245;
    display: none;
    position: absolute;
    top: 2.875rem;
    left: 0;
    right: 0;
    max-height: 10rem;
    overflow: auto;
  }
}
@media (min-width: 64rem) {
  .bb-service-menu__list {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }
}
.bb-service-menu__link {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 0.5rem;
}

@media (max-width: 63.94rem) {
  .bb-service-menu__link {
    padding: 0.625rem 0.75rem;
    color: #269d70;
  }
}
@media (min-width: 64rem) {
  .bb-service-menu__link {
    justify-content: center;
  }
}
@media (max-width: 63.94rem) {
  .bb-service-menu__link:hover, .is-active .bb-service-menu__link {
    color: #05DCF8;
  }
}
@media (max-width: 63.94rem) {
  .bb-service-menu__link:hover .bb-service-menu__icon, .is-active .bb-service-menu__link .bb-service-menu__icon {
    position: relative;
  }
}
@media (max-width: 63.94rem) {
  .bb-service-menu__link:hover .bb-service-menu__icon:before, .is-active .bb-service-menu__link .bb-service-menu__icon:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: inline-block;
    border-radius: 50%;
    background-color: #05DCF8;
  }
}
@media (min-width: 64rem) {
  .bb-service-menu__link:hover, .is-active .bb-service-menu__link {
    color: #269d70;
    opacity: 1;
  }
}
@media (min-width: 64rem) {
  .bb-service-menu__link:not(.is-active .bb-service-menu__link) {
    opacity: 0.4;
  }
}
.bb-service-menu__icon {
  min-width: 1.625rem;
  width: 1.625rem;
}

.bb-service-menu__title {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bb-service-menu__select {
  background-color: #202245;
  padding: 0.625rem 3rem 0.625rem 0.75rem;
  position: relative;
  cursor: pointer;
}

@media (min-width: 64rem) {
  .bb-service-menu__select {
    display: none;
  }
}
.bb-service-menu__select:after {
  background-image: url("/assets/dist/arrow-down.68aeb49b.svg");
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  height: 1.25rem;
  position: absolute;
  right: 0.563rem;
  top: 0.8125rem;
  width: 1.75rem;
}

.bb-news__list, .bb-news__latest {
  margin-top: 1.563rem;
}

.bb-news__list {
  display: grid;
  gap: 2.25rem 1rem;
}

@media (min-width: 40rem) {
  .bb-news__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64rem) {
  .bb-news__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.bb-news__list > div {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.bb-news-teaser:hover figure, .bb-news__latest-entry:hover figure {
  position: relative;
}

.bb-news-teaser:hover figure:before, .bb-news__latest-entry:hover figure:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: inline-block;
  background-color: rgba(5, 220, 248, 0.7);
}

.bb-news-teaser:hover .bb-news__latest-title,
.bb-news-teaser:hover .bb-news-teaser__title, .bb-news__latest-entry:hover .bb-news__latest-title,
.bb-news__latest-entry:hover .bb-news-teaser__title {
  color: #05DCF8;
}

.bb-news-teaser figure {
  margin-bottom: 1rem;
}

.bb-news-teaser__title {
  font-size: 22px;
  letter-spacing: 0.3px;
  line-height: 28px;
}

@media (min-width: 64rem) {
  .bb-news-teaser__title {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: 0.812px;
  }
}
.bb-news__latest-entry {
  padding-bottom: 3rem;
}

@media (min-width: 64rem) {
  .bb-news__latest-entry {
    width: 83.333%;
  }
}
.bb-news__latest-eyebrow {
  display: block;
}

.bb-news__latest-title {
  font-size: 22px;
  letter-spacing: 0.3px;
  line-height: 28px;
}

@media (min-width: 64rem) {
  .bb-news__latest-title {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: 0.812px;
  }
}
.bb-news__latest figure {
  margin-top: 2rem;
}

.bb-news__latest-link {
  font-size: 22px;
  letter-spacing: 0.3px;
  line-height: 28px;
  color: #269d70;
  cursor: pointer;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  display: inline-block;
}

@media (min-width: 64rem) {
  .bb-news__latest-link {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: 0.812px;
  }
}
.bb-news__latest-link:hover {
  color: #05DCF8;
}

.bb-partners {
  background-color: #004e00;
  padding-block: 5rem;
}

.bb-partners__container {
  display: flex;
}

.bb-partners__media {
  display: flex;
  justify-content: center;
  width: 50%;
  background-color: #004e00;
  overflow: hidden;
}

.bb-partners__media img {
  object-fit: cover;
  height: 200px;
  width: 200px;
}

.bb-partners .owl-carousel .owl-stage {
  transition-timing-function: linear !important;
}

.bb-project-header {
  margin-block: 0.5rem 3.75rem;
}

.bb-project-header .bb-page__title {
  letter-spacing: 0.005rem;
  font-size: 1.75rem;
  line-height: 1.75rem;
  color: #269d70;
}

@media (min-width: 40rem) {
  .bb-project-header .bb-page__title {
    letter-spacing: 0.008125rem;
    font-size: 3.125rem;
    line-height: 3.125rem;
  }
}
.bb-project-header .bb-page__subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: #269d70;
}

@media (min-width: 40rem) {
  .bb-project-header .bb-page__subtitle {
    font-size: 1.25rem;
  }
}
.bb-projects {
  margin-top: 6.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 40rem) {
  .bb-projects {
    grid-template-columns: repeat(3, 1fr);
  }
}
.bb-projects__item .bb-card {
  position: relative;
}

.bb-projects__item .bb-card a:before {
  content: "";
  background: rgba(38, 157, 112, 0.6);
  opacity: 0;
  display: block;
  z-index: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: opacity 0.3s linear;
}

.bb-projects__item .bb-card a:hover:before {
  opacity: 0.7;
}

.bb-projects__item .bb-card--details {
  background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.47) 47%, #110811);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 0.9375rem 0.625rem 0.3125rem;
  z-index: 2;
}

.bb-projects__item .bb-card--title {
  margin: 0;
  letter-spacing: 0.03rem;
  font-size: 1rem;
  line-height: 1.375rem;
  color: #fff;
}

@media (min-width: 40rem) {
  .bb-projects__item .bb-card--title {
    letter-spacing: 0.0375rem;
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}
.bb-projects__item .bb-card--excerpt {
  font-weight: 700;
  margin: 0;
  color: #fff;
  letter-spacing: 0.04625rem;
  font-size: 0.75rem;
  line-height: 1rem;
}

.bb-projects__item .bb-card__animation {
  overflow: hidden;
}

.bb-projects__item .bb-card__animation a:hover .bb-card--details {
  bottom: 0 !important;
}

.bb-projects__item .bb-card__animation a:hover .bb-card--details p {
  opacity: 1;
}

.bb-projects__item .bb-card__animation .bb-card--details {
  transition: bottom 0.3s linear;
}

.bb-projects__item .bb-card__animation .bb-card--details p {
  opacity: 0;
}

/* 
Use the __abstracts-dir.scss
Helper functions and non–output snippets only (font-face imports, reusable mixins, global variables, colors, etc.)
One @import per line
The following files are imported as standard ready for customization:
    _fonts.scss
    _mixins.scss
    _variables.scss
Abstracts should be grouped with an inline comment title
One abstract per line
C-style comments can be used to add context
Files with no data should not be removed */
/* - Accrodion - */
/* - Background - */
/* - Canvas - */
/* - Card - */
/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
/* - Cookie - */
/* - Cover Image -*/
/* - Footer - */
/* - Header - */
/* - Headline - */
/* - Inverse - */
/* - Link -*/
/* - List - */
/* - No Js Notice - */
/* -  Overriding - */
/* - Social Icon - */
/* - Slider - */
/* - Faces slider -*/
/* - Sticky -*/
/* - Statement - */
/* - Video - */
/* 
Use the __abstracts-dir.scss
Helper functions and non–output snippets only (font-face imports, reusable mixins, global variables, colors, etc.)
One @import per line
The following files are imported as standard ready for customization:
    _fonts.scss
    _mixins.scss
    _variables.scss
Abstracts should be grouped with an inline comment title
One abstract per line
C-style comments can be used to add context
Files with no data should not be removed */
@media (min-width: 64rem) {
  .bb-home .bb-header:not(.bb-home .bb-header.is-sticky) {
    background: transparent;
  }
}
@media (min-width: 64rem) {
  .bb-home .bb-header:not(.bb-home .bb-header.is-sticky) .bb-logo {
    background-image: url("/assets/dist/logo-white.ec8c1b98.svg");
  }
}
@media (min-width: 64rem) {
  .bb-home .bb-header:not(.bb-home .bb-header.is-sticky) .bb-nav--link {
    color: #fff;
  }
  .bb-home .bb-header:not(.bb-home .bb-header.is-sticky) .bb-nav--link:hover {
    color: #05DCF8;
  }
}
@media (min-width: 64rem) {
  .bb-home .bb-header:not(.bb-home .bb-header.is-sticky) .bb-nav--lang .bb-nav--item:before {
    color: #fff;
  }
}
.bb-home .bb-rte h2 {
  letter-spacing: 0.08px;
  font-size: 50px;
  line-height: 55px;
}

@media (min-width: 64rem) {
  .bb-home .bb-rte h2 {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (min-width: 75rem) {
  .bb-home .bb-rte h2 {
    font-size: 80px;
    line-height: 86px;
  }
}
.bb-home .bb-textarea_bg {
  padding-block: 5rem;
}

.bb-home .bb-textarea_bg h2 {
  font-size: 36px;
  letter-spacing: 1.08px;
  line-height: 40px;
}

@media (min-width: 64rem) {
  .bb-home .bb-textarea_bg h2 {
    font-size: 55px;
    font-weight: 700;
    line-height: 68px;
    letter-spacing: 2.2px;
  }
}
@media (min-width: 64rem) {
  .bb-home .bb-block:nth-of-type(2) {
    position: relative;
    margin-top: -4.063rem;
  }
}
@media (min-width: 75rem) {
  .bb-home .bb-block:nth-of-type(2) {
    margin-top: -5.625rem;
  }
}
@media (min-width: 64rem) {
  .bb-home .bb-block:nth-of-type(2) .bb-rte h1:first-line {
    color: #fff;
  }
}
.bb-home .bb-block:last-child {
  margin-bottom: 0;
}

.bb-home .bb-footer {
  margin-top: 0;
}

/*# sourceMappingURL=/assets/dist/main.css.map */