/*
    0   - 600px:    Phone (phone)
    600 - 900px:    Tablet portrait (tab-port)
    900 - 1200px:   Tablet landscape (tab-land)
    
    [1200 - 1800px   normal styles apply]

    1800px + :      Big desktop (big-desktop)
    
    Only em's are working in media-queries...
    1em = 16px

    Recommended Order:
    Base + Typography > general layout + grid > page layout > components
*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

a,
a:visited {
  color: #3c92ba;
  text-decoration: none; }
  a:hover,
  a:visited:hover {
    text-decoration: none; }
  a::focus,
  a:visited::focus {
    outline: none; }

p {
  line-height: 2.4rem;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto; }

ul {
  list-style: none;
  font-size: 1.4rem; }

html {
  font-size: 62.5%; }
  @media (max-width: 81.25em) {
    html {
      font-size: 56.25%; } }
  @media (max-width: 56.25em) {
    html {
      font-size: 50%; } }
  @media (max-width: 37.5em) {
    html {
      font-size: 46%; } }

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  box-sizing: border-box; }

@keyframes scaleIndic {
  0% {
    transform: scale(1);
    opacity: 1; }
  100% {
    transform: scaleX(1.75) scaleY(1.6);
    opacity: 0; } }

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px); }
  80% {
    /* transform: translateX(10px); */ }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInFromBottom {
  0% {
    top: 60vh; }
  80% {
    /* transform: translateX(10px); */ }
  100% {
    /* transform: translate(0); */
    top: 7vh; } }

@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0) translateX(-50%); }
  100% {
    opacity: 1;
    transform: scale(1) translateX(-50%); } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@font-face {
  font-family: "AvenirMedium";
  font-style: normal;
  src: url("../fonts/AvenirLTStd-Medium.otf") format("opentype"); }

@font-face {
  font-family: "AvenirBook";
  font-style: normal;
  src: url("../fonts/AvenirLTStd-Book.otf") format("opentype"); }

@font-face {
  font-family: "AvenirBlack";
  font-style: normal;
  src: url("../fonts/AvenirLTStd-Black.otf") format("opentype"); }

@font-face {
  font-family: "AvenirHeavy";
  font-style: normal;
  src: url("../fonts/AvenirLTStd-Heavy.otf") format("opentype"); }

@font-face {
  font-family: "AvenirRoman";
  font-style: normal;
  src: url("../fonts/AvenirLTStd-Roman.otf") format("opentype"); }

