@font-face {
  font-family: "Open Sans";
  src: url("/fonts/OpenSans-VariableFont_wdth,wght.woff2") format("woff2");
  font-display: swap;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  hyphens: none;
  color: #000000;
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*basics*/
a {
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  color: #000000;
}

h1, h2, h3, h4, p, ul, li, ol {
  margin: 0;
  font-weight: 380;
}

b, strong {
  font-weight: 700;
}

h1 {
  font-weight: 700;
  font-size: 55px;
  line-height: 65px;
  margin-bottom: 45px;
}

h2 {
  font-weight: 700;
  font-size: 25px;
  line-height: 32px;
  margin-bottom: 15px;
}

h3 {
  font-weight: 700;
  font-size: 35px;
  line-height: 42px;
  margin-bottom: 15px;
}

p {
  font-weight: 380;
  font-size: 25px;
  line-height: 40px;
  margin-bottom: 40px;
}

li {
  font-weight: 380;
  font-size: 25px;
  line-height: 40px;
}

ul {
  padding-left: 21px;
  margin-bottom: 40px;
}

.lead {
  font-weight: 380;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 70px;
}

.on-icon {
  font-size: 30px;
  line-height: 45px;
  font-weight: 600;
  display: block;
}

a.icon {
  display: inline-block;
  position: relative;
  padding-left: 50px;
  margin-bottom: 15px;
  font-size: 30px;
  line-height: 45px;
  font-weight: 600;
  left: 0px;
  transition: left 0.3s ease;
}
a.icon:hover {
  left: 50px;
}
a.icon:before {
  content: "";
  background-image: url(/images/next.svg);
  background-repeat: no-repeat;
  background-size: 28px auto;
  background-position: center;
  position: absolute;
  width: 50px;
  height: 50px;
  left: -10px;
  top: 0;
}
a.icon.white {
  color: #ffffff;
}
a.icon.white:before {
  background-image: url(/images/next-white.svg);
}
a.icon.asset:before {
  background-image: url(/images/download.svg);
}
a.icon.url:before, a.icon.phone:before {
  background-image: url(/images/extern.svg);
  background-size: 36px auto;
}

.icon-holder .full-icon {
  position: relative;
  left: 0px;
  transition: left 0.3s ease;
}
.icon-holder:hover .full-icon {
  left: 50px;
}

/**  *************************************************************************************************************************/
@media (max-width: 829px) {
  /**  mobile view
  /**  *************************************************************************************************************************/
  .lead {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 40px;
  }

  a.icon {
    margin-bottom: 25px;
    font-size: 20px;
    line-height: 30px;
    transition: left 0s ease;
  }
  a.icon:hover {
    left: 0;
  }
  a.icon:before {
    left: -4px;
    top: -9px;
  }

  .icon-holder .full-icon {
    transition: left 0s;
  }
  .icon-holder:hover .full-icon {
    left: 0;
  }
}
/**  *************************************************************************************************************************/
/**  HEADER STUFF
/**  *************************************************************************************************************************/
/**  *************************************************************************************************************************/
/**  *************************************************************************************************************************/
header {
  position: fixed;
  top: 0;
  left: 0;
  height: 120px;
  width: 100%;
  background-color: #ffffff;
  z-index: 100;
}
header .canvas {
  max-width: 2285px;
  padding: 0 50px;
  display: flex;
  margin: 55px auto 0;
  justify-content: space-between;
}
header .canvas .nav {
  flex: 0 1 auto;
  display: flex;
  justify-content: flex-end;
  gap: 62px;
  align-items: center;
}
header .canvas .nav a, header .canvas .nav span {
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 28px;
  line-height: 55px;
  font-weight: 420;
  border-top: 5px solid #ffffff;
  transition: border-top-color 0.5s ease;
}
header .canvas .nav a.active, header .canvas .nav a:hover, header .canvas .nav span.active, header .canvas .nav span:hover {
  border-top-color: #000000;
}
header .canvas .nav .mobile-nav-logo, header .canvas .nav .close-nav {
  display: none;
}
header .canvas .logo {
  flex: 1 0 425px;
  align-self: center;
}
header .canvas .logo svg {
  max-width: 100%;
  height: auto;
}

.burger {
  display: none;
}

body.section_startseite header .canvas {
  justify-content: flex-end;
}
body.section_startseite header .canvas .logo {
  display: none;
}
body.section_startseite .home-header {
  position: fixed;
  z-index: 20;
  top: 120px;
  width: 100%;
  line-height: 0;
}
body.section_startseite .home-header .head-image {
  line-height: 0;
  max-width: 2500px;
  margin: 0 auto;
}
body.section_startseite .home-header .head-image img {
  width: 100%;
  height: auto;
}
body.section_startseite .home-header .head-image .overlay {
  position: absolute;
  width: 100%;
  left: 0;
  top: 30%;
  display: flex;
  justify-content: center;
}
body.section_startseite .home-header .head-image .overlay svg {
  max-width: 50%;
  height: auto;
}
body.section_startseite .border {
  display: none;
}

/**  *************************************************************************************************************************/
@media (max-width: 1580px) {
  /**  adjust desktop nav on smaller screens
  /**  *************************************************************************************************************************/
  header .canvas {
    gap: 50px;
  }
  header .canvas .nav {
    flex: 0 0 73.6%;
    gap: 0;
    justify-content: space-between;
  }
  header .canvas .nav a, header .canvas .nav span {
    font-size: 25px;
  }
  header .canvas .logo {
    flex: 0 1 22.7%;
  }
}
/**  *************************************************************************************************************************/
@media (max-width: 1160px) {
  /**  adjust desktop nav on smaller screens
  /**  *************************************************************************************************************************/
  header {
    height: 100px;
  }
  header .canvas {
    margin-top: 25px;
    gap: 30px;
  }
  header .canvas .nav a, header .canvas .nav span {
    font-size: 21px;
  }
  header .canvas .logo {
    flex: 0 1 23%;
  }

  body.section_startseite .home-header {
    top: 100px;
    width: 100%;
  }
  body.section_startseite .home-header .head-image {
    line-height: 0;
    max-width: 2500px;
    margin: 0 auto;
  }
  body.section_startseite .home-header .head-image img {
    width: 100%;
    height: auto;
  }
  body.section_startseite .home-header .head-image .overlay {
    position: absolute;
    width: 100%;
    left: 0;
    top: 30%;
    display: flex;
    justify-content: center;
  }
  body.section_startseite .home-header .head-image .overlay svg {
    max-width: 50%;
    height: auto;
  }
}
/**  *************************************************************************************************************************/
@media (max-width: 920px) {
  /**  adjust desktop nav on smaller screens
  /**  *************************************************************************************************************************/
  header .canvas .nav a, header .canvas .nav span {
    font-size: 19px;
  }
}
/**  *************************************************************************************************************************/
@media (max-width: 829px) {
  /**  mobile
  /**  *************************************************************************************************************************/
  header {
    height: 100px;
  }
  header .canvas {
    margin-top: 25px;
    gap: 30px;
  }
  header .canvas .nav a, header .canvas .nav span {
    font-size: 21px;
  }
  header .canvas .logo {
    flex: 0 1 23%;
  }

  body.section_startseite .home-header {
    top: 75px;
    width: 100%;
  }
  body.section_startseite .home-header .head-image {
    line-height: 0;
    width: 100%;
    height: 300px;
  }
  body.section_startseite .home-header .head-image img {
    object-fit: cover;
    width: 100%;
    height: 300px;
  }
  body.section_startseite .home-header .head-image .overlay {
    position: absolute;
    width: 100%;
    left: 0;
    top: 30%;
    display: flex;
    justify-content: center;
  }
  body.section_startseite .home-header .head-image .overlay svg {
    max-width: 75%;
    height: auto;
  }
}
/**  *************************************************************************************************************************/
@media (max-width: 829px) {
  /**  The mobile view
  /**  *************************************************************************************************************************/
  header {
    z-index: 90;
    height: 75px;
    position: relative;
  }
  header .canvas {
    padding: 20px 20px 0;
    display: flex;
    margin: 0;
    justify-content: space-between;
    height: auto;
  }
  header .canvas .nav {
    display: block;
    width: 100%;
    padding: 30px 30px 30px 45px;
    position: fixed;
    top: -105dvh;
    left: 0;
    height: 100dvh;
    background-color: #000000;
    transition: top 0.6s ease;
    overflow-y: scroll;
  }
  header .canvas .nav a, header .canvas .nav span {
    letter-spacing: 0.04em;
    font-size: 28px;
    line-height: 55px;
    border-top: 0;
    color: #ffffff;
    display: block;
  }
  header .canvas .nav .mobile-nav-logo {
    display: block;
    line-height: 0;
    margin-bottom: 60px;
  }
  header .canvas .nav .mobile-nav-logo svg {
    width: 225px;
    height: auto;
  }
  header .canvas .nav .mobile-nav-logo svg path {
    fill: #ffffff;
  }
  header .canvas .nav .contact-trigger {
    margin-bottom: 20px;
  }
  header .canvas .nav .close-nav {
    display: flex;
    justify-content: flex-end;
  }
  header .canvas .nav .close-nav svg {
    width: 44px;
    height: auto;
  }
  header .canvas .nav .close-nav svg line {
    stroke: #ffffff;
  }
  header .canvas .logo {
    flex: 0 0 65%;
    max-width: 300px;
  }
  header .canvas .logo svg {
    max-width: 100%;
    height: auto;
  }

  body:has(header.nav-on) {
    overflow: hidden;
  }

  header.nav-on {
    z-index: 95;
  }
  header.nav-on .canvas .nav {
    top: 0;
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    top: 15px;
    right: 17px;
    width: 55px;
    height: 45px;
    padding: 6px;
    background-color: #ffffff;
    z-index: 90;
  }
  .burger div {
    width: 100%;
    height: 5px;
    background-color: #000000;
  }
}
/**  *************************************************************************************************************************/
/**  *************************************************************************************************************************/
/**  MAIN LAYOUT
/**  *************************************************************************************************************************/
/**  *************************************************************************************************************************/
/**  *************************************************************************************************************************/
main {
  max-width: 2285px;
  margin: 120px auto;
  padding: 0 50px;
  background-color: #ffffff;
  position: relative;
  z-index: 50;
}
main .border {
  border-top: 5px solid #000000;
  max-width: 2185px;
  margin: 0 auto;
}
main .canvas {
  max-width: 1500px;
  margin: 0 auto;
  padding-top: 100px;
  border-bottom: 5px solid #000000;
}

/**  *************************************************************************************************************************/
@media (max-width: 1160px) {
  /**  adjust desktop nav on smaller screens
  /**  *************************************************************************************************************************/
  main {
    margin: 100px auto;
  }
}
/**  *************************************************************************************************************************/
@media (max-width: 829px) {
  /**  adjust desktop nav on smaller screens
  /**  *************************************************************************************************************************/
  main {
    margin: 0 0 35px;
    padding: 0 20px;
  }
  main .canvas {
    padding-top: 30px;
    border-bottom: 4px solid #000000;
  }
}
/**  *************************************************************************************************************************/
/**  HOME
/**  *************************************************************************************************************************/
/**  *************************************************************************************************************************/
/**  *************************************************************************************************************************/
.home-teaser {
  display: flex;
  justify-content: space-between;
  padding: 120px 0 120px;
  margin-bottom: 120px;
}
.home-teaser .img-box {
  flex: 0 0 47.8%;
  line-height: 0;
}
.home-teaser .img-box img {
  width: 100%;
  height: auto;
}
.home-teaser .text-box {
  flex: 0 0 51.3%;
  background-color: #000000;
  padding: 30px;
}
.home-teaser .text-box h2, .home-teaser .text-box h3 {
  color: #ffffff;
}
.home-teaser .text-box h2 {
  font-weight: 600;
  font-size: 55px;
  line-height: 65px;
  margin-bottom: 22px;
}
.home-teaser .text-box h3 {
  font-weight: 380;
  font-size: 28px;
  line-height: 45px;
}
.home-teaser .text-box .head-img-mobile {
  display: none;
}

.home-news {
  display: block;
  background-color: #000000;
  padding: 15px 25px 25px;
  margin: 0 auto;
  max-width: 873px;
  border-radius: 17px;
}
.home-news .ober {
  font-weight: 380;
  text-transform: uppercase;
  font-size: 30px;
  color: #ffffff;
  line-height: 45px;
  margin: 0;
}
.home-news .haupt {
  font-weight: 700;
  font-size: 30px;
  color: #ffffff;
  line-height: 35px;
  margin: 0;
}
.home-news .img-text-box {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.home-news .img-text-box .img-box {
  flex: 0 0 33.7%;
}
.home-news .img-text-box .img-box img {
  margin-top: 5px;
  width: 100%;
  height: auto;
}
.home-news .img-text-box .news-text-icon {
  flex: 0 0 100%;
}
.home-news .img-text-box:has(.img-box) .news-text-icon {
  flex: 0 0 62.9%;
}
.home-news .img-text-box .news-text-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.home-news .img-text-box .news-text-icon .news-text {
  font-weight: 380;
  font-size: 23px;
  color: #ffffff;
  line-height: 30px;
  margin: 0;
}
.home-news .img-text-box .news-text-icon svg {
  width: 27px;
  height: auto;
  position: relative;
  transition: right 0.8s ease;
  right: 50px;
  align-self: flex-end;
}
.home-news:hover .img-text-box .news-text-icon svg {
  right: 5px;
}

body.section_startseite main {
  margin-top: min(954px, 120px + 33.36vw);
  max-width: 2500px;
}
body.section_startseite main .canvas:has(.home-news) {
  padding-top: 40px;
}
body.section_startseite main .canvas:has(.home-news) .home-teaser {
  padding-top: 45px;
}

/**  *************************************************************************************************************************/
@media (max-width: 1560px) {
  /**  adjust on smaller screens
  /**  *************************************************************************************************************************/
  .home-teaser {
    display: flex;
    justify-content: space-between;
    padding: 0 0 120px;
    margin-bottom: 120px;
  }
  .home-teaser .img-box {
    width: 47.8%;
  }
  .home-teaser .img-box img {
    width: 100%;
    height: auto;
  }
  .home-teaser .text-box {
    width: 51.3%;
    background-color: #000000;
    padding: 18px;
  }
  .home-teaser .text-box h2, .home-teaser .text-box h3 {
    color: #ffffff;
  }
  .home-teaser .text-box h2 {
    font-size: 32px;
    line-height: 39px;
    margin-bottom: 25px;
    hyphens: auto;
  }
  .home-teaser .text-box h3 {
    font-size: 24px;
    line-height: 33px;
  }

  body.section_startseite main .canvas {
    padding-top: 50px;
  }
  body.section_startseite main .canvas:has(.home-news) {
    padding-top: 40px;
  }
  body.section_startseite main .canvas:has(.home-news) .home-teaser {
    padding-top: 45px;
  }
}
/**  *************************************************************************************************************************/
@media (max-width: 829px) {
  /**  mobile
  /**  *************************************************************************************************************************/
  .home-teaser {
    display: block;
    padding: 0 0 35px;
    margin-bottom: 0;
  }
  .home-teaser .img-box {
    display: none;
  }
  .home-teaser .text-box {
    width: 100%;
    background-color: #ffffff;
    padding: 0;
  }
  .home-teaser .text-box h2, .home-teaser .text-box h3 {
    color: #000000;
  }
  .home-teaser .text-box h2 {
    font-size: 25px;
    line-height: 32px;
    margin-bottom: 25px;
  }
  .home-teaser .text-box h3 {
    font-size: 22px;
    line-height: 33px;
  }
  .home-teaser .text-box .head-img-mobile {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .home-news {
    padding: 15px 15px 25px;
  }
  .home-news .ober {
    font-size: 22px;
    line-height: 31px;
    margin-bottom: 10px;
  }
  .home-news .haupt {
    font-size: 22px;
    line-height: 30px;
  }
  .home-news .img-text-box {
    display: block;
    margin-top: 5px;
  }
  .home-news .img-text-box .img-box {
    width: 100%;
    margin-bottom: 10px;
  }
  .home-news .img-text-box .img-box img {
    width: 80%;
  }
  .home-news .img-text-box .news-text-icon {
    flex: 0 0 100%;
  }
  .home-news .img-text-box:has(.img-box) .news-text-icon {
    flex: 0 0 62.9%;
  }
  .home-news .img-text-box .news-text-icon .news-text {
    font-size: 19px;
    line-height: 24px;
  }
  .home-news .img-text-box .news-text-icon svg {
    right: 10px;
  }
  .home-news:hover .img-text-box .news-text-icon svg {
    right: 10px;
  }

  body.section_startseite main {
    margin-top: 300px;
  }
  body.section_startseite main .canvas {
    padding-top: 20px;
  }
  body.section_startseite main .canvas:has(.home-news) {
    padding-top: 20px;
  }
  body.section_startseite main .canvas:has(.home-news) .home-teaser {
    padding-top: 45px;
  }
}
/**  *************************************************************************************************************************/
/**  KONTAKT
/**  *************************************************************************************************************************/
/**  *************************************************************************************************************************/
/**  *************************************************************************************************************************/
.contact-panel {
  height: 60vh;
  background-color: #000000;
  position: fixed;
  z-index: 90;
  width: 100vw;
  left: 0;
  bottom: -60vh;
  transition: bottom 0.8s ease;
  pointer-events: none;
  opacity: 1;
}
.contact-panel.on {
  display: block;
  bottom: 0vh;
  pointer-events: auto;
}
.contact-panel .canvas {
  background-color: #000000;
  height: 100%;
  max-width: 1600px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 120px 50px;
  position: relative;
  left: -65px;
}
.contact-panel .canvas .glarhus-logo {
  margin-bottom: 75px;
  width: 732px;
  height: auto;
}
.contact-panel .canvas .glarhus-logo path {
  fill: #ffffff;
}
.contact-panel .canvas .logo-mobile {
  display: none;
}
.contact-panel .canvas .fon-mail {
  margin-bottom: 80px;
}
.contact-panel .canvas .address {
  margin-bottom: 80px;
  font-size: 28px;
  line-height: 40px;
}
.contact-panel .canvas .altnav a {
  font-size: 22px;
  line-height: 40px;
  display: inline-block;
  margin-right: 35px;
}
.contact-panel .canvas .social {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-panel .canvas .social svg {
  width: 47px;
  height: auto;
}
.contact-panel .canvas div, .contact-panel .canvas p, .contact-panel .canvas a {
  color: #ffffff;
}
.contact-panel .canvas .contact-trigger {
  cursor: pointer;
  width: 40px;
  height: auto;
  position: absolute;
  right: -15px;
  top: 120px;
}
.contact-panel .canvas .contact-trigger line {
  stroke: #ffffff;
}

body:has(.contact-panel.on) {
  overflow: hidden;
}

/**  *************************************************************************************************************************/
@media (max-width: 1750px) {
  /**  intermediate
  /**  *************************************************************************************************************************/
  .contact-panel .canvas {
    left: 0;
  }
  .contact-panel .canvas .contact-trigger {
    right: 50px;
  }
}
/**  *************************************************************************************************************************/
@media (max-width: 829px) {
  /**  mobile view
  /**  *************************************************************************************************************************/
  .contact-panel {
    height: 100dvh;
    z-index: 97;
    bottom: -105dvh;
    transition: bottom 0.6s ease;
    pointer-events: none;
    opacity: 1;
  }
  .contact-panel.on {
    display: block;
    bottom: 0;
  }
  .contact-panel .canvas {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 60px 30px 50px 45px;
    left: 0;
  }
  .contact-panel .canvas .logo-desktop {
    display: none;
  }
  .contact-panel .canvas .logo-mobile {
    display: block;
    margin-bottom: 75px;
  }
  .contact-panel .canvas .logo-mobile svg {
    width: 90%;
    max-width: 280px;
    height: auto;
  }
  .contact-panel .canvas .logo-mobile svg path {
    fill: #ffffff;
  }
  .contact-panel .canvas .fon-mail {
    margin-bottom: 35px;
  }
  .contact-panel .canvas a.icon {
    font-size: 24px;
    line-height: 31px;
  }
  .contact-panel .canvas .address {
    margin-bottom: 55px;
    font-size: 24px;
    line-height: 35px;
  }
  .contact-panel .canvas .altnav {
    position: relative;
  }
  .contact-panel .canvas .altnav a {
    font-size: 18px;
    line-height: 30px;
    display: block;
    margin-right: 0;
  }
  .contact-panel .canvas .altnav .close-contact-mobile {
    display: block;
  }
  .contact-panel .canvas .altnav .close-contact-mobile line {
    stroke: #ffffff;
  }
  .contact-panel .canvas .altnav .close-contact-desktop {
    display: none;
  }
  .contact-panel .canvas .social {
    margin-bottom: 38px;
  }
  .contact-panel .canvas .social svg {
    width: 47px;
    height: auto;
  }
  .contact-panel .canvas .contact-trigger {
    width: 43px;
    position: absolute;
    right: 5px;
    top: 0;
  }
}
/**  *************************************************************************************************************************/
/**  INTRO
/**  *************************************************************************************************************************/
/**  *************************************************************************************************************************/
/**  *************************************************************************************************************************/
.intro {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}
.intro .symbol-box {
  flex: 0 0 26.4%;
}
.intro .symbol-box svg {
  position: relative;
  top: 80px;
  max-width: 70%;
  height: auto;
}
.intro .text-box {
  flex: 0 0 73.6%;
}
.intro .text-box .text {
  max-width: 958px;
}

.black-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}
.black-box .img-box {
  flex: 0 0 49%;
  line-height: 0;
}
.black-box .img-box img {
  width: 100%;
  height: auto;
}
.black-box .text-box {
  flex: 0 0 49%;
  background-color: #000000;
  padding: 40px;
  color: #ffffff;
}
.black-box .text-box h2 {
  font-size: 35px;
  line-height: 42px;
  margin-bottom: 35px;
  font-weight: 700;
}
.black-box .text-box p, .black-box .text-box li {
  font-size: 23px;
  line-height: 33px;
  font-weight: 380;
  margin-bottom: 32px;
}
.black-box .text-box p b, .black-box .text-box p em, .black-box .text-box li b, .black-box .text-box li em {
  font-weight: 600;
}
.black-box .text-box p {
  margin-bottom: 32px;
}
.black-box .text-box ul {
  padding-left: 24px;
  margin-bottom: 32px;
}

.mini .pre {
  font-size: 35px;
  line-height: 45px;
  text-transform: uppercase;
  font-weight: 380;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.mini h2 {
  font-size: 55px;
  line-height: 61px;
  font-weight: 700;
  margin-bottom: 50px;
}
.mini .text {
  font-size: 30px;
  line-height: 40px;
  font-weight: 380;
  margin-bottom: 0;
}
.mini a:not(.icon) {
  color: #D5A919;
  font-weight: 380;
}

.minicontents .minicontent {
  margin-bottom: 100px;
}
.minicontents .minicontent .mini {
  margin-bottom: 70px;
}
.minicontents .minicontent .mini h2 {
  max-width: 958px;
}

/**  *************************************************************************************************************************/
@media (max-width: 829px) {
  /**  mobile view
  /**  *************************************************************************************************************************/
  .intro {
    display: block;
    margin-bottom: 30px;
  }
  .intro .symbol-box {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
  }
  .intro .symbol-box svg {
    top: 0;
    width: 100%;
    max-width: 132px;
    height: auto;
  }
  .intro .symbol-box.pfeil-symbol svg {
    max-width: 139px;
  }
  .intro .symbol-box.g-symbol svg {
    max-width: 111px;
  }
  .intro .text-box {
    width: 100%;
  }

  .black-box {
    display: block;
    margin-bottom: 60px;
  }
  .black-box .img-box {
    width: 100%;
    margin-bottom: 10px;
  }
  .black-box .text-box {
    width: 100%;
    padding: 24px 15px 24px;
  }
  .black-box .text-box h2 {
    font-size: 22px;
    line-height: 35px;
    margin-bottom: 22px;
  }
  .black-box .text-box p, .black-box .text-box li {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 18px;
  }
  .black-box .text-box p {
    margin-bottom: 18px;
  }
  .black-box .text-box ul {
    padding-left: 18px;
    margin-bottom: 18px;
  }

  .mini .pre {
    font-size: 24px;
    line-height: 31px;
    margin-bottom: 11px;
  }
  .mini h2 {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 35px;
  }
  .mini .text {
    font-size: 20px;
    line-height: 30px;
  }
  .mini a:not(.icon) {
    color: #D5A919;
    font-weight: 380;
  }

  .minicontents .minicontent {
    margin-bottom: 70px;
  }
  .minicontents .minicontent .mini {
    margin-bottom: 40px;
  }
}
/**  *************************************************************************************************************************/
/**  REFERENZEN INDEX
/**  *************************************************************************************************************************/
/**  *************************************************************************************************************************/
/**  *************************************************************************************************************************/
.type_referenzen .intro {
  padding-bottom: 65px;
  border-bottom: 5px solid #000000;
}
.type_referenzen .ref-items {
  max-width: 1250px;
}
.type_referenzen .ref-items .ref-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 115px;
}
.type_referenzen .ref-items .ref-item .img-box {
  flex: 0 0 36%;
}
.type_referenzen .ref-items .ref-item .img-box img {
  width: 100%;
  height: auto;
}
.type_referenzen .ref-items .ref-item .text-box {
  flex: 0 0 59%;
  margin-top: -6px;
}
.type_referenzen .ref-items .ref-item .text-box .pre {
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 380;
  letter-spacing: 0.04em;
  line-height: 32px;
  margin-bottom: 30px;
}
.type_referenzen .ref-items .ref-item .text-box h2 {
  font-size: 35px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 40px;
}

/**  *************************************************************************************************************************/
@media (max-width: 829px) {
  /**  mobile view
  /**  *************************************************************************************************************************/
  .type_referenzen .ref-items .ref-item {
    display: block;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 4px solid #000000;
  }
  .type_referenzen .ref-items .ref-item:last-child {
    border-bottom: 0;
  }
  .type_referenzen .ref-items .ref-item .img-box {
    width: 100%;
    margin-bottom: 15px;
  }
  .type_referenzen .ref-items .ref-item .text-box {
    width: 100%;
    margin-top: 0;
    display: flex;
    flex-direction: column;
  }
  .type_referenzen .ref-items .ref-item .text-box .pre {
    font-size: 20px;
    line-height: 31px;
    margin-bottom: 12px;
  }
  .type_referenzen .ref-items .ref-item .text-box h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 24px;
  }
  .type_referenzen .ref-items .ref-item .text-box .full-icon {
    align-self: flex-end;
    width: 32px;
    height: 32px;
  }
}
/**  *************************************************************************************************************************/
/**  REFERENZ
/**  *************************************************************************************************************************/
/**  *************************************************************************************************************************/
/**  *************************************************************************************************************************/
.type_referenz main .border {
  position: relative;
}
.type_referenz main .border .backfromref {
  cursor: pointer;
  position: absolute;
  top: 100px;
  left: 0;
  display: inline-flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  background-color: white;
  padding: 0 14px 3px 0;
  gap: 20px;
}
.type_referenz main .border .backfromref span {
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 380;
}
.type_referenz main .border .backfromref svg {
  width: 41px;
  height: auto;
}
.type_referenz main .canvas {
  display: flex;
  justify-content: space-between;
}
.type_referenz main .canvas .images-column {
  flex: 0 0 47%;
}
.type_referenz main .canvas .images-column img {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
  line-height: 0;
}
.type_referenz main .canvas .text-column {
  flex: 0 0 49%;
  margin-top: -4px;
}
.type_referenz main .canvas .text-column .maintext {
  margin-bottom: 65px;
}
.type_referenz main .canvas .text-column .mobile-image {
  display: none;
}
.type_referenz main .canvas .text-column .pre {
  font-size: 35px;
  line-height: 41px;
  font-weight: 380;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.type_referenz main .canvas .text-column h1 {
  font-size: 55px;
  line-height: 65px;
  font-weight: 700;
}
.type_referenz main .canvas .text-column h2 {
  font-weight: 25px;
  line-height: 31px;
  font-weight: 700;
}
/**  *************************************************************************************************************************/
@media (max-width: 829px) {
  /**  mobile view
  /**  *************************************************************************************************************************/
  .type_referenz main .border .backfromref {
    top: 10px;
    padding: 0 10px 3px 0;
    gap: 20px;
  }
  .type_referenz main .border .backfromref span {
    font-size: 15px;
  }
  .type_referenz main .border .backfromref svg {
    width: 25px;
  }
  .type_referenz main .canvas {
    flex-direction: column;
    padding-top: 20px;
  }
  .type_referenz main .canvas .images-column {
    order: 1;
    width: 100%;
    padding-bottom: 35px;
  }
  .type_referenz main .canvas .images-column .desktop-image {
    display: none;
  }
  .type_referenz main .canvas .images-column img {
    margin-bottom: 25px;
  }
  .type_referenz main .canvas .images-column .glightbox {
    cursor: default;
    pointer-events: none;
  }
  .type_referenz main .canvas .text-column {
    order: 0;
    width: 100%;
    margin-top: 0;
  }
  .type_referenz main .canvas .text-column .maintext {
    margin-bottom: 35px;
  }
  .type_referenz main .canvas .text-column .mobile-image {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 25px;
  }
  .type_referenz main .canvas .text-column .linklist {
    margin-bottom: 25px;
  }
  .type_referenz main .canvas .text-column p, .type_referenz main .canvas .text-column li {
    font-size: 20px;
    line-height: 30px;
  }
  .type_referenz main .canvas .text-column p {
    margin-bottom: 21px;
  }
  .type_referenz main .canvas .text-column ul {
    margin-bottom: 21px;
  }
  .type_referenz main .canvas .text-column .lead {
    margin-bottom: 50px;
  }
  .type_referenz main .canvas .text-column .pre {
    font-size: 24px;
    line-height: 41px;
    margin-bottom: 4px;
  }
  .type_referenz main .canvas .text-column h1 {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 21px;
  }
  .type_referenz main .canvas .text-column h2 {
    font-weight: 22px;
    line-height: 31px;
  }

  .type_referenz main:has(.backfromref) .canvas {
    padding-top: 65px;
  }
}
/**  *************************************************************************************************************************/
/**  TEAM
/**  *************************************************************************************************************************/
/**  *************************************************************************************************************************/
/**  *************************************************************************************************************************/
.type_team main .team-items {
  display: flex;
  justify-content: flex-start;
  column-gap: 0;
  row-gap: 85px;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
.type_team main .team-items .team-box {
  flex: 0 0 auto;
  width: 25%;
  margin-right: 7.5%;
  display: flex;
  flex-direction: column;
}
.type_team main .team-items .team-box .img-box {
  aspect-ratio: 372/547;
  margin-bottom: 15px;
  line-height: 0;
  background-color: #000000;
}
.type_team main .team-items .team-box .img-box img {
  width: 100%;
  height: auto;
  line-height: 0;
}
.type_team main .team-items .team-box .text-box {
  display: flex;
  flex-direction: column;
  background-color: #000000;
  color: #ffffff;
  padding: 25px;
  flex: 1 0 auto;
  min-height: 400px;
}
.type_team main .team-items .team-box .text-box .person {
  flex: 0 0 auto;
}
.type_team main .team-items .team-box .text-box .person h2 {
  font-size: 45px;
  font-weight: 700;
  line-height: 50px;
}
.type_team main .team-items .team-box .text-box .person p {
  font-weight: 380;
  font-size: 25px;
  line-height: 31px;
}
.type_team main .team-items .team-box .text-box .linklist {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1 0 auto;
}
.type_team main .team-items .team-box .text-box .linklist a.icon {
  font-size: 25px;
  font-weight: 380;
  margin-bottom: 0;
  margin-top: 20px;
  line-height: 32px;
}
.type_team main .team-items .team-box .text-box .linklist a.icon:before {
  width: 30px;
  height: 30px;
  left: 0;
  top: 2px;
}
.type_team main .team-items .team-box .text-box .linklist a.icon:hover {
  left: 30px;
}

/**  *************************************************************************************************************************/
@media (max-width: 1500px) {
  /**  between
  /**  *************************************************************************************************************************/
  .type_team main .team-items {
    column-gap: 6%;
    margin-bottom: 100px;
  }
  .type_team main .team-items .team-box {
    width: 29.3%;
    margin-right: 0;
  }
}
/**  *************************************************************************************************************************/
@media (max-width: 1270px) {
  /**  between
  /**  *************************************************************************************************************************/
  .type_team main .team-items .team-box {
    width: 46.5%;
  }
}
/**  *************************************************************************************************************************/
@media (max-width: 829px) {
  /**  mobile view
  /**  *************************************************************************************************************************/
  .type_team main .team-items {
    display: block;
    margin-bottom: 0;
  }
  .type_team main .team-items .team-box {
    width: 100%;
    display: block;
    margin-bottom: 50px;
  }
  .type_team main .team-items .team-box .img-box {
    margin-bottom: 10px;
  }
  .type_team main .team-items .team-box .text-box {
    display: block;
    padding: 20px;
    width: 100%;
    min-height: auto;
  }
  .type_team main .team-items .team-box .text-box .person {
    margin-bottom: 40px;
  }
  .type_team main .team-items .team-box .text-box .person h2 {
    font-size: 35px;
    line-height: 45px;
  }
  .type_team main .team-items .team-box .text-box .person p {
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 15px;
  }
  .type_team main .team-items .team-box .text-box .linklist {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1 0 auto;
  }
  .type_team main .team-items .team-box .text-box .linklist a.icon {
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 0;
    line-height: 30px;
  }
  .type_team main .team-items .team-box .text-box .linklist a.icon:before {
    width: 30px;
    height: 30px;
    left: 0;
    top: 2px;
  }
  .type_team main .team-items .team-box .text-box .linklist a.icon:hover {
    left: 30px;
  }
}
/**  *************************************************************************************************************************/
/**  JOBS INDEX
/**  *************************************************************************************************************************/
/**  *************************************************************************************************************************/
/**  *************************************************************************************************************************/
.type_jobs .canvas {
  padding-bottom: 100px;
}
.type_jobs .nojob {
  max-width: 732px;
}
.type_jobs .job-teaser {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}
.type_jobs .job-teaser .img-box {
  flex: 0 0 46.8%;
}
.type_jobs .job-teaser .img-box img {
  width: 100%;
  height: auto;
}
.type_jobs .job-teaser .img-box.img-box-mobile {
  display: none;
}
.type_jobs .job-teaser .text-box {
  flex: 0 0 49.5%;
}
.type_jobs .job-teaser .text-box p {
  font-size: 30px;
  line-height: 40px;
}
.type_jobs .job-teaser:last-child {
  margin-bottom: 0;
}

/**  *************************************************************************************************************************/
@media (max-width: 829px) {
  /**  mobile view
  /**  *************************************************************************************************************************/
  .type_jobs .canvas {
    padding-bottom: 0;
  }
  .type_jobs .nojob {
    max-width: auto;
  }
  .type_jobs .job-teaser {
    display: block;
    margin-bottom: 40px;
    border-bottom: 4px solid #000000;
    padding-bottom: 10px;
  }
  .type_jobs .job-teaser .img-box {
    width: 100%;
    margin-bottom: 30px;
  }
  .type_jobs .job-teaser .img-box.img-box-desktop {
    display: none;
  }
  .type_jobs .job-teaser .img-box.img-box-mobile {
    display: block;
  }
  .type_jobs .job-teaser .text-box {
    width: 100%;
  }
  .type_jobs .job-teaser .text-box .pre {
    font-size: 24px;
    line-height: 31px;
  }
  .type_jobs .job-teaser .text-box .teaser {
    font-size: 20px;
    line-height: 30px;
  }
  .type_jobs .job-teaser .text-box h2 {
    margin-bottom: 30px;
  }
  .type_jobs .job-teaser:last-child {
    margin-bottom: 0;
    border-bottom: 0;
  }
}
/**  *************************************************************************************************************************/
/**  STANDRAD TEMPLATE
/**  *************************************************************************************************************************/
/**  *************************************************************************************************************************/
/**  *************************************************************************************************************************/
.type_standard .content-section.mini {
  display: flex;
  justify-content: space-between;
  padding-bottom: 65px;
}
.type_standard .content-section.mini .column1 {
  flex: 0 0 22.5%;
  line-height: 0;
}
.type_standard .content-section.mini .column1 img {
  width: 100%;
  height: auto;
  line-height: 0;
}
.type_standard .content-section.mini .column2 {
  position: relative;
  margin-top: -6px;
  flex: 0 0 73.6%;
}
.type_standard .content-section.mini .column2 .img-block-mobile {
  display: none;
}
.type_standard .content-section.mini p.gross {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 45px;
}
.type_standard .content-section.mini .legend-box p {
  position: relative;
  margin-top: -6px;
}
.type_standard .content-section.mini h2 {
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 30px;
}
.type_standard .content-section.mini .black-content {
  color: #ffffff;
  background-color: #000000;
  margin: 40px 0 65px;
  padding: 35px;
}
.type_standard .content-section.mini .black-content p:last-child {
  margin-bottom: 15px;
}
.type_standard .content-section.mini .black-content ul:last-child {
  margin-bottom: 15px;
}
.type_standard .content-section.mini .bild-block {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.type_standard .content-section.mini .bild-block .img-box {
  flex: 0 0 66.6%;
}
.type_standard .content-section.mini .bild-block .img-box img {
  width: 100%;
  height: auto;
}
.type_standard .content-section.mini .bild-block .legend-box {
  flex: 0 0 31%;
}
.type_standard .content-section.mini .linklist {
  margin: 65px 0 65px;
}

/**  *************************************************************************************************************************/
@media (max-width: 829px) {
  /**  mobile view
  /**  *************************************************************************************************************************/
  .type_standard .content-section.mini {
    display: block;
    padding-bottom: 25px;
  }
  .type_standard .content-section.mini .column1 {
    display: none;
  }
  .type_standard .content-section.mini .column2 {
    margin-top: 0;
    width: 100%;
  }
  .type_standard .content-section.mini .column2 .img-block-mobile {
    display: block;
    margin-bottom: 27px;
  }
  .type_standard .content-section.mini .column2 .img-block-mobile img {
    width: 100%;
    height: auto;
  }
  .type_standard .content-section.mini p, .type_standard .content-section.mini p.gross {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 25px;
  }
  .type_standard .content-section.mini p.pre {
    margin-bottom: 11px;
  }
  .type_standard .content-section.mini .legend-box p {
    position: relative;
    margin-top: -6px;
  }
  .type_standard .content-section.mini h1 {
    font-size: 28px;
    line-height: 37px;
    margin-bottom: 25px;
  }
  .type_standard .content-section.mini h2 {
    font-size: 22px;
    line-height: 35px;
    margin-bottom: 18px;
  }
  .type_standard .content-section.mini .black-content {
    margin: 30px 0 30px;
    padding: 20px;
  }
  .type_standard .content-section.mini .black-content p:last-child {
    margin-bottom: 10px;
  }
  .type_standard .content-section.mini .black-content ul:last-child {
    margin-bottom: 10px;
  }
  .type_standard .content-section.mini .black-content p, .type_standard .content-section.mini .black-content p.gross, .type_standard .content-section.mini .black-content li {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 25px;
  }
  .type_standard .content-section.mini .black-content li {
    margin-bottom: 0;
  }
  .type_standard .content-section.mini .bild-block {
    display: block;
    margin-bottom: 25px;
  }
  .type_standard .content-section.mini .bild-block .img-box {
    width: 100%;
  }
  .type_standard .content-section.mini .bild-block .img-box:has(+ .legend-box) {
    margin-bottom: 10px;
  }
  .type_standard .content-section.mini .bild-block .legend-box {
    width: 100%;
  }
  .type_standard .content-section.mini .bild-block .legend-box p {
    font-size: 18px;
    line-height: 23px;
    color: #303031;
  }
  .type_standard .content-section.mini .linklist {
    margin: 20px 0 20px;
  }
}
/**  *************************************************************************************************************************/
/**  GLIGHTBOX
/**  *************************************************************************************************************************/
/**  *************************************************************************************************************************/
/**  *************************************************************************************************************************/
.glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
  background-color: rgba(0, 0, 0, 0);
}
.glightbox-clean .gclose:hover, .glightbox-clean .gnext:hover, .glightbox-clean .gprev:hover {
  background-color: rgba(0, 0, 0, 0);
}

.glightbox-clean .gclose svg {
  width: auto;
  height: auto;
}

.gclose svg, .gnext svg, .gprev svg {
  width: auto;
}

.glightbox-clean .gclose {
  opacity: 1;
  right: 35px;
  top: 35px;
}

/*# sourceMappingURL=glarhus.css.map */
