/* FONTS start */

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-Light.eot');
    src: url('fonts/OpenSans-Light.eot?#iefix') format('embedded-opentype'),
      url('fonts/OpenSans-Light.woff2') format('woff2'),
      url('fonts/OpenSans-Light.woff') format('woff'),
      url('fonts/OpenSans-Light.svg#OpenSans-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-Regular.eot');
    src: url('fonts/OpenSans-Regular.eot?#iefix') format('embedded-opentype'),
      url('fonts/OpenSans-Regular.woff2') format('woff2'),
      url('fonts/OpenSans-Regular.woff') format('woff'),
      url('fonts/OpenSans-Regular.svg#OpenSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-Medium.eot');
    src: url('fonts/OpenSans-Medium.eot?#iefix') format('embedded-opentype'),
      url('fonts/OpenSans-Medium.woff2') format('woff2'),
      url('fonts/OpenSans-Medium.woff') format('woff'),
      url('fonts/OpenSans-Medium.svg#OpenSans-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-SemiBold.eot');
    src: url('fonts/OpenSans-SemiBold.eot?#iefix') format('embedded-opentype'),
      url('fonts/OpenSans-SemiBold.woff2') format('woff2'),
      url('fonts/OpenSans-SemiBold.woff') format('woff'),
      url('fonts/OpenSans-SemiBold.svg#OpenSans-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-Bold.eot');
    src: url('fonts/OpenSans-Bold.eot?#iefix') format('embedded-opentype'),
      url('fonts/OpenSans-Bold.woff2') format('woff2'),
      url('fonts/OpenSans-Bold.woff') format('woff'),
      url('fonts/OpenSans-Bold.svg#OpenSans-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-ExtraBold.eot');
    src: url('fonts/OpenSans-ExtraBold.eot?#iefix') format('embedded-opentype'),
      url('fonts/OpenSans-ExtraBold.woff2') format('woff2'),
      url('fonts/OpenSans-ExtraBold.woff') format('woff'),
      url('fonts/OpenSans-ExtraBold.svg#OpenSans-ExtraBold') format('svg');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
  }
  
  
  /* FONTS end */
  
  /* STYLES start */
  
  /* DATA ATTRIBUTES start */
  
  /* DATA ATTRIBUTES end */
  
  /* GLOBAL start */
  
  /****** root ******/
  :root {
    /* >>>>> background <<<<< */
    --background-white: #FFF;
    --background-accent: #FFEC00;
    --background-accent-hover: #F7E50B;
    --background-contrast: #1A1A1A;
    --background-contrast-hover: #2B2828;
    --background-contrast-hover-strong: #454545;
    --background-grey: #EBEBEB;
    --background-grey-input: #C6C6C6;
    --background-grey-hover: #A5A5A5;
    --background-attention: #C90B0B;
    --background-success: #09AA09;
    /* >>>>> text <<<<< */
    --text-white: #FFF;
    --text-accent: #FFEC00;
    --text-contrast: #1A1A1A;
    --text-contrast-hover: #4D4D42;
    --text-contrast-alternative: #4B4B4B;
    --text-contrast-alternative-hover: #A5A5A5;
    --text-grey: #EBEBEB;
    --text-grey-input: #A5A5A5;
    --text-attention: #C90B0B;
    /* >>>>> border <<<<< */
    --border-white: #FFF;
    --border-accent: #FFEC00;
    --border-contrast: #1A1A1A;
    --border-grey: #EBEBEB;
    --border-grey-dark: #B1B1B1;
    /* >>>>> container width <<<<< */
    --container-desktop-xxl: 1860px;
    --container-desktop-xl: 1680px;
    --container-desktop-l: 1500px;
    --container-desktop-m: 1320px;
    --container-desktop-s: 1140px;
    --container-tablet: 960px;
    --container-mobile-l: 720px;
    --container-mobile-m: 540px;
    --container-mobile-s: 100%;
  }
  
  /*
  ::-webkit-scrollbar { 
  position: absolute;
  left: 0;
  top: 0;
  }
  */
  
  /****** body ******/
  body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans';
    color: var(--text-contrast);
  }
  
  /****** list ******/
  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  /****** anchor ******/
  a {
    color: inherit;
    text-decoration: none;
  }
  
  /****** figure ******/
  figure {
    margin: 0;
  }
  
  /****** container ******/
  .container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  
  /****** page-content ******/
  #page-content {
    position: relative;
    min-height: 100vh;
  }
  
  /****** content-wrap ******/
  #content-wrap {
    /* !!!!! has to have the same height as footer, can also be set dynamically with javascript !!!!! */
    padding-bottom: 440px;
  }
  
  /****** header ******/
  #header {
    background: var(--background-contrast);
    height: 105px;
  }
  
  #header-wrap {
    position: relative;
    height: 100%;
  }
  
  #header-subcontainer {
    /*
    padding: 20px 0;
    */
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  
  /****** footer ******/
  #footer {
    /*
    background: var(--background-contrast);
    */
    position: absolute;
    bottom: 0;
    width: 100%;
    /* !!!!! has to have the same height as content-wrap !!!!! */
    height: 440px;
  }
  
  /*
  #footer-subcontainer {
  padding: 40px 0;
  }
  */
  
  /****** button ******/
  /* >>>>> btn-standard <<<<< */
  
  /*
  div.btn-standard {
  padding: 17px 30px;
  }
  
  div.btn-black {
  background-color: var(--background-contrast);
  }
  
  div.btn-yellow {
  background-color: var(--background-accent);
  }
  */
  
  a.btn-standard,
  button.btn-standard {
    font-size: 0.75rem;
    font-weight: bold;
    height: 55px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    column-gap: 60px;
    border: none;
    outline: none;
    cursor: pointer;
  }
  
  a.btn-standard.btn-black,
  button.btn-standard.btn-black {
    color: var(--text-accent);
    background: var(--background-contrast);
  }
  
  a.btn-standard.btn-yellow,
  button.btn-standard.btn-yellow {
    color: var(--text-contrast);
    background: var(--background-accent);
  }
  
  a.btn-standard svg,
  button.btn-standard svg {
    width: 13px;
  }
  
  a.btn-standard.btn-black svg path,
  button.btn-standard.btn-black svg path {
    fill: var(--border-accent);
  }
  
  a.btn-standard.btn-yellow svg path,
  button.btn-standard.btn-yellow svg path {
    fill: var(--border-contrast);
  }
  
  /* >>>>> hover effects <<<<< */
  a.btn-standard.btn-black:hover,
  button.btn-standard.btn-black:hover {
    background: var(--background-contrast-hover);
  }
  
  a.btn-standard.btn-yellow:hover,
  button.btn-standard.btn-yellow:hover {
    background: var(--background-accent-hover);
  }
  
  /* >>>>> disabled <<<<< */
  button.btn-standard:disabled {
    opacity: 0.3;
    pointer-events: none;
    color: var(--text-white);
  }
  
  button.btn-standard:disabled svg path {
    fill: var(--background-white);
  }
  
  /****** attributes ******/
  [data-hidden] {
    display: none;
  }
  
  [data-unselectable] {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /****** title, text & hierarchy ******/
  .text-yellow {
    color: var(--text-accent);
  }
  
  .text-white {
    color: var(--text-white);
  }
  
  .text-black {
    color: var(--text-contrast);
  }
  
  .text-grey {
    color: var(--text-grey);
  }
  
  .text-white.text-outline {
    -webkit-text-stroke: 1px var(--text-white);
    -webkit-text-fill-color: transparent;
  }
  
  .text-yellow.text-outline {
    -webkit-text-stroke: 1px var(--text-accent);
    -webkit-text-fill-color: transparent;
  }
  
  .text-black.text-outline {
    -webkit-text-stroke: 1px var(--text-contrast);
    -webkit-text-fill-color: transparent;
  }
  
  .text-grey.text-outline {
    -webkit-text-stroke: 1px var(--text-grey);
    -webkit-text-fill-color: transparent;
  }
  
  /* GLOBAL end */
  
  /* COMPONENTS start */
  /****** burger-navigation-slide-in ******/
  #burger-navigation-slide-in-icon {
    position: fixed;
    top: 19px;
    z-index: 1000;
    transform: translateX(-100%);
  }
  
  div.burger-menu-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 99px;
    background: var(--background-contrast);
  }
  
  div.burger-menu-toggle-icon[data-burger-menu-visible="true"] {
    background-color: transparent;
  }
  
  svg.close-menu-icon {
    display: none;
  }
  
  div.burger-menu-toggle-icon[data-burger-menu-visible="true"] svg.close-menu-icon {
    display: block;
  }
  
  div.burger-menu-toggle-icon[data-burger-menu-visible="true"] svg.burger-menu-icon{
    display: none;
  }
  
  div.burger-menu-toggle-icon svg {
    cursor: pointer;
  }
  
  div.burger-menu-toggle-icon svg.burger-menu-icon g rect {
    fill: var(--text-white);
  }
  
  div.burger-menu-toggle-icon svg.close-menu-icon g rect {
    fill: var(--text-contrast);
  }
  
  section.burger-navigation-slide-in-icon[data-background-color="inverse"] div.burger-menu-toggle-icon svg.burger-menu-icon g rect {
    fill: var(--text-contrast);
  }
  
  #burger-navigation-slide-in-modal {
    overflow: hidden;
    position: fixed;
    top: 0;
    height: 100vh;
    z-index: 100;
    pointer-events: none;
    box-shadow: unset;
    display: flex;
  }
  
  #burger-navigation-slide-in-modal[data-burger-menu-visible="true"] {
    pointer-events: auto;
    /*
    box-shadow: -1px 0px 20px 0px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0ms ease-in-out;
    transition-delay: 200ms;
    */
  }
  
  div.slide-modal {
    display: flex;
    flex-direction: column;
    align-items: end;
    height: 100%;
    width: 507px;
    background-color: var(--background-accent);
    transform: translateX(100%);
    transition: transform 100ms ease-out;
  }
  
  div.slide-modal-underlay {
    display: none;
  }
  
  div.slide-modal-placeholder {
    opacity: 0;
    background: green;
    pointer-events: none;
    /*
    width: calc((((100vw - var(--container-desktop-m)) / 2)) + (var(--container-desktop-m) - 507px) - 11px );
    */
    height: 100%;
  }
  
  #burger-navigation-slide-in-modal[data-burger-menu-visible="true"] div.slide-modal {
    transform: translateX(0);
    transition: transform 200ms ease-out;
    box-shadow: -1px 0px 20px 0px rgba(0, 0, 0, 0.05);
  }
  
  /*
  #burger-navigation-slide-in-modal div.subcontainer {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: end;
  width: 489px;
  }
  */
  
  div.slide-modal div.logo[data-media="mobile"] {
    display: none;
    position: absolute;
    opacity: 0;
  }
  
  div.slide-modal div.logo[data-media="mobile"] img {
    max-width: 220px;
    max-height: 100px;
  }
  
  div.slide-modal div.navigation {
    margin-top: 120px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: end;
  }
  
  div.slide-modal nav ul {
    text-align: right;
    font-size: 2.563rem;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: end;
    row-gap: 24px;
    user-select: none;
  }
  
  div.slide-modal nav ul li a {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    align-items: center;
  }
  
  div.slide-modal nav ul li a[data-current-nav="true"] {
    font-weight: 800;
  }
  
  div.slide-modal div.navigation div.hover-dot {
    opacity: 0;
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 99px;
    background: white;
  }
  
  div.slide-modal div.contact {
    margin-top: auto;
    margin-bottom: 70px;
  }
  
  a.contact-other {
    cursor: pointer;
  }
  
  div.slide-modal div.contact[data-contact-button="start"] a.contact-other {
    display: none;
  }
  
  div.slide-modal div.contact[data-contact-button="other"] a.contact-start {
    display: none;
  }
  
  div.slide-modal div.contact div.hover-dot {
    opacity: 0;
    display: none;
    width: 24px;
    height: 24px;
    border-radius: 99px;
    background: white;
  }
  
  div.slide-modal div.contact a {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 20px;
    font-size: 1.625rem;
    font-weight: 400;
    user-select: none;
  }
  
  div.slide-modal div.social-media {
    display: flex;
    align-items: center;
    column-gap: 36px;
    margin-bottom: 70px;
    user-select: none;
  }
  
  div.slide-modal div.social-media a {
    display: flex;
  }
  
  div.slide-modal div.social-media a svg {
    width: 32px;
    height: 32px;
  }
  
  div.slide-modal div.social-media a svg path {
    fill: var(--background-contrast);
  }
  
  /* >>>>> text effect general <<<<< */
  div.slide-modal div.special-text {
    position: absolute;
    color: var(--text-contrast);
    font-size: 5rem;
    white-space: nowrap;
    font-weight: 800;
    opacity: 0;
    user-select: none;
    pointer-events: none;
  }
  
  div.slide-modal div.special-text[data-burger-menu-special-text="visible"] {
    opacity: 1;
    transition: opacity 200ms ease-in-out;
    transition-delay: 200ms;
  }
  
  div.slide-modal div.special-text[data-media="mobile"] {
    display: none;
  }
  
  /* >>>>> text effect home <<<<< */
  div.slide-modal div.special-text[data-special-text="home"] {
    letter-spacing: -3px;
    left: 9px;
    top: calc(50vh - 22px);
  }
  
  /* >>>>> text effect projects <<<<< */
  div.slide-modal div.special-text[data-special-text="projects"] {
    letter-spacing: -1px;
    left: 9px;
    top: calc(50vh - 22px);
  }
  
  /* >>>>> text effect about us <<<<< */
  div.slide-modal div.special-text[data-special-text="about-us"] {
    letter-spacing: -1px;
    left: 9px;
    top: calc(50vh - 66px);
  }
  
  
  /* >>>>> responsiveness <<<<< */
  @media screen and (min-width: 376px) {
    #burger-navigation-slide-in-icon {
      left: calc(50% + (var(--container-mobile-s) / 2));
    }
    #burger-navigation-slide-in-modal div.slide-modal {
      padding-right: calc((100vw - var(--container-mobile-s)) / 2 + 11px);
    }
  }
  
  @media screen and (min-width: 576px) {
    #burger-navigation-slide-in-icon {
      left: calc(50% + (var(--container-mobile-m) / 2));
    }
    #burger-navigation-slide-in-modal div.slide-modal {
      padding-right: calc((100vw - var(--container-mobile-m)) / 2 + 11px);
    }
  }
  
  @media screen and (min-width: 768px) {
    #burger-navigation-slide-in-icon {
      left: calc(50% + (var(--container-mobile-l) / 2));
    }
    #burger-navigation-slide-in-modal div.slide-modal {
      padding-right: calc((100vw - var(--container-mobile-l)) / 2 + 11px);
    }
  }
  
  @media screen and (min-width: 992px) {
    #burger-navigation-slide-in-icon {
      left: calc(50% + (var(--container-tablet) / 2));
    }
    #burger-navigation-slide-in-modal div.slide-modal {
      padding-right: calc((100vw - var(--container-tablet)) / 2 + 11px);
    }
    #burger-navigation-slide-in-modal div.slide-modal-placeholder {
      width: calc((((100vw - var(--container-tablet)) / 2)) + (var(--container-tablet) - 495px) - 11px);
    }	
  }
  
  @media screen and (min-width: 1200px) {
    #burger-navigation-slide-in-icon {
      left: calc(50% + (var(--container-desktop-s) / 2));
    }
    #burger-navigation-slide-in-modal div.slide-modal {
      padding-right: calc((100vw - var(--container-desktop-s)) / 2 + 11px);
    }
    #burger-navigation-slide-in-modal div.slide-modal-placeholder {
      width: calc((((100vw - var(--container-desktop-s)) / 2)) + (var(--container-desktop-s) - 507px) - 11px);
    }	
  }
  
  @media screen and (min-width: 1400px) {
    #burger-navigation-slide-in-icon {
      left: calc(50% + (var(--container-desktop-m) / 2));
    }
    #burger-navigation-slide-in-modal div.slide-modal {
      padding-right: calc(((100vw - var(--container-desktop-m)) / 2) + 11px);
    }
    #burger-navigation-slide-in-modal div.slide-modal-placeholder {
      width: calc((((100vw - var(--container-desktop-m)) / 2)) + (var(--container-desktop-m) - 507px) - 11px);
    }	
  }
  
  /* >>>>> hover effects <<<<< */
  div.slide-modal nav ul li a:hover div.hover-dot,
  div.slide-modal nav ul li a:focus div.hover-dot {
    opacity: 1;
    display: block;
  }
  
  div.slide-modal div.contact a:hover div.hover-dot,
  div.slide-modal div.contact a:focus div.hover-dot {
    opacity: 1;
    display: block;
  }
  
  div.slide-modal div.social-media a:hover svg path {
    fill: var(--background-contrast-hover-strong);
  }
  
  /****** navigation-logo-isolated ******/
  #navigation-logo-isolated a {
    display: flex;
    align-items: center;
    width: fit-content;
    width: -moz-fit-content;
  }
  
  #navigation-logo-isolated img.logo {
    max-width: 220px;
    max-height: 100px;
  }
  
  /****** insert component ******/
  
  /* COMPONENTS end */
  
  /* CUSTOM start */
  /****** banner ******/
  /* >>>>> banner general <<<<< */
  section.banner {
    height: calc(100vh - 105px);
    background: var(--background-contrast);
    overflow: hidden;
    position: relative;
  }
  
  section.banner div.container {
    height: 100%;
    position: relative;
  }
  
  div.banner-text h1 {
    font-size: 5rem;
    margin: unset;
    line-height: unset;
    font-weight: 800;
  }
  
  div.meerkat-first-isolated {
    background-image: url(images/meerkat_01.png), url(images/meerkat_01_background.png);
    background-repeat: no-repeat;
    height: 800px;
    width: 800px;
    transform: scale(0.82);
    position: absolute;
    background-blend-mode: lighten;
    bottom: -186px;
    left: -280px;
  }
  
  div.meerkat-second-isolated {
    background-image: url(images/meerkat_02.png), url(images/meerkat_02_background.png);
    background-repeat: no-repeat;
    height: 800px;
    width: 800px;
    transform: scale(0.74);
    position: absolute;
    background-blend-mode: lighten;
    bottom: -294px;
    left: -31px;
  }
  
  div.meerkat-third-isolated {
    background-image: url(images/meerkat_03.png), url(images/meerkat_03_background.png);
    background-repeat: no-repeat;
    height: 800px;
    width: 800px;
    transform: scale(0.65);
    position: absolute;
    background-blend-mode: lighten;
    bottom: -319px;
    right: -270px;
  }
  
  div.meerkat-fourth-isolated {
    background-image: url(images/meerkat_04.png), url(images/meerkat_04_background.png);
    background-repeat: no-repeat;
    height: 800px;
    width: 800px;
    transform: scale(0.75);
    position: absolute;
    background-blend-mode: lighten;
    bottom: -199px;
    right: -580px;
  }
  
  /*
  div.meerkat.left-group {
  background-image: url(https://pape-werbe-ag.batix.ch/pic/18DEF6DF57B_1100x1100.png), url(https://pape-werbe-ag.batix.ch/pic/18DEF6E0BE4_1100x1100.png);
  background-blend-mode: lighten;
  background-repeat: no-repeat;
  height: 1100px;
  width: 1100px;
  transform: scale(1);
  position: absolute;
  bottom: 0;
  left: 0;
  }
  */
  
  div.text-dot-banner {
    width: 16px;
    height: 16px;
    border-radius: 99px;
    background: var(--background-accent);
  }
  
  
  /* >>>>> banner home <<<<< */
  section#banner-home div.banner-text {
    overflow: hidden;
    position: absolute;
    top: calc(50vh - 105px);
    /*
    left: calc(((100vw - 1320px) / 2) - 245px);
    */
    transform: translateY(-40%);
    z-index: 10;
    user-select: none;
  }
  
  section#banner-home div.text-top-line,
  section#banner-home div.text-center-line,
  section#banner-home div.text-bottom-line {
    font-size: 5rem;
    white-space: nowrap;
    font-weight: 800;
    letter-spacing: -3px;
    display: flex;
    flex-direction: row;
    column-gap: 25px;
    align-items: center;
  }
  
  section#banner-home div.text-top-line {
    justify-content: end;
    margin-left: calc(((100vw - 1320px) / 2) + 812px);
    column-gap: 16px;
  }
  
  section#banner-home div.text-center-line {
    margin-left: calc(((100vw - 1320px) / 2) - 833px);
  }
  
  section#banner-home div.text-bottom-line {
    justify-content: start;
    margin-left: calc(((100vw - 1320px) / 2) - 2114px);
    column-gap: 16px;
  }
  
  /* >>>>> banner projects <<<<< */
  section#banner-projects div.banner-text {
    overflow: hidden;
    position: absolute;
    top: calc(50vh - 105px);
    /*
    left: calc(((100vw - 1320px) / 2) - 245px);
    */
    transform: translateY(-40%);
    z-index: 10;
    user-select: none;
  }
  
  section#banner-projects div.text-top-line,
  section#banner-projects div.text-center-line,
  section#banner-projects div.text-bottom-line {
    font-size: 5rem;
    white-space: nowrap;
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    flex-direction: row;
    column-gap: 25px;
    align-items: center;
  }
  
  
  section#banner-projects div.text-top-line {
    justify-content: end;
    margin-left: calc(((100vw - 1320px) / 2) + 806px);
    column-gap: 16px;
  }
  
  section#banner-projects div.text-center-line {
    margin-left: calc(((100vw - 1320px) / 2) - 996px);
  }
  
  section#banner-projects div.text-bottom-line {
    justify-content: start;
    margin-left: calc(((100vw - 1320px) / 2) - 1420px);
    column-gap: 16px;
  }
  /* >>>>> banner about <<<<< */
  section#banner-about-us div.banner-text {
    overflow: hidden;
    position: absolute;
    top: calc(50vh - 105px);
    /*
    left: calc(((100vw - 1320px) / 2) - 245px);
    */
    transform: translateY(-40%);
    z-index: 10;
    user-select: none;
  }
  
  section#banner-about-us div.text-top-line,
  section#banner-about-us div.text-center-line,
  section#banner-about-us div.text-bottom-line {
    font-size: 5rem;
    white-space: nowrap;
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    flex-direction: row;
    column-gap: 25px;
    align-items: center;
  }
  
  section#banner-about-us div.text-top-line {
    justify-content: unset;
    margin-left: calc(((100vw - 1320px) / 2) + 810px);
    column-gap: 16px;
  }
  
  section#banner-about-us div.text-center-line.center-top {
    margin-left: calc(((100vw - 1320px) / 2) + 413px);
  }
  
  section#banner-about-us div.text-center-line.center-bottom {
    margin-left: calc(((100vw - 1320px) / 2) - 2403px);
  }
  
  section#banner-about-us div.text-bottom-line {
    justify-content: start;
    margin-left: calc(((100vw - 1320px) / 2) - 1332px);
    column-gap: 16px;
  }
  
  /* >>>>> banner errorpage <<<<< */
  section#banner-error div.banner-text {
    overflow: hidden;
    position: absolute;
    top: calc(50vh - 105px);
    /*
    left: calc(((100vw - 1320px) / 2) - 245px);
    */
    transform: translateY(-65%);
    z-index: 10;
    user-select: none;
  }
  
  section#banner-error div.text-top-line,
  section#banner-error div.text-center-line,
  section#banner-error div.text-bottom-line {
    font-size: 5rem;
    white-space: nowrap;
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    flex-direction: row;
    column-gap: 25px;
    align-items: center;
  }
  
  section#banner-error div.text-top-line {
    justify-content: unset;
    margin-left: calc(((100vw - 1320px) / 2) - 1214px);
    column-gap: 16px;
  }
  
  section#banner-error div.text-center-line.center-top {
    /*
    margin-left: calc(((100vw - 1320px) / 2) + 413px);
    */
    justify-content: center;
    width: 100vw;
  }
  
  section#banner-error div.text-center-line.center-center {
    /*
    margin-left: calc(((100vw - 1320px) / 2) - 2403px);
    */
    justify-content: center;
    width: 100vw;
  }
  
  section#banner-error div.text-center-line.center-bottom {
    /*
    margin-left: calc(((100vw - 1320px) / 2) - 2403px);
    */
    justify-content: center;
    width: 100vw;
  }
  
  section#banner-error div.text-bottom-line {
    justify-content: start;
    margin-left: calc(((100vw - 1320px) / 2) - 1332px);
    column-gap: 16px;
  }
  
  section#banner-error div.meerkat-first-isolated,
  section#banner-error div.meerkat-third-isolated,
  section#banner-error div.meerkat-fourth-isolated {
    display: none;
  }
  
  section#banner-error div.meerkat-second-isolated {
    bottom: -430px;
    left: 408px;
  }
  
  /****** offer ******/
  /* >>>>> offer home <<<<< */
  section.offer {
    position: relative;
    overflow: hidden;
  }
  
  section.offer h2 {
    margin: unset;
    font-size: 2.563rem;
    font-weight: 800;
    display: flex;
    flex-direction: row;
    column-gap: 11px;
  }
  
  section.offer div.title {
    margin: 70px 0 25px;
    position: relative;
  }
  
  section.offer div.title div.left,
  section.offer div.title div.right {
    display: flex;
    flex-direction: row;
    column-gap: 11px;
    white-space: nowrap;
    font-size: 2.563rem;
    font-weight: 800;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    user-select: none;
  }
  
  section.offer div.title div.left {
    left: -1445px;
  }
  
  section.offer div.title div.right {
    left: 360px;
  }
  
  section.offer div.entry {
    position: relative;
    /*
    overflow: hidden;
    */
  }
  
  section.offer div.entry-container {
    overflow: hidden;
    transition: max-height 200ms linear;
  }
  
  div.entry[data-offer-entry="visible"] div.entry-container {
    transition: max-height 400ms linear;
  }
  
  section.offer div.headline {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    padding: 20px 0 25px;
    /*
    justify-content: space-between;
    */
    /*
    position: relative;
    */
    /*
    border-bottom: 1px solid var(--border-grey-dark);
    */
  }
  
  section.offer h3 {
    font-size: 4.063rem;
    font-weight: 600;
    margin: unset;
    max-width: 700px;
    user-select: none;
    /*
    display: flex;
    flex-direction: row;
    column-gap: 22px;
    align-items: center;
    */
  }
  
  section.offer div.hover-dot {
    display: none;
    height: 50px;
    width: 50px;
    border-radius: 99px;
    background: var(--background-grey);
    margin-left: 22px;
  }
  
  section.offer div.hover-dot[data-hover="active"] {
    display: block;
  }
  
  section.offer div.entry[data-offer-entry="visible"] div.hover-dot {
    display: block;
    position: absolute;
    margin-left: 0;
    transition: left 300ms ease-in-out, background 150ms ease-out;
    background: var(--background-accent);
    transform: translateX(-50px);
  }
  
  section.offer div.teaser-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    row-gap: 11px;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-left: auto;
    opacity: 1;
  }
  
  div.entry[data-offer-entry="visible"] div.teaser-text {
    position: absolute;
    right: 0;
    transition: opacity 100ms ease-out;
    transition-delay: 150ms;
    opacity: 0;
  }
  
  div.fluid-border-bottom {
    width: 500%;
    border-bottom: 1px solid var(--border-grey-dark);
    position: absolute;
    bottom: 0;
    left: -2000px;
  }
  
  section.offer div.dropdown {
    display: none;
    padding-bottom: 20px;
  }
  
  section.offer div.dropdown-text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
  }
  
  section.offer div.dropdown-text p {
    margin: 0;
  }
  
  div.entry[data-offer-entry="visible"] div.dropdown {
    display: grid;
  }
  
  div.entry div.dropdown-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 35px 0;
  }
  
  /*
  section.offer div.content {
  padding-bottom: 60px;
  }
  */
  
  section.offer div.content div.entry:last-child div.fluid-border-bottom {
    display: none;
  }	
  
  /* >>>>> animations <<<<< */
  
  /****** contact form ******/
  /* >>>>> contact form home <<<<< */
  section.contact-form {
    position: relative;
    overflow: hidden;
    padding: 60px 0 80px;
  }
  
  section.contact-form h2 {
    margin: unset;
    font-size: 2.563rem;
    font-weight: 800;
    display: flex;
    flex-direction: row;
    column-gap: 11px;
  }
  
  section.contact-form div.title {
    margin: 0;
    position: relative;
  }
  
  section.contact-form div.title div.left,
  section.contact-form div.title div.right {
    display: flex;
    flex-direction: row;
    column-gap: 11px;
    white-space: nowrap;
    font-size: 2.563rem;
    font-weight: 800;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    user-select: none;
  }
  
  section.contact-form div.title div.left {
    left: -1960px;
  }
  
  section.contact-form div.title div.right {
    left: 489px;
  }
  
  section.contact-form div.subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 20px;
  }
  
  section.contact-form form div.inputs {
    display: flex;
    flex-direction: row;
    column-gap: 40px;
    margin-top: 70px;
  }
  
  section.contact-form form div.inputs div.right, 
  section.contact-form form div.inputs div.left {
    flex: 1;
    width: 100%;
  }
  
  section.contact-form form div.inputs div.left {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    column-gap: 40px;
    row-gap: 20px;
  }
  
  div.input-half,
  div.input-full {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
  }
  
  div.input-full {
    height: 100%;
  }
  
  section.contact-form label {
    width: fit-content;
    width: -moz-fit-content;
    position: relative;
    font-size: 0.875rem;
    font-weight: 500;
  }
  
  section.contact-form label span.required-dot {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--background-contrast);
    border-radius: 99px;
    top: 8px;
    right: -12px;
  }
  
  section.contact-form input {
    font-size: 0.75rem;
    color: var(--text-contrast);
    font-weight: normal;
    outline: none;
    border: 1px solid var(--border-contrast);
    padding: 13px;
  }
  
  section.contact-form input::placeholder {
    color: var(--text-grey-input);
  }
  
  section.contact-form input[data-requirement-hint="true"],
  section.contact-form textarea[data-requirement-hint="true"] {
    border-color: var(--text-attention);
  }
  
  section.contact-form label[data-requirement-hint="true"] span.required-dot {
    background-color: var(--background-attention);
  }
  
  section.contact-form label[data-requirement-hint="false"] span.required-dot {
    background-color: var(--background-success);
  }
  
  section.contact-form textarea {
    font-size: 0.75rem;
    color: var(--text-contrast);
    font-weight: normal;
    outline: none;
    border: 1px solid var(--border-contrast);
    padding: 13px;
    font-family: 'Open Sans';
    height: 100%;
    resize: none;
  }
  
  section.contact-form textarea::placeholder {
    color: var(--text-grey-input);
  }
  
  section.contact-form div.agb-and-submit {
    display: flex;
    flex-direction: row;
    width: 100%;
    column-gap: 40px;
    margin-top: 40px;
  }
  
  section.contact-form div.agb,
  section.contact-form div.submit {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  
  section.contact-form div.agb {
    column-gap: 18px;
  }
  
  section.contact-form div.agb p {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.9;
  }
  
  div.agb div.checkbox-container {
    display: flex;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 99px;
    overflow: hidden;
  }
  
  div.agb div.checkbox-container input {
    width: 40px;
    height: 40px;
    margin: 0;
    border-radius: 99px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
  }
  
  div.agb div.checkbox-container span.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    width: 40px;
    border-radius: 99px;
    background-color: var(--background-grey-input);
    pointer-events: none;
  }
  
  div.agb div.checkbox-container span.checkmark:after {
    display: none;
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 99px;
    background-color: var(--background-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  section.contact-form div.agb-text {
    flex: 1;
  }
  
  section.contact-form button.btn-submit {
    width: 100%;
    justify-content: space-between;
  }	
  
  /* >>>>> hover & checked effects <<<<< */
  section.contact-form div.agb a:hover {
    text-decoration: underline; 
  }
  
  div.agb div.checkbox-container:hover input ~ span.checkmark {
    background-color: var(--background-grey-hover);
  }
  
  div.agb div.checkbox-container input:checked ~ span.checkmark {
    background-color: var(--background-contrast);
  }
  
  div.agb div.checkbox-container input:checked ~ span.checkmark:after {
    display: block;
  }
  
  /****** about us ******/
  /* >>>>> top half <<<<< */
  section.about-us {
    position: relative;
    overflow: hidden;
  }
  
  section.about-us div.top div.subcontainer {
    padding: 70px 0 65px;
  }
  
  section.about-us div.title {
    margin-bottom: 5px;
    position: relative;
  }
  
  section.about-us div.subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  section.about-us h2 {
    margin: unset;
    font-size: 2.563rem;
    font-weight: 800;
    display: flex;
    flex-direction: row;
    column-gap: 11px;
  }
  
  section.about-us div.title div.left,
  section.about-us div.title div.right {
    display: flex;
    flex-direction: row;
    column-gap: 11px;
    white-space: nowrap;
    font-size: 2.563rem;
    font-weight: 800;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    user-select: none;
  }
  
  section.about-us div.title div.left {
    left: -2193px;
  }
  
  section.about-us div.title div.right {
    left: 438px;
  }
  
  section.about-us div.content p {
    margin: 40px 0 0;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 2.2;
  }
  
  /* >>>>> bottom half <<<<< */
  section.about-us div.bottom {
    background: var(--background-contrast);
    color: var(--text-white);
  }
  
  section.about-us div.bottom div.subcontainer {
    padding: 60px 0 90px;
  }
  
  section.about-us div.bottom div.content {
    display: flex;
    flex-direction: row;
  }
  
  section.about-us div.bottom h2 {
    font-size: 3.75rem;
    font-weight: 500;
    margin-bottom: 20px;
  }
  
  section.about-us div.bottom div.left {
    display: grid;
    /*
    row-gap: 13px;
    */
    flex: 1;
  }
  
  section.about-us div.bottom div.left span {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase; 
  }
  
  section.about-us div.bottom div.right {
    display: grid;
    row-gap: 6px;
    justify-items: end;
    flex: 1;
  }
  
  section.about-us div.since-40-years {
    color: var(--text-accent);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 6px;
  }	
  
  section.about-us div.bottom div.right span {
    font-size: 1.875rem;
    font-weight: 600;
    text-align: right;
  }
  
  /****** team ******/
  section.team {
    padding: 90px 0 100px;
  }
  
  section.team div.subcontainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    column-gap: 20px;
    row-gap: 40px;
  }
  
  section.team figure {
    display: flex;
  }
  
  section.team div.entry img {
    width: 100%;
  }
  
  section.team div.member-information {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 13px;
  }
  
  section.team div.information-left {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    max-width: 210px;
    display: block;
  }
  
  section.team h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
    white-space: nowrap;
  }
  
  section.team div.information-right span:not(div.mail-icon span) {
    font-size: 0.875rem;
    font-weight: 500;
  }	
  
  section.team a {
    display: grid;
    row-gap: 4px;
  }
  
  section.team div.mail-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    column-gap: 9px;
  }
  
  section.team div.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-contrast);
    border-radius: 99px;
    padding: 7px;
  }
  
  section.team div.icon svg {
    width: 16px;
    height: 16px;
  }
  
  section.team div.icon svg path.icon {
    fill: var(--background-contrast);
  }	
  
  section.team div.mail-icon span {
    font-size: 0.875rem;
    font-weight: bold;
  }
  
  /* >>>>> hover effects <<<<< */
  section.team a:hover div.icon {
    border-color: var(--border-contrast);
    background: var(--background-contrast);
  }
  
  section.team a:hover div.icon svg path#background {
    fill: var(--background-contrast);
  }
  
  section.team a:hover div.icon svg path.icon {
    fill: var(--background-white);
  }
  
  /****** instagram feed ******/
  section.instagram-feed {
    padding: 75px 0 100px;
  }
  
  /*
  section.instagram-feed div.subcontainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  */
  
  div.profile-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 40px;
  }
  
  div.profile-header div.stats {
    display: flex;
    flex-direction: row;
    column-gap: 25px;
    margin-left: 20px;
  }
  
  div.profile-header div.stats > div {
    display: grid;
    justify-items: center;
    row-gap: 3px;
  }
  
  div.profile-header h2,
  div.profile-header h3 {
    margin: 0;
  }
  
  section.instagram-feed div.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 99px;
    /*
    border: 2px solid var(--border-contrast);
    */
    background: var(--background-contrast);
  }
  
  section.instagram-feed figure {
    padding: 12px;
  }
  
  section.instagram-feed figure img {
    width: 100%
  }
  
  section.instagram-feed div.name span {
    color: var(--text-grey-input);
  }
  
  section.instagram-feed div.stats span {
    font-size: 1.17rem;
    font-weight: bold;
  }
  
  section.instagram-feed div.stats h3 {
    color: var(--text-grey-input);
    font-size: 1rem;
    font-weight: 500;
  }
  
  div.profile-header div.cta {
    margin-left: 20px;
  }
  
  section.instagram-feed div.post-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  
  section.instagram-feed div.post-container > div:last-child {
    display: none;
  }
  
  div.instagram-post {
    position: relative;
    height: 417px;
    width: 100%;
    overflow: hidden;
  }
  
  div.instagram-post div.loader {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #BBBBBB;
  }
  
  div.instagram-post div.loader[data-page-loading="finished"] {
    display: none;
  }
  
  div.instagram-positioner {
    margin-top: -55px;
  }
  
  /*
  div.instagram-post div.blocker-top {
  position: absolute;
  top: 0;
  width: 100%;
  height: 6%;
  background: blue;
  }
  */
  
  section.instagram-feed iframe {
    background: transparent!important;
    border: none!important;
    border-radius: unset!important;
    margin: 0!important;
    max-width: unset!important;
    min-width: unset!important;
    width: 100%!important;
  }
  
  section.instagram-feed  div.instagram-positioner[data-image-format="landscape"] iframe {
    width: 133%!important;
  }
  
  /* >>>>> loading animations <<<<< */
  /* ellipsis */
  /*
  .lds-ellipsis {
  display: inline-block;
  position: absolute;
  width: 80px;
  height: 80px;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  }
  .lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--background-contrast);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
  }
  @keyframes lds-ellipsis1 {
  0% {
  transform: scale(0);
  }
  100% {
  transform: scale(1);
  }
  }
  @keyframes lds-ellipsis3 {
  0% {
  transform: scale(1);
  }
  100% {
  transform: scale(0);
  }
  }
  @keyframes lds-ellipsis2 {
  0% {
  transform: translate(0, 0);
  }
  100% {
  transform: translate(24px, 0);
  }
  }
  */
  
  /* ripples */
  .lds-ripple {
    display: inline-block;
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
  }
  
  .lds-ripple div {
    position: absolute;
    border: 4px solid #fff;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  }
  
  .lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
  }
  
  div.instagram-post div.loader[data-page-loading="finished"] .lds-ripple div {
    animation-play-state: paused;
  }
  
  @keyframes lds-ripple {
    0% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 0;
    }
    4.9% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 0;
    }
    5% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 1;
    }
    100% {
      top: 0px;
      left: 0px;
      width: 72px;
      height: 72px;
      opacity: 0;
    }
  }
  
  /****** legalitäten ******/
  section.imprint,
  section.data-protection {
    overflow: hidden;
    padding-bottom: 70px;
  }
  
  section.imprint h1,
  section.data-protection h1 {
    margin: unset;
    font-size: 2.563rem;;
    font-weight: 800;
    display: flex;
    flex-direction: row;
    column-gap: 11px;
  }
  
  section.imprint ul,
  section.data-protection ul {
    list-style-type: inherit;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
  }
  
  
  section.imprint div.title,
  section.data-protection div.title {
    margin: 70px 0 10px;
    position: relative;
  }
  
  section.imprint div.title div.left,
  section.imprint div.title div.right,
  section.data-protection div.title div.left,
  section.data-protection div.title div.right {
    display: flex;
    flex-direction: row;
    column-gap: 11px;
    white-space: nowrap;
    font-size: 2.563rem;
    font-weight: 800;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    user-select: none;
  }
  
  section.imprint div.content,
  section.data-protection div.content {
    display: grid;
    row-gap: 25px;
  }
  
  section.imprint div.entry h2,
  section.data-protection div.entry h2 {
    font-size: 1.625rem;
    margin: 0;
    text-transform: uppercase;
  }
  
  section.imprint div.entry p,
  section.data-protection div.entry p {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
    color: var(--text-contrast-alternative);
  }
  
  /* >>>>> imptressum <<<<< */
  section.imprint div.title div.left {
    left: -2842px;
  }
  
  section.imprint div.title div.right {
    left: 685px;
  }
  
  /* >>>>> datenschutz <<<<< */
  section.data-protection div.title div.left {
    left: -2818px;
  }
  
  section.data-protection div.title div.right {
    left: 739px;
  }
  
  /* >>>>> hover effects <<<<< */
  
  section.imprint a:hover {
    color: var(--text-contrast-alternative-hover);
  }
  
  
  /****** footer ******/
  #footer-wrap {
    height: 100%;
  }
  
  #footer-subcontainer {
    height: 100%;
    display: grid;
    align-items: center;
  }
  
  /* >>>>> partner part of the footer <<<<< */
  section.footer-section-partner {
    height: 220px;
    background: var(--background-accent);
  }
  
  section.footer-section-partner div.container {
    height: 100%;
  }
  
  section.footer-section-partner div.subcontainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }
  
  /*
  section.footer-section-partner figure {
  flex: 1;
  }
  */
  
  section.footer-section-partner img {
    max-height: 90px;
  }
  
  /* >>>>> text part of the footer <<<<< */
  section.footer-section-text {
    color: var(--text-white);
    background: var(--background-contrast);
    height: 220px;
    display: flex;
    align-items: center;
  }
  
  section.footer-section-text div.subcontainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  section.footer-section-text div.contact {
    display: grid;
    row-gap: 35px;
  }
  
  section.footer-section-text div.address div.content {
    font-size: 0.875rem;
    display: flex;
    flex-direction: row;
    column-gap: 13px;
    align-items: center;
    margin-top: 6px;
  }
  
  section.footer-section-text div.address{
    font-size: 0.875rem;
  }
  
  section.footer-section-text div.address span {
    font-weight: 700;
    user-select: none;
  }
  
  section.footer-section-text div.address div.footer-dot {
    width: 6px;
    height: 6px;
    border-radius: 99px;
    background: var(--text-accent);
  }
  
  section.footer-section-text div.contact-links {
    display: flex;
    flex-direction: row;
    column-gap: 70px;
  }
  
  section.footer-section-text div.contact-links a {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    align-items: center;
  }
  
  section.footer-section-text div.contact-links a span {
    font-size: 0.875rem;
    font-weight: 700;
    user-select: none;
  }
  
  section.footer-section-text div.contact-links a div.phone-number,
  section.footer-section-text div.contact-links a div.mail-address {
    font-size: 0.75rem;
    font-weight: 500;
  }
  
  section.footer-section-text div.contact-links div.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-white);
    border-radius: 99px;
    padding: 7px;
  }
  
  section.footer-section-text div.contact-links div.icon svg {
    width: 16px;
    height: 16px;
  }
  
  /*
  section.footer-section div.additions {
  display: grid;
  row-gap: 55px;
  }
  */
  
  section.footer-section-text div.social-media {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    column-gap: 30px;
  }
  
  section.footer-section-text div.additions div.secondary-nav-links {
    font-size: 0.75rem;
    display: flex;
    flex-direction: row;
    column-gap: 35px;
    margin: 30px 0 15px;
  }
  
  section.footer-section-text div.additions div.copyright {
    font-size: 0.75rem;
    color: #B6B6B6;
    text-align: right;
  }
  
  /* >>>>> hover effects <<<<< */
  section.footer-section-text div.contact-links a:hover div.icon,
  section.footer-section-text div.contact-links a:focus div.icon {
    border-color: var(--border-accent);
  }
  
  section.footer-section-text div.contact-links a:hover svg path.icon,
  section.footer-section-text div.contact-links a:focus svg path.icon {
    fill: var(--background-accent);
  }
  
  section.footer-section-text div.social-media a:hover svg path,
  section.footer-section-text div.social-media a:focus svg path {
    fill: var(--background-accent);
  }
  
  section.footer-section-text div.additions div.secondary-nav-links a:hover,
  section.footer-section-text div.additions div.secondary-nav-links a:focus {
    color: var(--text-accent);
  }
  
  /* CUSTOM end */
  
  /* RESPONSIVENESS start */
  /****** container ******/
  @media screen and (min-width: 576px) {
    .container {
      max-width: 540px;
    }
  }
  @media screen and (min-width: 768px) {
    .container {
      max-width: 720px;
    }
  }
  @media screen and (min-width: 992px) {
    .container {
      max-width: 960px;
    }
  }
  @media screen and (min-width: 1200px) {
    .container {
      max-width: 1140px;
    }
  }
  @media screen and (min-width: 1400px) {
    .container {
      max-width: 1320px;
    }
  }
  /* !!!!! only if necessary and included in the budget | nur falls nötig und im Budget !!!!! */
  /*
  @media screen and (min-width: 1600px) {
  .container {
  max-width: 1500px;
  }
  }
  @media screen and (min-width: 1800px) {
  .container {
  max-width: 1680px;
  }
  }
  @media screen and (min-width: 2000px) {
  .container {
  max-width: 1860px;
  }
  }
  */
  
  /****** tablet ******/
  @media screen and (max-width: 992px) {
    /****** burger menu slide modal ******/
    #burger-navigation-slide-in-modal {
      width: 100%;
    }
  
    #burger-navigation-slide-in-modal div.slide-modal-placeholder {
      width: unset;
    }
  
    div.slide-modal {
      width: 100%;
    }
  
    div.slide-modal div.special-text[data-special-text="home"] {
      font-size: 4rem;
      top: calc(50vh - 20px);
      display: none;
    }
  
    div.slide-modal div.special-text[data-special-text="home"][data-media="mobile"] {
      display: grid;
      top: calc(50vh - 24px);
      left: calc(50% - (var(--container-mobile-l) / 2));
    }
  
    #burger-navigation-slide-in-modal[data-burger-menu-visible="true"] div.slide-modal div.special-text[data-special-text="home"][data-media="mobile"][data-burger-menu-special-text="visible"] {
      opacity: 1;
      transition: opacity 200ms ease-in-out;
      transition-delay: 200ms;
    }
  
    div.slide-modal div.special-text[data-special-text="projects"] {
      font-size: 4rem;
      top: calc(50vh - 20px);
      display: none;
    }
  
    div.slide-modal div.special-text[data-special-text="projects"][data-media="mobile"] {
      display: grid;
      top: calc(50vh - 24px);
      left: calc(50% - (var(--container-mobile-l) / 2));
    }
  
    #burger-navigation-slide-in-modal[data-burger-menu-visible="true"] div.slide-modal div.special-text[data-special-text="projects"][data-media="mobile"][data-burger-menu-special-text="visible"] {
      opacity: 1;
      transition: opacity 200ms ease-in-out;
      transition-delay: 200ms;
    }
  
    div.slide-modal div.special-text[data-special-text="about-us"] {
      font-size: 4rem;
      top: calc(50vh - 20px);
      display: none;
    }
  
    div.slide-modal div.special-text[data-special-text="about-us"][data-media="mobile"] {
      display: grid;
      top: calc(50vh - 24px);
      left: calc(50% - (var(--container-mobile-l) / 2));
    }
  
    #burger-navigation-slide-in-modal[data-burger-menu-visible="true"] div.slide-modal div.special-text[data-special-text="about-us"][data-media="mobile"][data-burger-menu-special-text="visible"] {
      opacity: 1;
      transition: opacity 200ms ease-in-out;
      transition-delay: 200ms;
    }
  
    /*
    div.slide-modal div.logo[data-media="mobile"] {
    display: block;
    left: calc(50% - (var(--container-mobile-l) / 2));
    top: calc(50vh - 67px);
  }
  
    #burger-navigation-slide-in-modal[data-burger-menu-visible="true"] div.slide-modal div.logo[data-media="mobile"] {
    opacity: 1;
    transition: opacity 200ms ease-in-out;
    transition-delay: 200ms;
  }
    */
  
    div.slide-modal div.navigation div.hover-dot {
      display: none !important;
    }
  
    /****** banner ******/
    div.banner-text h1 {
      font-size: 4rem;
    }
  
    div.meerkat-first-isolated {
      transform: scale(0.75);
      bottom: -212px;
    }
  
    div.meerkat-second-isolated {
      transform: scale(0.64);
      bottom: -302px;
      left: -61px;
    }
  
    div.meerkat-third-isolated {
      transform: scale(0.55);
      bottom: -297px;
      right: -317px;
    }
  
    div.meerkat-fourth-isolated {
      transform: scale(0.65);
    }
  
    /* >>>>> banner home <<<<< */
    section#banner-home div.text-top-line,
    section#banner-home div.text-center-line,
    section#banner-home div.text-bottom-line {
      font-size: 4rem;
    }
  
    section#banner-home div.text-top-line {
      margin-left: calc(((100vw - 1320px) / 2) + 708px);
    }
  
    section#banner-home div.text-center-line {
      margin-left: calc(((100vw - 1320px) / 2) - 591px);
    }
  
    section#banner-home div.text-bottom-line {
      margin-left: calc(((100vw - 1320px) / 2) - 1639px);
    }
  
    /* >>>>> banner projects <<<<< */
    section#banner-projects div.text-top-line,
    section#banner-projects div.text-center-line,
    section#banner-projects div.text-bottom-line {
      font-size: 4rem;
    }
  
    section#banner-projects div.text-top-line {
      margin-left: calc(((100vw - 1320px) / 2) + 630px);
    }
  
    section#banner-projects div.text-center-line {
      margin-left: calc(((100vw - 1320px) / 2) - 825px);
    }
  
    section#banner-projects div.text-bottom-line {
      margin-left: calc(((100vw - 1320px) / 2) - 1172px);
    }
  
    /* >>>>> banner about-us <<<<< */
    div.banner-text h1 {
      font-size: 4rem;
    }
  
    section#banner-about-us div.text-top-line,
    section#banner-about-us div.text-center-line,
    section#banner-about-us div.text-bottom-line {
      font-size: 4rem;
    }
  
    section#banner-about-us div.text-center-line.center-top {
      margin-left: calc(((100vw - 1320px) / 2) + 379px);
    }
  
    section#banner-about-us div.text-center-line.center-bottom {
      margin-left: calc(((100vw - 1320px) / 2) - 1884px);
    }
  
    section#banner-about-us div.text-top-line {
      margin-left: calc(((100vw - 1320px) / 2) + 695px);
    }
  
    section#banner-about-us div.text-bottom-line {
      margin-left: calc(((100vw - 1320px) / 2) - 1044px);
    }
  
    /* >>>>> banner error <<<<< */
    section#banner-error div.meerkat-second-isolated {
      left: 100px;
    }
  
    /****** offer element ******/
    section.offer div.title {
      margin-top: 55px;
    }
  
    section.offer h3 {
      font-size: 2rem;
      max-width: 323px;
    }
  
    section.offer div.teaser-text {
      text-align: right;
      font-size: 0.625rem;
      row-gap: 4px;
    }
  
    section.offer div.hover-dot {
      height: 35px;
      width: 35px;
    }
  
    section.offer div.dropdown-text {
      font-size: 0.875rem;
    }
  
    /* >>>>> contact form <<<<< */
    section.contact-form {
      padding: 40px 0 60px;
    }
  
    section.contact-form div.agb-and-submit {
      flex-direction: column;
      row-gap: 15px;
    }
  
    section.contact-form div.agb-and-submit {
      margin-top: 30px;
    }
  
    /***** instagram feed *****/
    section.instagram-feed div.post-container > div:last-child {
      display: block;
    }
  
    section.instagram-feed {
      padding: 60px 0 75px;
    }
  
    div.instagram-post {
      height: 325px;
    }
  
    section.instagram-feed iframe {
      width: 130%!important;
    }
  
    /****** about-us ******/
    section.about-us div.top div.subcontainer {
      padding: 55px 0 60px;
    }
  
    section.about-us div.content p {
      margin-top: 30px;
    }
  
    section.about-us div.bottom div.subcontainer {
      padding: 50px 0 70px;
    }
  
    section.about-us div.bottom div.content {
      flex-direction: column;
      row-gap: 37px;
    }
  
    section.about-us div.bottom div.left {
      row-gap: 12px;
    }	
  
    section.about-us div.bottom div.right {
      justify-items: start;
    }
  
    section.about-us div.subtitle {
      line-height: 1.6;
    }
  
    /****** team ******/
    section.team {
      padding: 70px 0 65px;
    }
  
    section.team div.entry {
      position: relative;
    }
  
    div.member-information div.information-right {
      position: absolute; 
      right: 0;
    }
  
    /****** legalities ******/
    section.imprint div.title,
    section.data-protection div.title {
      margin-top: 35px;
    }
  
    /****** footer ******/
    #content-wrap {
      padding-bottom: 490px; 
    }
  
    #footer {
      height: 490px;
    }
  
    /* >>>>> partner section <<<<< */
    section.footer-section-partner {
      height: 180px;
    }
  
    section.footer-section-partner img {
      max-height: 70px;
    }
  
    /* >>>>> text section <<<<< */
    section.footer-section-text {
      height: 310px;
    }
  
    section.footer-section-text div.subcontainer {
      flex-direction: column;
      align-items: start;
    }
  
    section.footer-section-text div.contact-links {
      column-gap: 37px;
    }
  
    section.footer-section-text div.additions {
      display: flex;
      flex-direction: row-reverse;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      margin-top: 50px;
    }
  
    section.footer-section-text div.additions div.secondary-nav-links {
      margin: 0;
    }
  }
  
  /****** smartphone ******/
  @media screen and (max-width: 768px) {
    /****** burger menu slide modal ******/
    div.slide-modal div.special-text[data-special-text="home"][data-media="mobile"] {
      left: calc(50% - (var(--container-mobile-m) / 2));
      font-size: 3rem;
      top: calc(50vh + 21px);
    }
  
    div.slide-modal div.special-text[data-special-text="projects"][data-media="mobile"] {
      left: calc(50% - (var(--container-mobile-m) / 2));
      font-size: 3rem;
      top: calc(50vh + 21px);
    }
  
    div.slide-modal div.special-text[data-special-text="about-us"][data-media="mobile"] {
      left: calc(50% - (var(--container-mobile-m) / 2));
      font-size: 3rem;
      top: calc(50vh + 21px);
    }
  
    /****** banner ******/
    div.meerkat-first-isolated {
      bottom: -248px;
      left: -287px;
    }
  
    div.meerkat-second-isolated {
      display: none;
    }	
  
    div.meerkat-third-isolated {
      bottom: -346px;
      right: -210px;
    }
  
    div.meerkat-fourth-isolated {
      bottom: -199px;
      right: -563px;
    }
  
    /* >>>>> banner home <<<<< */
    section#banner-home div.text-center-line {
      margin-left: calc((100vw - var(--container-mobile-m)) / 2);
    }
  
    section#banner-home div.text-center-line span.text-outline {
      display: none;
    }
  
    section#banner-home div.text-center-line h1 {
      display: grid;
    }
  
    section#banner-home div.banner-text {
      top: calc(50vh - 191px);
    }
  
    section#banner-home div.text-top-line {
      margin-left: calc(((100vw - 1320px) / 2) - 107px);
    }
  
    section#banner-home div.text-bottom-line {
      margin-left: calc(((100vw - 1320px) / 2) - 1198px);
    }
  
    /* >>>>> banner projects <<<<< */
    section#banner-projects div.text-center-line {
      margin-left: calc((100vw - var(--container-mobile-m)) / 2);
    }
  
    section#banner-projects div.text-center-line span.text-outline {
      display: none;
    }
  
    section#banner-projects div.text-center-line h1 {
      display: grid;
    }
  
    section#banner-projects div.banner-text {
      top: calc(50vh - 191px);
    }
  
    section#banner-projects div.text-top-line {
      margin-left: calc(((100vw - 1320px) / 2) - 224px);
    }
  
    section#banner-projects div.text-bottom-line {
      margin-left: calc(((100vw - 1320px) / 2) - 833px);
    }
  
    /* >>>>> banner about-us <<<<< */
    section#banner-about-us div.banner-text h1 {
      font-size: 3.5rem;
    }
  
    section#banner-about-us div.text-top-line,
    section#banner-about-us div.text-center-line,
    section#banner-about-us div.text-bottom-line {
      font-size: 3.5rem;
    }
  
    section#banner-about-us div.text-center-line.center-top,
    section#banner-about-us div.text-center-line.center-bottom {
      margin-left: calc((100vw - var(--container-mobile-m)) / 2);
    }
  
    section#banner-about-us div.text-center-line span.text-outline {
      display: none;
    }
  
    section#banner-about-us div.text-center-line h1 {
      display: grid;
    }
  
    section#banner-about-us div.banner-text {
      top: calc(50vh - 191px);
    }
  
    section#banner-about-us div.text-top-line {
      margin-left: calc(((100vw - 1320px) / 2) - 107px);
    }
  
    section#banner-about-us div.text-bottom-line {
      margin-left: calc(((100vw - 1320px) / 2) - 132px);
    }
  
    /* >>>>> banner error <<<<< */
    section#banner-error div.text-center-line.center-top,
    section#banner-error div.text-center-line.center-center,
    section#banner-error div.text-center-line.center-bottom {
      width: unset;
      justify-content: start;
      margin-left: calc((100vw - var(--container-mobile-m)) / 2);
      font-size: 3.4rem;
    }
  
    section#banner-error div.text-top-line {
      font-size: 3.4rem;
      margin-left: calc(((100vw - 1320px) / 2) - 1301px);
    }
  
    section#banner-error div.meerkat-second-isolated {
      display: block;
      left: -8px;
      transform: scale(0.54);
    }
  
    /****** offer element ******/
    section.offer div.title {
      margin-top: 45px;
    }
  
    section.offer h3 {
      font-size: 1.5rem;
      max-width: 245px;
    }
  
    section.offer div.hover-dot {
      position: absolute;
      background: transparent;
    }
  
    section.offer div.teaser-text {
      row-gap: 3px;
    }
  
    section.offer div.teaser-text span:nth-child(5) {
      display: none;
    }
  
    /****** contact form  ******/
    section.contact-form {
      padding: 30px 0 50px;
    }
  
    section.contact-form form div.inputs {
      flex-direction: column;
      margin-top: 40px;
      row-gap: 20px;
    }
  
    section.contact-form div.agb-and-submit {
      margin-top: 10px;
    }
  
    /***** instagram feed *****/
    div.profile-header {
      flex-direction: column;
      align-items: start;
      position: relative;
    }
  
    div.profile-header div.name {
      position: absolute;
      left: 92px;
      top: 4px;
    }
  
    div.profile-header div.cta {
      margin: 20px 0 0 0;
    }
  
    div.instagram-post {
      height: 490px;
    }
  
    section.instagram-feed iframe {
      width: 122%!important;
    }
  
    /***** about-us *****/
    section.about-us div.bottom h2 {
      font-size: 3.5rem;
      margin-bottom: 25px;
    }
  
    section.about-us div.bottom div.left span {
      line-height: 1.5;
    }
  
    /***** team *****/
    section.team div.information-left {
      max-width: unset;
    }
  
    /****** legalities ******/
    section.imprint h1,
    section.data-protection h1 {
      font-size: 2rem;
    }
  
    section.imprint div.title div.left,
    section.imprint div.title div.right,
    section.data-protection div.title div.left,
    section.data-protection div.title div.right {
      display: none;
    }
  
    section.imprint, section.data-protection {
      padding-bottom: 35px;
    }
  
    /****** footer ******/
    #content-wrap {
      padding-bottom: 540px; 
    }
  
    #footer {
      height: 540px;
    }
  
    /* >>>>> partner section <<<<< */
    section.footer-section-partner {
      height: 155px;
    }
  
    section.footer-section-partner img {
      max-height: 55px;
    }
  
    /* >>>>> text section <<<<< */
    section.footer-section-text {
      height: 385px;
    }
  
    section.footer-section-text div.additions {
      display: flex;
      flex-direction: column;
      align-items: start;
      justify-content: unset;
      margin-top: 30px;
      row-gap: 8px;
    }
  
    section.footer-section-text div.additions div.secondary-nav-links {
      margin-top: 20px;
    }
  
    section.footer-section-text div.contact-links {
      flex-wrap: wrap;
    }
  
    section.footer-section-text div.contact-links {
      column-gap: 20px;
      row-gap: 12px;
    }
  
  }
  
  @media screen and (max-width: 576px) {
    /****** global ******/
    .container {
      padding: 0 22px;
      width: unset;
    }
    /*
    #page-content {
    overflow: hidden;
  }
    */
  
    /****** header / navigation logo isolated ******/
    #navigation-logo-isolated img.logo {
      max-width: 180px;
    }
  
    /****** burger menu slide modal ******/
    div.slide-modal {
      align-items: start;
      height: 100svh;
      box-shadow: unset;
    }
  
    div.slide-modal-underlay {
      display: block;
      position: absolute;
      width: 100%;
      height: 100vh;
      top: 0;
      left: 0;
      background: var(--background-contrast);
      transform: translateX(100%);
    }
  
    #burger-navigation-slide-in-modal[data-burger-menu-visible="true"] div.slide-modal-underlay {
      transform: translateX(0);
      transition: transform 200ms ease-out;
    }
  
    div.slide-modal div.navigation {
      margin-top: 30px;
      align-items: start;
    }
  
    div.slide-modal nav ul {
      align-items: start;
      row-gap: 16px;
    }
  
    div.slide-modal div.contact div.hover-dot {
      display: none!important;
    }
  
    div.slide-modal div.special-text[data-special-text="home"][data-media="mobile"] {
      left: 22px;
      font-size: 2.9rem;
      letter-spacing: -2px;
      top: calc(50vh - 50px);
    }
  
    div.slide-modal div.special-text[data-special-text="projects"][data-media="mobile"] {
      left: 22px;
      font-size: 2.9rem;
      letter-spacing: -2px;
      top: calc(50vh - 50px);
    }
  
    div.slide-modal div.special-text[data-special-text="about-us"][data-media="mobile"] {
      left: 22px;
      font-size: 2.3rem;
      letter-spacing: -2px;
      top: calc(50vh - 25px);
    }
  
    div.slide-modal div.contact {
      margin-bottom: 55px;
    }
  
    div.slide-modal div.social-media {
      margin-bottom: 30px;
    }
  
    #burger-navigation-slide-in-modal div.slide-modal {
      padding: 0 22px;
    }
  
    #burger-navigation-slide-in-modal div.slide-modal-placeholder {
      display: none;
    }
  
    #burger-navigation-slide-in-icon {
      right: 22px;
      left: unset;
      transform: translateX(0);
    }
  
    /****** banner ******/
    section.banner {
      height: calc(100svh - 105px);
    }
  
    div.meerkat-first-isolated {
      display: none;
    }
  
    div.meerkat-third-isolated {
      left: 50%;
      margin-left: -322px;
      bottom: -317px;
    }
  
    div.meerkat-fourth-isolated {
      display: none;
    }
  
    div.text-dot-banner {
      width: 12px;
      height: 12px;
    }
  
    .text-white.text-outline,
    .text-yellow.text-outline {
      -webkit-text-fill-color: unset;
    }
  
    div.banner-text h1 {
      font-size: 3rem;
    }
  
    /* >>>>> banner home <<<<< */
    section#banner-home div.banner-text {
      top: calc(50svh - 230px);
    }
  
    section#banner-home div.text-top-line,
    section#banner-home div.text-center-line,
    section#banner-home div.text-bottom-line {
      font-size: 3rem;
    }
  
    section#banner-home div.text-top-line {
      margin-left: 20px;
    }
  
    section#banner-home div.text-center-line {
      margin-left: 20px;
    }
  
    section#banner-home div.text-bottom-line {
      margin-left: 20px;
    }
  
    section#banner-home div.text-top-line,
    section#banner-home div.text-bottom-line {
      letter-spacing: unset;
      font-weight: 600;
      column-gap: 10px;
      font-size: 1rem;
    }
  
    /* >>>>> banner projects <<<<< */
    section#banner-projects div.banner-text {
      top: calc(50svh - 230px);
    }
  
    section#banner-projects div.text-top-line,
    section#banner-projects div.text-center-line,
    section#banner-projects div.text-bottom-line {
      font-size: 3rem;
    }
  
    section#banner-projects div.text-top-line {
      margin-left: 20px;
    }
  
    section#banner-projects div.text-center-line {
      margin-left: 20px;
    }
  
    section#banner-projects div.text-bottom-line {
      margin-left: 20px;
    }
  
    section#banner-projects div.text-top-line,
    section#banner-projects div.text-bottom-line {
      letter-spacing: unset;
      font-weight: 600;
      column-gap: 10px;
      font-size: 1rem;
    }
  
    /* >>>>> banner about-us <<<<< */
    section#banner-about-us div.banner-text {
      top: calc(50svh - 230px);
    }
  
    section#banner-about-us div.text-top-line,
    section#banner-about-us div.text-center-line,
    section#banner-about-us div.text-bottom-line {
      font-size: 3rem;
    }
  
    section#banner-about-us div.text-top-line {
      margin-left: 20px;
    }
  
    section#banner-about-us div.text-center-line.center-top,
    section#banner-about-us div.text-center-line.center-bottom {
      margin-left: 20px;
      font-size: 2.4rem;
    }
  
    section#banner-about-us div.text-bottom-line {
      margin-left: 20px;
    }
  
    section#banner-about-us div.banner-text h1 {
      font-size: 2.4rem;
    }
  
    section#banner-about-us div.text-top-line,
    section#banner-about-us div.text-bottom-line {
      letter-spacing: unset;
      font-weight: 600;
      column-gap: 10px;
      font-size: 1rem;
    }
  
    /* >>>>> banner error <<<<< */
    section#banner-error div.banner-text {
      transform: translateY(-115%);
    }
  
    section#banner-error div.banner-text h1 {
      font-size: 1rem;
      font-weight: 600;
    }
  
    section#banner-error div.text-center-line.center-top,
    section#banner-error div.text-center-line.center-center,
    section#banner-error div.text-center-line.center-bottom {
      width: unset;
      justify-content: start;
      margin-left: 20px;
      font-size: 2.1rem;
    }
  
    section#banner-error div.text-top-line {
      letter-spacing: unset;
      font-weight: 600;
      column-gap: 10px;
      font-size: 1rem;
      margin-left: 20px
    }
  
    section#banner-error div.meerkat-second-isolated {
      left: 50%;
      margin-left: -307px;
      bottom: -362px;
    }
  
    /****** offer ******/
    section.offer div.title {
      margin-bottom: 5px;  
    }
  
    section.offer h2 {
      font-size: 2.438rem;
    }	
  
    section.offer div.title div.left,
    section.offer div.title div.right {
      display: none;
    }
  
    div.fluid-border-bottom {
      left: -1000px;
    }
  
    div.entry[data-offer-entry="visible"] div.dropdown {
      display: block;
    }
  
    section.offer div.teaser-text {
      display: none;
    }
  
    section.offer h3 {
      font-size: 1.7rem;
      max-width: 262px;
    }
  
    div.entry div.dropdown-buttons {
      flex-direction: column;
      align-items: start;
      margin: 30px 0 15px;
    }
  
    section.offer div.btn-standard {
      width: 100%;
    }
  
    section.offer div.btn-standard a {
      justify-content: space-between;
    }
  
    /****** contact form ******/
    section.contact-form {
      padding-top: 25px;
    }
  
    section.contact-form div.title h2 {
      font-size: 2.438rem;
      display: grid;
    }
  
    section.contact-form div.title div.left,
    section.contact-form div.title div.right {
      display: none;
    }
  
    section.contact-form div.agb p {
      font-size: 0.75rem;
    }
  
    section.contact-form h2 {
      font-size: 2.438rem;
    }
  
    /***** instagram feed ******/
    div.instagram-post {
      height: 340px;
    }
  
    section.instagram-feed {
      padding: 35px 0 50px;
    }
  
    section.instagram-feed div.post-container {
      grid-template-columns: unset;
    }
  
    section.instagram-feed iframe {
      width: 140%!important;
    }
  
    /***** about-us *****/
    section.about-us div.top div.subcontainer {
      padding: 30px 0 50px;
    }	
  
    section.about-us div.title {
      margin-bottom: 15px;
    }
  
    section.about-us h2 {
      flex-direction: column;
      font-size: 2.438rem;
    }
  
    section.about-us div.subtitle {
      line-height: 1.8;
    }
  
    section.about-us div.content p {
      font-size: 1rem;
      line-height: 1.8;
      margin-top: 25px;
    }
  
    section.about-us div.bottom div.left span {
      line-height: 1.6;
    }
  
    section.about-us div.bottom div.right {
      row-gap: 15px;
    }
  
    section.about-us div.since-40-years {
      margin-bottom: -6px;
    }
  
    section.about-us div.bottom div.right span {
      text-align: left;
    }
  
    section.about-us div.bottom div.subcontainer  {
      padding: 40px 0 55px;
    }
  
    /***** team *****/
    section.team {
      padding: 45px 0 55px;
    }
  
    section.team a {
      display: flex;
      flex-direction: row;
      column-gap: 10px;
      align-items: center;
      margin-top: 12px;
    }
  
    section.team div.member-information {
      flex-direction: column;
    }
  
    div.member-information div.information-right {
      position: unset;
    }
  
    section.team div.member-information {
      justify-content: unset;
      align-items: start;
    }
  
    section.team div.mail-icon {
      justify-content: start;
    }
  
    section.team div.subcontainer {
      grid-template-columns: unset;
    }
  
    /*
    section.team figure {
    max-width: calc(100vw - 44px);
  }
    */
  
    /****** footer ******/
    #content-wrap {
      padding-bottom: 675px; 
    }
  
    #footer {
      height: 675px;
    }
  
    /* >>>>> partner section <<<<< */
    section.footer-section-partner {
      height: 220px;
    }
  
    section.footer-section-partner div.subcontainer {
      display: grid;
      grid-template-columns: 1fr 1fr;
      justify-items: center;
      padding: 40px 0;
      height: unset;
      row-gap: 30px;
    }
  
    section.footer-section-partner img {
      max-height: 50px;
    }
  
    /* >>>>> text section <<<<< */
    section.footer-section-text div.address div.content {
      flex-direction: column;
      align-items: start;
      margin-top: 13px;
      row-gap: 3px;
    }
  
    section.footer-section-text div.address div.footer-dot {
      display: none;
    }
  
    section.footer-section-text div.contact-links {
      column-gap: 250px;
    }
  
    section.footer-section-text div.contact {
      row-gap: 25px;
    }
  
    section.footer-section-text {
      height: 455px;
    }	
  
    section.footer-section-text div.additions div.secondary-nav-links {
      margin-top: 25px;
    }
  
    section.footer-section-text div.additions {
      row-gap: 12px;
    }
  
  }
  
  @media screen and (max-width: 375px) {
    /****** navigation / logo isolated ******/
    #navigation-logo-isolated img.logo {
      max-width: 140px;
    }
  
    /****** navigation / logo isolated ******/
    div.slide-modal nav ul {
      font-size: 2rem;
    }
  
    /****** burger menu / slide modal ******/
    div.slide-modal div.contact {
      margin-bottom: 40px;
    }
  
    div.slide-modal div.special-text[data-special-text="home"][data-media="mobile"] {
      font-size: 2.3rem;
      top: calc(50vh - 30px);
    }
  
    div.slide-modal div.special-text[data-special-text="about-us"][data-media="mobile"] {
      font-size: 1.9rem;
      top: calc(50vh - 25px);
    }
  
    /****** banner ******/
    div.meerkat-third-isolated {
      bottom: -365px;
    }
  
    /* >>>>> banner home <<<<< */
    div.banner-text h1 {
      font-size: 2.5rem;
    }
  
    section#banner-home div.banner-text {
      top: calc(50svh - 195px);
    }
  
    /* >>>>> banner projects <<<<< */
    section#banner-projects div.banner-text {
      top: calc(50svh - 195px);
    }
  
    /* >>>>> banner about-us <<<<< */
    section#banner-about-us div.banner-text h1 {
      font-size: 2rem;
    }
  
    section#banner-about-us div.text-center-line.center-top,
    section#banner-about-us div.text-center-line.center-bottom {
      font-size: 2rem;
    }
  
    section#banner-about-us div.text-top-line,
    section#banner-about-us div.text-bottom-line {
      font-weight: 500;
    }
  
    section#banner-about-us div.banner-text {
      top: calc(50svh - 195px);
    }
  
    /* >>>>> banner error <<<<< */
    section#banner-error div.text-center-line.center-top,
    section#banner-error div.text-center-line.center-center,
    section#banner-error div.text-center-line.center-bottom {
      font-size: 1.8rem;
    }
  
    /****** offer ******/
    section.offer div.title {
      margin-top: 30px;
    }
  
    section.offer h2 {
      display: grid;
    }
  
    section.offer div.hover-dot {
      display: none!important;
    }
  
    section.contact-form form div.inputs {
      margin-top: 22px;
    }
  
    /***** instagram feed *****/
    div.profile-header h2 {
      font-size: 1.3rem;
    }
  
    div.profile-header div.name {
      top: 10px;
    }
  
    div.instagram-post {
      height: 280px;
    }
  
    section.instagram-feed {
      padding-bottom: 40px;
    }
  
    div.profile-header {
      margin-bottom: 35px;
    }
  
    /***** about-us *****/ 
    section.about-us div.top div.subcontainer {
      padding-bottom: 45px;
    }
  
    section.about-us div.bottom h2 {
      font-size: 3.3rem;
    }
  
    section.about-us div.bottom div.subcontainer  {
      padding: 35px 0 45px;
    }
  
    /***** team ******/
    section.team {
      padding-bottom: 45px;
    }
  
    section.team div.subcontainer {
      row-gap: 30px;
    }
  }
  
  /****** laptop & desktop ******/
  @media screen and (min-width: 992px) {
  
  }
  
  @media screen and (min-width: 992px) and (max-width: 1200px) {
    /****** burger menu slide modal ******/
    div.slide-modal {
      transform: translateX(55vw);
      width: 497px;
    }
  
    div.slide-modal div.special-text[data-special-text="home"] {
      font-size: 4.5rem;
      top: calc(50vh - 20px);
    }
  
    div.slide-modal div.special-text[data-special-text="projects"] {
      font-size: 4.5rem;
      top: calc(50vh - 20px);
    }
  
    div.slide-modal div.special-text[data-special-text="about-us"] {
      font-size: 4.5rem;
      top: calc(50vh - 59px);
    }
  
    /****** banner ******/
    div.banner-text h1 {
      font-size: 4.5rem;
    }
  
    /* >>>>> banner home <<<<< */
    section#banner-home div.text-top-line,
    section#banner-home div.text-center-line,
    section#banner-home div.text-bottom-line {
      font-size: 4.5rem;
    }
  
    section#banner-home div.text-top-line {
      margin-left: calc(((100vw - 1320px) / 2) + 639px);
    }
  
    section#banner-home div.text-bottom-line {
      margin-left: calc(((100vw - 1320px) / 2) - 1997px);
    }
  
    /* >>>>> banner projects <<<<< */
    section#banner-projects div.text-top-line,
    section#banner-projects div.text-center-line,
    section#banner-projects div.text-bottom-line {
      font-size: 4.5rem;
    }
  
    section#banner-projects div.text-top-line {
      margin-left: calc(((100vw - 1320px) / 2) + 639px);
    }
  
    section#banner-projects div.text-bottom-line {
      margin-left: calc(((100vw - 1320px) / 2) - 1380px);
    }
  
    /* >>>>> banner about-us <<<<< */
    section#banner-about-us div.text-top-line,
    section#banner-about-us div.text-center-line,
    section#banner-about-us div.text-bottom-line {
      font-size: 4.5rem;
    }
  
    section#banner-about-us div.text-top-line {
      margin-left: calc(((100vw - 1320px) / 2) + 641px);
    }
  
    section#banner-about-us div.text-center-line.center-bottom {
      margin-left: calc(((100vw - 1320px) / 2) - 2254px);
    }
  
    section#banner-about-us div.text-center-line.center-top {
      margin-left: calc(((100vw - 1320px) / 2) + 283px);
    }
  
    section#banner-about-us div.text-bottom-line {
      margin-left: calc(((100vw - 1320px) / 2) - 1298px);
    }
  
    /* >>>>> banner error <<<<< */
    section#banner-error div.meerkat-second-isolated {
      left: 248px;
    }
  
    /****** offer element ******/
    section.offer h3 {
      font-size: 2.75rem;
      max-width: 425px;
    }
  
    section.offer div.teaser-text {
      font-size: 0.813rem;
      row-gap: 7px;
    }
  
    /***** instagram feed *****/
    section.instagram-feed div.post-container > div:last-child {
      display: block;
    }
  
    section.instagram-feed {
      padding: 60px 0 75px;
    }
  
    section.instagram-feed div.instagram-positioner[data-image-format="landscape"] iframe {
      width: 123%!important;
    }
  
    /****** footer ******/
    /* >>>>> partner section <<<<< */
    section.footer-section-partner img {
      max-height: 85px;
    }
  
    /* >>>>> text section <<<<< */
    section.footer-section-text div.contact-links {
      column-gap: 37px;
    }
  }
  
  @media screen and (min-width: 1200px) and (max-width: 1400px) {
    /* >>>>> banner home <<<<< */
    section#banner-home div.text-center-line {
      margin-left: calc(((100vw - 1320px) / 2) - 924px);
    }
  
    section#banner-home div.text-bottom-line {
      margin-left: calc(((100vw - 1320px) / 2) - 2205px);
    }
  
    section#banner-home div.text-top-line {
      margin-left: calc(((100vw - 1320px) / 2) + 719px);
    }
  
    /* >>>>> banner projects <<<<< */
    section#banner-projects div.text-center-line {
      margin-left: calc(((100vw - 1320px) / 2) - 1086px);
    }
  
    section#banner-projects div.text-bottom-line {
      margin-left: calc(((100vw - 1320px) / 2) - 1512px);
    }
  
    section#banner-projects div.text-top-line {
      margin-left: calc(((100vw - 1320px) / 2) + 719px);
    }
  
    /* >>>>> banner about us <<<<< */
    section#banner-about-us div.text-center-line.center-top {
      margin-left: calc(((100vw - 1320px) / 2) + 323px);
    }
  
    section#banner-about-us div.text-center-line.center-bottom {
      margin-left: calc(((100vw - 1320px) / 2) - 2492px);
    }
  
    section#banner-about-us div.text-bottom-line {
      margin-left: calc(((100vw - 1320px) / 2) - 1422px);
    }
  
    section#banner-about-us div.text-top-line {
      margin-left: calc(((100vw - 1320px) / 2) + 720px);
    }
  
    /* >>>>> banner error <<<<< */
    section#banner-error div.meerkat-second-isolated {
      left: 321px;
    }
  
    /* >>>>> offer element <<<<< */
    section.offer h3 {
      font-size: 3.438rem;
      max-width: 535px;
    }
  
    /***** instgram ******/
    section.instagram-feed div.post-container > div:last-child {
      display: block;
    }
  
    section.instagram-feed div.post-container {
      grid-template-columns: repeat(auto-fit, minmax(381px, 1fr));
    }
  
    section.instagram-feed div.instagram-positioner[data-image-format="landscape"] iframe {
      width: 107% !important;
    }
  }
  
  @media screen and (min-width: 1400px) and (max-width: 1600px) {
  
  }
  
  @media screen and (min-width: 1600px) and (max-width: 1920px) {
  
  }
  
  @media screen and (min-width: 1920px) and (max-width: 2500px) {
  
  }
  
  @media screen and (orientation: landscape) and (max-width: 768px) {
    /***** navigation *****/
    #navigation-logo-isolated img.logo {
      max-width: 170px;
    }
  
    /***** burger menu / slide modal *****/
    div.slide-modal nav ul {
      font-size: 2rem;
      row-gap: 6px;
    }
  
    div.slide-modal div.special-text {
      display: none!important;
    }
  
    div.slide-modal div.navigation {
      margin-top: 85px;
    }
  
    div.slide-modal div.contact {
      margin-bottom: unset;
      margin-top: 15px;
    }
  
    div.slide-modal div.social-media {
      display: none;
      margin-bottom: 25px;
    }
  
    /***** banner *****/
    div.meerkat-first-isolated,
    div.meerkat-second-isolated,
    div.meerkat-third-isolated,
    div.meerkat-fourth-isolated {
      display: none!important;
    }
  
    section#banner-home div.text-top-line,
    section#banner-home div.text-bottom-line,
    section#banner-projects div.text-top-line,
    section#banner-projects div.text-bottom-line,
    section#banner-about-us div.text-top-line,
    section#banner-about-us div.text-bottom-line, 
    section#banner-error div.text-top-line,
    section#banner-error div.text-bottom-line {
      display: none;
    }
  
    div.banner-text h1 {
      font-size: 3rem;
    }
  
    section#banner-about-us div.banner-text h1,
    section#banner-about-us div.text-center-line {
      font-size: 3rem;
    }
  
    section#banner-home div.banner-text,
    section#banner-projects div.banner-text,
    section#banner-about-us div.banner-text {
      top: 50%;
      transform: translateY(-60%);
    }
  
    section.banner {
      height: calc(100svh - 105px);
    }
  
    section#banner-error div.text-center-line.center-top,
    section#banner-error div.text-center-line.center-center,
    section#banner-error div.text-center-line.center-bottom {
      font-size: 2.5rem;
    }
  
    section#banner-error div.banner-text {
      top: 50%;
      transform: translateY(-60%);
    }
  
  }
  
  /* RESPONSIVENESS end */
  
  /* STYLES end */