body {
  -webkit-font-smoothing: antialiased;
  font-family: 'AvenirBook';
  font-weight: 400;
  line-height: 1.7;
  color: #ffffff; }

.heading-primary--main {
  font-family: 'AvenirBlack';
  font-size: 6.4rem;
  line-height: 5.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5rem; }
  @media (max-width: 37.5em) {
    .heading-primary--main {
      font-size: 4.4rem;
      line-height: 4rem; } }

.heading-primary--sub {
  font-family: 'AvenirRoman';
  font-size: 2rem;
  font-weight: lighter;
  display: block; }
  @media (max-width: 37.5em) {
    .heading-primary--sub {
      font-size: 1.6rem; } }

.heading-secondary {
  font-weight: lighter; }
  .heading-secondary--main {
    font-size: 3.2rem;
    color: #2f2f2f;
    letter-spacing: 0.05rem; }
    @media (max-width: 37.5em) {
      .heading-secondary--main {
        line-height: 3.5rem !important; } }
  .heading-secondary--top {
    font-family: 'AvenirMedium';
    font-size: 1.4rem;
    color: #c35364; }

.heading-tertiary {
  color: #c35364;
  font-family: 'AvenirMedium';
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: lighter; }
  .heading-tertiary--grey {
    color: #505050; }
  @media (max-width: 37.5em) {
    .heading-tertiary {
      line-height: 1.4; } }

.heading-fourth {
  color: #2f2f2f;
  font-family: 'AvenirHeavy';
  font-size: 1.5rem;
  font-weight: lighter;
  text-transform: uppercase; }

.paragraph {
  font-family: 'AvenirBook';
  font-size: 1.6rem;
  color: #505050; }
  .paragraph:not(:last-child) {
    margin-bottom: 3rem; }
  .paragraph--footer {
    font-size: 1.4rem;
    font-weight: lighter;
    color: #ffffff; }
  .paragraph--inner {
    display: block; }

.btn-primary:link, .btn-primary:visited {
  color: #525252;
  text-transform: uppercase;
  font-family: 'AvenirBlack';
  font-size: 1rem;
  letter-spacing: 0.07rem;
  font-weight: normal; }

.btn {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.07rem;
  font-weight: 600; }

.fixed-nav-elements li {
  font-family: 'AvenirMedium';
  font-size: 1.5rem;
  font-weight: lighter; }

.project-short-info,
.project-detail-info {
  color: #ffffff;
  text-transform: uppercase;
  font-family: 'AvenirHeavy'; }
  .project-short-info--heading,
  .project-detail-info--heading {
    font-size: 2.5rem;
    letter-spacing: 1.5px;
    line-height: 1; }
  .project-short-info--desc,
  .project-detail-info--desc {
    font-size: 1.5rem; }

.project-short-info--heading--over {
  font-size: 1.8rem;
  letter-spacing: 0.5px;
  line-height: 1; }

.project-short-info--desc--over {
  font-size: 1.2rem; }

.project-detail--services-performed__box--heading {
  font-family: 'AvenirRoman';
  text-transform: uppercase;
  color: #c6c6c6;
  font-size: 1.2rem;
  letter-spacing: 0.08rem;
  font-weight: lighter; }

.contact__info {
  font-size: 1.6rem;
  color: #444444; }

.cookie-banner {
  font-size: 1.4rem; }
  .cookie-banner__info {
    color: #ffffff; }
  .cookie-banner__link:hover {
    text-decoration: underline; }

.legal-regulations:link, .legal-regulations:visited {
  font-size: 1.3rem;
  color: #ffffff; }

.legal-regulations:hover {
  text-decoration: underline; }

.data-list {
  color: #444444 !important;
  font-size: 1.6rem; }

.u-margin-bottom-small {
  margin-bottom: 1rem; }

.u-margin-bottom-medium {
  margin-bottom: 3rem; }
  @media (max-width: 37.5em) {
    .u-margin-bottom-medium {
      margin-bottom: 1.75rem; } }

.u-margin-bottom-large {
  margin-bottom: 6rem; }
  @media (max-width: 37.5em) {
    .u-margin-bottom-large {
      margin-bottom: 4rem; } }

.u-margin-top-small {
  margin-top: 1rem; }

.u-margin-top-medium {
  margin-top: 3rem; }

.u-margin-top-large {
  margin-top: 6rem; }
  @media (max-width: 37.5em) {
    .u-margin-top-large {
      margin-top: 4rem; } }

.u-outer-padding {
  padding: 0 15rem; }
  @media (max-width: 56.25em) {
    .u-outer-padding {
      padding: 0 10rem; } }
  @media (max-width: 37.5em) {
    .u-outer-padding {
      padding: 0 7rem; } }

.u-float-right {
  float: right; }

.u-float-left {
  float: left; }

.u-half-width {
  width: 50%; }
  @media (max-width: 56.25em) {
    .u-half-width {
      width: auto; } }

.header {
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-delay: 0;
  height: 100vh;
  background-image: linear-gradient(rgba(48, 54, 57, 0.75), rgba(48, 54, 57, 0.75)), url(../img/img-hero.jpg);
  background-size: cover;
  background-position: top; }
  .header nav {
    opacity: 0;
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-delay: 1.25s;
    padding: 2rem; }
    @media (max-width: 56.25em) {
      .header nav {
        display: none; } }
    .header nav::after {
      content: '';
      display: table;
      clear: both; }
    .header nav ul {
      font-family: 'AvenirMedium';
      float: right; }
      .header nav ul li {
        display: inline; }
        .header nav ul li a:hover {
          color: #3c92ba;
          transition: color 500ms; }
        .header nav ul li a:not(:hover) {
          color: #ffffff;
          transition: color 500ms; }
        .header nav ul li:not(:last-child) {
          margin-right: 3rem; }
  .header .oval-container {
    position: relative;
    top: 50%;
    left: 50%;
    width: 90vh;
    height: 90vh;
    background: rgba(216, 216, 216, 0.1);
    moz-border-radius: 50%;
    webkit-border-radius: 50%;
    border-radius: 50%;
    transform-origin: left;
    animation-name: scaleUp;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-delay: 0;
    animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1); }
    @media (max-width: 56.25em) {
      .header .oval-container {
        background: none; } }
    .header .oval-container .heading-primary-box {
      opacity: 0;
      animation-name: fadeIn;
      animation-duration: 1s;
      animation-fill-mode: forwards;
      animation-delay: 0.75s;
      text-align: center;
      position: relative;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
      .header .oval-container .heading-primary-box .header-logo-box {
        margin-bottom: 1rem; }
        @media (max-width: 37.5em) {
          .header .oval-container .heading-primary-box .header-logo-box {
            margin-bottom: 1.5rem; }
            .header .oval-container .heading-primary-box .header-logo-box img {
              width: 25rem; } }
      .header .oval-container .heading-primary-box .heading-primary {
        display: inline-block; }
        .header .oval-container .heading-primary-box .heading-primary--main {
          display: block;
          text-align: right; }
          @media (max-width: 37.5em) {
            .header .oval-container .heading-primary-box .heading-primary--main {
              text-align: center; } }
    .header .oval-container .scroll-down-indicator-box {
      display: inline-block;
      transform: translate(-50%, 50%);
      position: absolute;
      left: 50%;
      top: 85%;
      cursor: pointer;
      opacity: 0;
      animation-name: fadeIn;
      animation-duration: 1s;
      animation-fill-mode: forwards;
      animation-delay: 1.25s; }
      @media (max-width: 37.5em) {
        .header .oval-container .scroll-down-indicator-box {
          display: none; } }

.row {
  max-width: 144rem;
  margin: 0 auto; }
  .row:not(:last-child) {
    margin-bottom: 8rem; }
    @media (max-width: 56.25em) {
      .row:not(:last-child) {
        margin-bottom: 6rem; } }
  @media (max-width: 56.25em) {
    .row {
      max-width: 75rem; } }
  @media (max-width: 37.5em) {
    .row {
      max-width: 60rem; } }
  .row::after {
    content: '';
    display: table;
    clear: both; }
  .row [class^="col-"] {
    float: left; }
    .row [class^="col-"]:not(:last-child) {
      margin-right: 10rem; }
      @media (max-width: 56.25em) {
        .row [class^="col-"]:not(:last-child) {
          margin-right: 0;
          margin-bottom: 6rem; } }
    @media (max-width: 56.25em) {
      .row [class^="col-"] {
        width: 100% !important; } }
  .row .col-1-2 {
    width: calc((100% - 10rem) / 2); }
  .row .col-1-3 {
    width: calc((100% - 3 * 10rem) / 3); }
  .row .col-1-4 {
    width: calc((100% - 4 * 10rem) / 4); }

.prefooter {
  height: 36.5rem;
  background-image: linear-gradient(rgba(48, 54, 57, 0.75), rgba(48, 54, 57, 0.75)), url(../img/bg-prefooter.jpg); }
  @media (max-width: 56.25em) {
    .prefooter {
      display: none; } }

.footer {
  position: relative;
  height: 15rem;
  background-color: #3e3d40; }
  .footer__info-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto; }
    .footer__info-box .paragraph--footer:not(:last-child) {
      margin: 0; }
    @media (max-width: 37.5em) {
      .footer__info-box {
        width: 30%; } }

.form {
  color: #444444;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  grid-gap: 5rem;
  grid-auto-flow: dense; }
  @media (max-width: 37.5em) {
    .form {
      grid-gap: 3rem; } }
  .form__group--textarea {
    grid-column: 1 / span 2; }
    @media (max-width: 37.5em) {
      .form__group--textarea {
        grid-column: 1; } }
    .form__group--textarea textarea {
      border: none;
      outline: none;
      min-width: 100%;
      font-family: inherit;
      font-size: 1.5rem;
      border-bottom: 1px solid #2f2f2f;
      border-radius: 0;
      padding-top: 1rem;
      height: 7rem; }
  @media (max-width: 500px) {
    .form__group {
      width: 27rem; } }
  .form__input {
    border: none;
    outline: none;
    min-width: 100%;
    font-family: inherit;
    font-size: 1.5rem;
    border-bottom: 1px solid #2f2f2f;
    border-radius: 0;
    padding-top: 1rem; }
  .form__label {
    color: #000000;
    font-size: 1.2rem; }
  .form__controls {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    height: inherit;
    align-items: center;
    justify-content: space-between; }
    .form__controls .user-message-area p {
      visibility: hidden; }

.fixed-nav-bar {
  position: fixed;
  top: -5rem;
  left: 0;
  z-index: 500;
  width: 100%;
  transition: all 0.3s;
  background-color: #3e3d40; }
  @media (max-width: 56.25em) {
    .fixed-nav-bar {
      display: none; } }
  .fixed-nav-bar__content {
    height: 5rem;
    line-height: 1rem;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; }
    .fixed-nav-bar__content__logo {
      width: 8rem; }
      .fixed-nav-bar__content__logo img {
        width: 7rem; }
    .fixed-nav-bar__content ul {
      padding-top: 0.3rem; }
      .fixed-nav-bar__content ul li {
        display: inline; }
        .fixed-nav-bar__content ul li a:hover {
          color: #3c92ba;
          transition: color 500ms; }
        .fixed-nav-bar__content ul li a:not(:hover) {
          color: #ffffff;
          transition: color 500ms; }
        .fixed-nav-bar__content ul li:not(:last-child) {
          margin-right: 3rem; }

.slide-down {
  transform: translateY(5rem); }

.slide-up {
  transform: translateY(-5rem); }

.disabled {
  pointer-events: none; }

.u-active {
  border-bottom: 1px solid #3c92ba;
  padding-bottom: 0.2rem;
  color: #3c92ba !important; }

.btn-primary:link, .btn-primary:visited {
  display: inline-block;
  border: 2px solid #525252;
  border-radius: 4rem;
  padding: 0.75rem 2rem;
  transition: all 0.2s; }

.btn-primary:hover {
  background-color: #525252;
  color: #ffffff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px); }

.btn-close:link, .btn-close:visited {
  position: absolute;
  z-index: 5000;
  margin: 1rem;
  right: 0; }

.btn {
  background-color: #3c92ba;
  display: inline-block;
  border: none;
  padding: 1rem 3rem;
  transition: all 0.2s; }
  .btn:hover {
    cursor: pointer;
    background-color: #46aad9;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
    transform: translateY(-2px); }

.services {
  display: grid;
  grid-column: center-start / center-end;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  grid-gap: 6rem;
  align-items: start; }
  .services .service-article-header {
    display: flex;
    flex-direction: row;
    align-items: center; }
    .services .service-article-header .heading-fourth {
      margin-left: 2rem; }
      .services .service-article-header .heading-fourth--no-icon {
        margin-left: 0; }
  .services .service .conditions-list {
    list-style: circle; }
    .services .service .conditions-list__item {
      color: #505050 !important; }

.members {
  grid-column: center-start / center-end;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(31.1rem, 1fr));
  grid-gap: 6rem;
  align-items: start; }

.member {
  display: grid;
  grid-template-columns: min-content 171px;
  grid-template-rows: max-content;
  row-gap: 1rem;
  column-gap: 1.5rem;
  align-items: start; }
  .member__image {
    grid-row: 1 / span 2;
    width: 15.4rem;
    height: 18.7rem; }
  .member__persona-name {
    font-size: 1.6rem;
    color: #2f2f2f;
    font-weight: bolder;
    display: block; }
  .member__persona-position {
    line-height: 1.8rem;
    font-size: 1.4rem;
    color: #c35364;
    display: block; }
    @media (max-width: 37.5em) {
      .member__persona-position {
        line-height: 2.2rem !important; } }
  .member__desc {
    font-size: 1.5rem;
    color: #505050;
    line-height: 2rem; }

.team-logo {
  position: absolute;
  display: inline-block;
  background-color: #ffffff;
  border-radius: 15rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 5rem;
  margin-top: -12.5rem; }
  .team-logo img {
    width: 15rem; }

.scroll-down-indicator {
  display: inline-block; }
  .scroll-down-indicator::after {
    content: url(../img/mouse-icon-lighter.svg);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    animation-name: scaleIndic;
    animation-duration: 1.65s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    /* animation-delay: .4s; */ }
  .scroll-down-indicator:hover::after {
    animation: none;
    content: none; }

.composition {
  position: relative; }
  @media (max-width: 81.25em) {
    .composition {
      margin-top: 35%; } }
  @media (max-width: 56.25em) {
    .composition {
      margin-top: 5rem; } }
  .composition__photo {
    width: 40%;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4);
    border-radius: 2px;
    position: absolute; }
    @media (max-width: 81.25em) {
      .composition__photo {
        position: relative;
        float: left;
        width: 33.33333333%;
        box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2); } }
    .composition__photo--p1 {
      top: 15rem;
      left: 20rem;
      z-index: 1; }
      @media (max-width: 81.25em) {
        .composition__photo--p1 {
          top: 0;
          left: 0; } }
    .composition__photo--p2 {
      z-index: 0;
      left: 35rem;
      top: -5rem; }
      @media (max-width: 81.25em) {
        .composition__photo--p2 {
          left: 0;
          top: -4rem;
          transform: scale(1.2);
          z-index: 3; } }
    .composition__photo--p3 {
      z-index: 2;
      left: 5rem;
      top: 35rem; }
      @media (max-width: 81.25em) {
        .composition__photo--p3 {
          left: 0;
          top: 0; } }

.projects {
  height: 117.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, 1fr);
  grid-gap: 2rem; }
  @media (max-width: 56.25em) {
    .projects {
      margin-bottom: 5rem; }
      .projects img {
        width: 100%; } }

.item {
  overflow: hidden;
  position: relative; }
  .item:hover {
    cursor: pointer; }
    .item:hover .project-short-info {
      opacity: 1;
      transition: opacity 500ms; }
  .item:not(:hover) .project-short-info {
    opacity: 0;
    transition: opacity 500ms; }
  .item--1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3; }
  .item--2 {
    grid-column: 3 / 5; }
    @media (max-width: 56.25em) {
      .item--2 {
        grid-column: initial; } }
    @media (max-width: 37.5em) {
      .item--2 {
        grid-column: 1 / 3; } }
  .item--5 {
    grid-column: 1 / 3; }
    @media (max-width: 56.25em) {
      .item--5 {
        grid-column: initial; } }
    @media (max-width: 37.5em) {
      .item--5 {
        grid-column: 1 / 3; } }
  .item--6 {
    grid-column: 3 / 5; }
    @media (max-width: 56.25em) {
      .item--6 {
        grid-column: 1 / 3; } }

.project-short-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  opacity: 0;
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  color: #ffffff !important;
  background-color: rgba(80, 80, 80, 0.75); }

.inner-logo {
  opacity: 0.55;
  position: absolute;
  width: 80%;
  height: 80%;
  z-index: -1; }

.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s; }
  .popup:target {
    opacity: 1;
    visibility: visible; }
  .popup__content {
    overflow: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 90vh;
    background-color: #ffffff;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2); }
    .popup__content__featured {
      position: relative;
      background-image: linear-gradient(rgba(48, 54, 57, 0.75), rgba(48, 54, 57, 0.75)), url(../img/img-hero.jpg);
      background-size: cover;
      background-position: top;
      height: 65vh; }
      .popup__content__featured::after {
        content: '';
        display: table;
        clear: both; }
      @media (max-width: 37.5em) {
        .popup__content__featured {
          height: 75vh; } }
      .popup__content__featured .project-detail {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%; }
        .popup__content__featured .project-detail-info {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          height: 45rem; }
          .popup__content__featured .project-detail-info--inner-logo {
            width: 70%;
            height: 70%; }
            @media (max-width: 37.5em) {
              .popup__content__featured .project-detail-info--inner-logo {
                width: 60%;
                height: 60%; } }
        .popup__content__featured .project-detail--services-performed {
          text-align: center; }
          .popup__content__featured .project-detail--services-performed__box {
            display: inline-block; }
            .popup__content__featured .project-detail--services-performed__box:not(:last-child) {
              margin-right: 10rem; }
              @media (max-width: 56.25em) {
                .popup__content__featured .project-detail--services-performed__box:not(:last-child) {
                  margin-right: 3rem; } }
              @media (max-width: 37.5em) {
                .popup__content__featured .project-detail--services-performed__box:not(:last-child) {
                  margin-bottom: 15rem; } }
    .popup__content__main {
      max-width: 80rem;
      margin: 8rem auto; }
      .popup__content__main::after {
        content: '';
        display: table;
        clear: both; }
      @media (max-width: 56.25em) {
        .popup__content__main {
          padding: 0 5rem; } }
      .popup__content__main--showcase {
        display: block;
        margin: 3rem 0;
        width: 100%; }
      .popup__content__main .heading-secondary {
        margin-bottom: 2.5rem; }
        .popup__content__main .heading-secondary--top {
          display: block; }

.cookie-banner {
  position: fixed;
  z-index: 5000;
  background-color: #000000;
  width: 100%;
  padding: 0 3rem; }
  .cookie-banner__content {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    height: 5rem;
    justify-content: space-between; }
    @media (max-width: 37.5em) {
      .cookie-banner__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 17rem;
        justify-content: center; }
        .cookie-banner__content .cookie-banner__info {
          width: 75%;
          text-align: center; } }
  .cookie-banner .btn-close-cookie-banner {
    font-size: 1.2rem;
    padding: 0.75rem 3rem;
    letter-spacing: 1; }
    @media (max-width: 37.5em) {
      .cookie-banner .btn-close-cookie-banner {
        margin-top: 1rem; } }

.mobile-nav {
  display: none; }
  @media (max-width: 56.25em) {
    .mobile-nav {
      display: inherit; } }
  .mobile-nav__checkbox {
    display: none; }
  .mobile-nav__button {
    background-color: #46aad9;
    border-radius: 50%;
    width: 7rem;
    height: 7rem;
    position: fixed;
    top: 3rem;
    right: 3rem;
    z-index: 1600;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    text-align: center;
    cursor: pointer; }
  .mobile-nav__background {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    position: fixed;
    top: 3.5rem;
    right: 3.5rem;
    background-color: #c35364;
    z-index: 1000;
    transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1); }
  .mobile-nav__nav {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1500;
    opacity: 0;
    width: 0;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .mobile-nav__list {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%; }
  .mobile-nav__item {
    margin: 1rem; }
  .mobile-nav__link:link, .mobile-nav__link:visited {
    font-size: 3rem;
    font-weight: lighter;
    color: #ffffff !important;
    text-transform: uppercase; }
  .mobile-nav__checkbox:checked ~ .mobile-nav__background {
    transform: scale(80); }
  .mobile-nav__checkbox:checked ~ .mobile-nav__nav {
    opacity: 1;
    width: 100%; }
  .mobile-nav__icon {
    position: relative;
    margin-top: 3.5rem; }
    .mobile-nav__icon, .mobile-nav__icon::before, .mobile-nav__icon::after {
      width: 3rem;
      height: 2px;
      background-color: #ffffff;
      display: inline-block; }
    .mobile-nav__icon::before, .mobile-nav__icon::after {
      content: '';
      position: absolute;
      left: 0;
      transition: all 0.2s; }
    .mobile-nav__icon::before {
      top: -0.8rem; }
    .mobile-nav__icon::after {
      top: 0.8rem; }
  .mobile-nav__checkbox:checked + .mobile-nav__button .mobile-nav__icon {
    background-color: transparent; }
  .mobile-nav__checkbox:checked + .mobile-nav__button .mobile-nav__icon::before {
    top: 0;
    transform: rotate(135deg); }
  .mobile-nav__checkbox:checked + .mobile-nav__button .mobile-nav__icon::after {
    top: 0;
    transform: rotate(-135deg); }

.section {
  overflow: hidden; }
  .section--white {
    background-color: #ffffff; }
  .section--grey {
    background-color: #f0f0f0; }
  .section .heading-secondary--main {
    display: block;
    line-height: 4.4rem; }
  .section-betrieb {
    max-width: 144rem;
    margin: 0 auto;
    position: relative;
    padding: 12rem 0; }
    @media (max-width: 56.25em) {
      .section-betrieb {
        padding: 6rem 0 !important; } }
    .section-betrieb .row {
      position: relative;
      z-index: 1; }
    .section-betrieb .triangle {
      position: absolute;
      z-index: -1;
      top: -10rem;
      left: -30rem;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0rem 85rem 100rem 85rem;
      border-color: transparent transparent #f0f0f0 transparent; }
      @media (max-width: 81.25em) {
        .section-betrieb .triangle {
          display: none; } }
  .section-service {
    max-width: 144rem;
    margin: 0 auto;
    position: relative;
    padding: 12rem 0; }
    @media (max-width: 56.25em) {
      .section-service {
        padding: 6rem 0 !important; } }
  .section-arbeiten {
    max-width: 144rem;
    margin: 0 auto;
    position: relative;
    padding: 12rem 0; }
    @media (max-width: 56.25em) {
      .section-arbeiten {
        padding: 6rem 0 !important; } }
  .section-team {
    max-width: 144rem;
    margin: 0 auto;
    position: relative;
    padding: 12rem 0; }
    @media (max-width: 56.25em) {
      .section-team {
        padding: 6rem 0 !important; } }
    @media (max-width: 56.25em) {
      .section-team {
        margin-top: 10rem; } }
  .section-jobs {
    max-width: 144rem;
    margin: 0 auto;
    position: relative;
    padding: 12rem 0; }
    @media (max-width: 56.25em) {
      .section-jobs {
        padding: 6rem 0 !important; } }
    @media (max-width: 56.25em) {
      .section-jobs {
        margin-top: 10rem; } }
  .section-kontakt {
    max-width: 144rem;
    margin: 0 auto;
    position: relative;
    padding: 12rem 0; }
    @media (max-width: 56.25em) {
      .section-kontakt {
        padding: 6rem 0 !important; } }
    .section-kontakt .contact {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(45rem, 1fr));
      grid-gap: 6rem;
      align-items: start; }
      @media (max-width: 37.5em) {
        .section-kontakt .contact {
          grid-gap: 3rem; } }
      .section-kontakt .contact__info {
        display: flex;
        flex-direction: row;
        justify-content: start;
        align-items: center;
        height: 3.5rem;
        color: #444444; }
        .section-kontakt .contact__info:not(:last-child) {
          margin-bottom: 2rem; }
        .section-kontakt .contact__info .icon-box {
          margin-right: 2rem; }
        .section-kontakt .contact__info--location .icon-box {
          margin-right: 1.6rem; }
