/**********/
/*GENERAL*/
/********/
* {
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: #000000;
  display: inline-block;
  transition: color .4s;
}
*:focus {
  outline: none;
  box-sizing: border-box;
}
html,
body,
ul,
li {
  margin: 0;
  padding: 0;
}
html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}
body {
  font-family: 'RobotoRN', 'Calibri', 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
  color: #000000;
}

body, p {
  font-weight: 400;
}

@media (min-width: 992px) {
  body {
    font-size: 16px;
  }
}
h1,
h2,
h3 {
  margin-top: 5px;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  h1,
  h2,
  h3 {
    margin-top: 10px;
    margin-bottom: 25px;
  }
}
p,
a,
button,
.button {
  margin-top: 5px;
  margin-bottom: 5px;
}
.button.secondary {
    background: #00595e;
    color: #fff;
}
.button.seconday:hover {
    background: transparent;
    color: #00595e;
}
@media (min-width: 992px) {
  p,
  a,
  button,
  .button {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

ul li a {
  margin: 0;
  color: #00595e;
  text-decoration: underline;
}

h1,
h2 {
  font-size: 30px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: 'Open Sans', sans-serif;
}
@media (min-width: 992px) {
  h1,
  h2 {
    font-size: 50px;
  }
}
h1,
h2 {
  text-transform: uppercase;
}
h3 {
  font-size: 18px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: 'Open Sans', sans-serif;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  h3 {
    font-size: 25px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
strong {
  font-weight: 700;
}
.green {
  color: #00595e;
}
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 992px) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 1240px) {
  .container {
    padding-left: 80px;
    padding-right: 80px;
  }
}
img {
  max-width: 100%;
  display: inline-block;
}
.wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.wrapper > main {
  flex-grow: 1;
}
.align-center {
  text-align: center;
}
/**********/
/*MODULES*/
/********/
section {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}
@media (min-width: 992px) {
  section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
section .content {
  max-width: 760px;
}
section .arrow-paragraphs p {
  display: flex;
}
section .arrow-paragraphs p span {
  margin-right: 5px;
}
.social-icons-wrap {
  display: flex;
  margin-left: -20px;
  margin-right: -20px;
}
.social-icons-wrap a {
  display: inline-block;
  margin-left: 20px;
  margin-right: 20px;
}
.social-icons-wrap a img {
  height: 30px;
  transition: transform .4s;
}
.social-icons-wrap a img:hover {
  transform: scale(1.1);
}
@media (min-width: 992px) {
  .social-icons-wrap {
    margin-left: -30px;
    margin-right: -30px;
  }
  .social-icons-wrap a {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.banner {
  padding: 0;
}
.banner .overlay {
  /*height: 430px;*/
  height: 540px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  position: relative;
}
.banner .overlay h2 {
  height: 25px;
}
@media (min-width: 992px) {
  .banner .overlay h2 {
    height: 50px;
  }
}
@media (min-width: 1600px) {
  .banner .overlay {
    /*height: 560px;*/
    height: 675px;
  }
}
.banner.hero .overlay {
  height: 600px;
  padding-top: 170px;
}
@media (min-width: 1920px) {
  .banner.hero .overlay {
    height: 780px;
  }
}
.hero-anim-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-anim-wrap .hero-anim-img {
  width: 100%;
  height: 100%;
  -webkit-animation-name: herozoom;
  animation-name: herozoom;
  -webkit-animation-duration: 30s;
  animation-duration: 30s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.banner.anim {
  -webkit-animation-name: herozoom;
  animation-name: herozoom;
  -webkit-animation-duration: 30s;
  animation-duration: 30s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@keyframes herozoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2) translateY(40px);
  }
}
/***********************************/
/*ALTERNATIV: PARALLAX BACKGROUNDS*/
/*********************************/
@keyframes herozoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2) translateY(40px);
  }
}
.hero-anim-img,
.banner {
  background-position: 50% 65%;
}
/****/
/***/
/**/
/********/
/*HEADER*/
/*******/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 89, 98, 0.5);
  color: #fff;
  z-index: 20;
  transition: background .4s;
}
header .container {
  display: flex;
  padding-top: 15px;
  padding-bottom: 10px;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  transition: padding .4s;
}
@media (max-width: 991px) {
  header .container {
    flex-wrap: wrap;
  }
}
@media (min-width: 992px) {
  header .container {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}
header.scroll {
  background: #005962;
}
header.scroll .container {
  padding-top: 10px;
  padding-bottom: 5px;
}
@media (min-width: 992px) {
  header.scroll .container {
    padding-top: 15px;
    padding-bottom: 10px;
  }
  header.scroll .container nav a.navlink {
    padding-bottom: 10px;
    margin-bottom: -10px;
  }
  header.scroll .container .sub-button-wrap {
    bottom: 16px;
    background: #fff;
  }
}
header .logo-wrap {
  margin: 0;
}
header .logo {
  height: 55px;
}
@media (min-width: 992px) {
  header .logo {
    height: 60px;
  }
}
header .menu {
  margin-left: auto;
}
@media (max-width: 991px) {
  header .menu {
    order: 3;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s;
  }
}
header.open .menu {
  max-height: 446px;
}
header nav {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
header nav a {
  text-transform: uppercase;
  color: #fff;
  padding: 20px;
  margin: 0;
}
@media (max-width: 991px) {
  header nav {
    width: 100%;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 55px;
  }
  header nav a.navlink {
    transition: opacity .4s;
  }
  header nav a.navlink.active {
    opacity: .65;
  }
}
@media (min-width: 992px) {
  header nav {
    flex-direction: row;
  }
  header nav a.navlink {
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;
    margin-bottom: -40px;
    transition: padding .4s, margin .4s;
  }
  header nav a.navlink:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #fff;
    transition: opacity .4s, transform .4s;
    transform: translate(-50%, 15px) rotateZ(45deg);
  }
  header nav a.navlink.active:after,
  header nav a.navlink:hover:after {
    opacity: 1;
    transform: translate(-50%, 6px) rotateZ(45deg);
  }
}
header nav .language-buttons-wrap {
  position: relative;
  padding-bottom: 20px;
  margin: 10px 0 -20px 10px;
}
header nav .language-buttons {
  font-weight: 300;
  border: solid 1px #fff;
  border-radius: 7px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 15px 5px 20px;
  position: relative;
}
header nav .language-buttons a {
  padding: 0 5px 0 0;
  font-size: 14px;
}
header nav .language-buttons .language-arrow {
  width: 10px;
  transform: translateY(1px) rotateZ(180deg);
  transition: transform .4s;
}
header nav .sub-button-wrap {
  position: absolute;
  color: #000000;
  bottom: 10px;
  left: 50%;
  margin: 0;
  padding: 0;
  display: block;
  transition: bottom 0.4s, max-height 0.4s, opacity 0.4s, background 0.4s;
  transform: translate(-50%, 100%);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  width: 100%;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
}
header nav .sub-button-wrap .inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px 12px;
}
header nav .sub-button-wrap a {
  color: #000000;
  width: 100%;
  padding: 0;
  text-align: center;
  transition: color .4s;
}
header nav .sub-button-wrap a:hover {
  color: #00595e;
}
header nav .language-buttons-wrap:hover .sub-button-wrap {
  max-height: 57px;
  opacity: 1;
}
@media (max-width: 991px) {
  header .hamburger-wrap {
    width: 40px;
    height: 40px;
  }
  header .hamburger {
    width: 40px;
    height: 25px;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
  }
  header .hamburger .line {
    left: 4px;
    top: 10px;
  }
  header .hamburger .line,
  header .hamburger .line:before,
  header .hamburger .line:after {
    position: absolute;
    width: 32px;
    height: 3.5px;
    background: #fff;
    transition: transform .4s, width .4s;
  }
  header .hamburger .line:before,
  header .hamburger .line:after {
    content: '';
  }
  header .hamburger .line:before {
    top: -10px;
  }
  header .hamburger .line:after {
    top: 10px;
  }
  header.open {
    background: #005962;
  }
  header.open .hamburger .line {
    transform: rotateZ(60deg);
  }
  header.open .hamburger .line:before,
  header.open .hamburger .line:after {
    width: 16px;
  }
  header.open .hamburger .line:before {
    transform: rotateZ(60deg) translate(5px, -2px);
  }
  header.open .hamburger .line:after {
    transform: rotateZ(60deg) translate(3px, -12px);
  }
}
@media (min-width: 992px) {
  .mobile-menu-overlay {
    display: none;
  }
}
@media (max-width: 767px) {
  .mobile-menu-overlay {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 150%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0s;
    transition-delay: .8s;
  }
  .mobile-menu-overlay span {
    position: absolute;
    width: 100vw;
    height: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.35) 65%, rgba(0, 0, 0, 0));
    opacity: 0;
    transition: opacity .4s;
  }
}
.mobile-menu-overlay.open {
  max-height: 150%;
  transition-delay: 0s;
}
.mobile-menu-overlay.open span {
  opacity: 1;
}
/*********/
/*FOOTER*/
/*******/
footer {
  background: #00595e;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  color: #fff;
}
@media (min-width: 992px) {
  footer {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
footer .container {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 768px) {
  footer .container {
    flex-direction: row;
    align-items: center;
    gap: 5px;
  }
}
@media (min-width: 1200px) {
  footer .container {
    align-items: flex-end;
  }
}
footer p {
  margin: 0;
}
footer .flex-col {
  width: 100%;
}
@media (max-width: 767px) {
  footer .flex-col .footer-logo {
    margin-bottom: 30px;
  }
  footer .flex-col:nth-of-type(1) {
    order: 1;
  }
  footer .flex-col:nth-of-type(2) {
    order: 3;
    padding-top: 40px;
  }
  footer .flex-col:nth-of-type(3) {
    order: 2;
  }
  footer .flex-col:nth-of-type(3) .link-wrap {
    margin-top: 18px;
  }
}
footer .footer-logo {
  height: 55px;
  margin-top: 15px;
}
@media (min-width: 768px) {
  footer .logos-wrap {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  footer .logos-wrap {
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
}
@media (min-width: 992px) {
  footer .footer-logo {
    height: 52px;
    margin-top: -23px;
  }
  footer .flex-col:first-of-type {
  	width: auto;
    min-width: 320px
  }
  footer .flex-col:last-of-type {
  	width: auto;
    min-width: 240px
  }
}
footer .footer-icon {
  height: 20px;
  margin-right: 5px;
  transition: transform .4s;
}
footer .footer-icon:hover {
  transform: scale(1.1);
}
footer .footer-link-text {
  transition: opacity .4s;
}
footer .footer-link-wrap:hover .footer-icon.inner {
  transform: scale(1.1);
}
footer .footer-link-wrap:hover .footer-link-text {
  opacity: .8;
}
footer .footer-link-wrap {
  display: flex;
  align-items: center;
}
footer .footer-link-wrap a {
  color: #fff;
  margin: 10px 10px 0 0;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  footer .footer-link-wrap a {
    margin: 20px 10px 0 0;
  }
}
footer .footer-link {
  color: #fff;
  margin: 0;
  transition: opacity .4s;
}
footer .footer-link:hover {
  opacity: .8;
}
footer .link-wrap {
  margin-top: 20px;
  margin-bottom: 20px;
}
.quote-section {
  background: #dfe4e3;
}
.quote-section .container {
  text-align: center;
}
.quote-section p.name {
  font-size: 14px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  color: #00595e;
  text-transform: uppercase;
}
.quote-section p.name span {
  display: inline-block;
  margin-left: 5px;
}
.quote-section p.name span img {
  width: 38px;
  transform: translateY(8px);
}
@media (min-width: 992px) {
  .quote-section p.name {
    font-size: 20px;
  }
  .quote-section p.name span {
    margin-left: 7px;
  }
  .quote-section p.name span img {
    width: 50px;
    transform: translateY(10px);
  }
}
.quote-section p.quote {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}
.quote-section p.quote.no-italic {
  font-style: normal;
}

@media (min-width: 992px) {
  .quote-section p.quote {
  }
}
.quote-section.reference-quote-section p.name {
  text-transform: none;
}
@media (min-width: 992px) {
  .quote-section.reference-quote-section p.name {
    font-size: 25px;
  }
}
.quote-section.reference-quote-section p.quote {
  max-width: 100%;
}
.quote-section.reference-quote-section p.quote.light {
  font-weight: 400;
}
.dropdown-wrap {
  margin-top: 30px;
  width: 100%;
  max-width: 760px;
  border-top: dotted 1px #000;
}
@media (min-width: 992px) {
  .dropdown-wrap {
    margin-top: 60px;
  }
}
.dropdown-wrap .drop-item {
  border-bottom: dotted 1px #000;
}
.dropdown-wrap .drop-item p {
  /*margin: 0;*/
}
.dropdown-wrap .drop-heading {
  color: #00595e;
  font-weight: 700;
  font-family: 'Open Sans';
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  cursor: pointer;
}
.dropdown-wrap .drop-heading p {
  font-weight: 700;
}
@media (max-width: 767px) {
  .dropdown-wrap .drop-heading p {
    display: flex;
  }
  .dropdown-wrap .drop-heading span {
    margin-right: 5px;
  }
}
@media (min-width: 768px) {
  .dropdown-wrap .drop-heading {
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0;
    transition: padding .4s
  }
  .dropdown-wrap .closed .drop-heading {
    padding: 5px 0;
  }
}
.dropdown-wrap .drop-icon {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  border: solid 2px #00595e;
  margin-left: 10px;
  position: relative;
  flex-shrink: 0;
  transform: rotateZ(-90deg);
  transition: transform .4s;
}
.dropdown-wrap .drop-icon:before,
.dropdown-wrap .drop-icon:after {
  content: '';
  position: absolute;
  background: #00595e;
}
.dropdown-wrap .drop-icon:before {
  width: 2px;
  height: 2px;
  left: 7px;
  top: 7px;
  transition: width .4s, left .4s;
}
.dropdown-wrap .drop-icon:after {
  width: 2px;
  height: 10px;
  left: 7px;
  top: 3px;
}
.dropdown-wrap .drop-icon:hover {
  transform: rotateZ(-90deg);
}
.dropdown-wrap .drop-content {
  transition: max-height 0.4s;
  overflow: hidden;
}
.dropdown-wrap .drop-content .inner {
  padding-bottom: 20px;
  margin-top: -5px;
  padding-left: 12px;
}
.dropdown-wrap .drop-content .inner > p > strong {
  display: inline-block;
  transform: translateY(5px);
}
.dropdown-wrap .drop-item.closed .drop-content {
  max-height: 0 !important;
}
.dropdown-wrap .drop-item.closed .drop-icon {
  transform: rotateZ(0deg);
}
.dropdown-wrap .drop-item.closed .drop-icon:before {
  width: 10px;
  left: 3px;
}
.dropdown-wrap .drop-item.closed .drop-heading:hover .drop-icon {
  transform: rotateZ(-90deg);
}
.read-more-wrap {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 0;
  transition: color .4s;
}
.read-more-wrap p {
  transition: margin .4s;
}
.read-more-wrap .read-more-icon {
  background: #fff;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  border: solid 2px #00595e;
  margin-left: 10px;
  position: relative;
  flex-shrink: 0;
  transform: rotateZ(-90deg);
  transition: transform .4s;
}
.read-more-wrap .read-more-icon:before,
.read-more-wrap .read-more-icon:after {
  content: '';
  position: absolute;
  background: #00595e;
  transition: top .4s, left .4s;
}
.read-more-wrap .read-more-icon:before {
  width: 10px;
  height: 2px;
  left: 3px;
  top: 7px;
  transition: width .4s, left .4s;
}
.read-more-wrap .read-more-icon:after {
  width: 2px;
  height: 10px;
  left: 7px;
  top: 3px;
}
.read-more-wrap:hover {
  color: #00595e;
}
.read-more-wrap:hover .read-more-icon {
  transform: rotateZ(0deg);
}
/*START*/
#start .hero-anim-img {
  background: url(img/n10n.jpg) no-repeat 50% 60%;
  background-size: cover;
}
#start .overlay {
  height: 600px;
  padding-top: 170px;
}
@media (max-width: 991px) {
  #start .overlay {
    height: 100vh;
  }
}
@media (min-width: 1600px) {
  #start .overlay {
    height: 100vh;
  }
}
@media (min-width: 1920px) {
  #start .overlay {
    height: 780px;
  }
}
#NeuserIst h2,
#NeuserIst h3 {
  color: #00595e;
}
#NeuserIst .content {
  margin-top: 10px;
}
@media (min-width: 992px) {
  #NeuserIst .content {
    margin-top: 20px;
  }
}
#derAndereWeg {
  background: url(img/n6n.jpg) no-repeat center center;
  background-size: cover;
}
.facts-section .content {
  margin-bottom: 30px;
  max-width: 840px;
}
.facts-section .content p {
  margin: 5px 0;
}


@media (min-width: 992px) {
  .facts-section .content {
    margin-bottom: 40px;
  }
}

.facts-section .button{
  margin-top:20px;
  padding:4px 10px;
  border: solid 1px #00595e;
  color:#00595e;
  font-size:12px;
  transition: background .4s, color .4s;
}
.facts-section .button:hover{
  background:#00595e;
  color:#fff;
}
.facts-section .button.secondary {
    background: #00595e;
    color: #fff;
}
.facts-section .button.secondary:hover {
    background: transparent;
    color: #00595e;
}

#Portfolio {
  background: url(img/n3n.jpg) no-repeat center center;
  background-size: cover;
}
#Profil {
  background: url(img/n11n.jpg) no-repeat right center;
  background-position:right center;
  background-size: cover;
}
@media (min-width: 768px) {
  #Profil {
    background-position: right 30%;
  }
}
@media (min-width: 1024px) {
  #Profil {
    background-position: right 20%;
  }
}
@media (min-width: 1600px) {
  #Profil {
    background-position: right 15%;
  }
}
#Prinzipien {
  background: url(img/n2n.jpg) no-repeat center center;
  background-size: cover;
}
#Prinzipien .overlay {
  flex-direction: column;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 0;
  height: auto;
  background: rgb(0,0,0,.1);
}
@media (min-width: 768px) {
  #Prinzipien .overlay {
    padding-top: 80px;
  }
}
#Prinzipien .container {
  text-align: left;
}
#Prinzipien .icons-wrap {
  margin-top: 40px;
  color: #fff;
  display: flex;
  justify-content: center;
}
#Prinzipien .icons-wrap p {
  text-align: center;
}
@media (max-width: 767px) {
  #Prinzipien .icons-wrap {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
  #Prinzipien .icons-wrap .icon {
    width: 110px;
    margin-bottom: 10px;
  }
  #Prinzipien .icons-wrap .icon img {
    height: 38px;
  }
}
@media (min-width: 768px) {
  #Prinzipien .icons-wrap {
    margin-top: 80px;
  }
}
#Prinzipien .icon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding-left: 0px;
  padding-right: 0px;
  margin-left: 10px;
  margin-right: 10px;
  padding-bottom: 20px;
  margin-bottom: -20px;
  position: relative;
  transition: padding .4s,
        margin .4s;
}
@media (min-width: 768px) {
  #Prinzipien .icon {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 20px;
    margin-right: 20px;
    padding-bottom: 40px;
    margin-bottom: -40px;
  }
}
#Prinzipien .icon img {
  height: 75px;
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  #Prinzipien .icon:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.5);
    transition: transform .4s;
    transform: translate(-50%, 20px) rotateZ(45deg);
  }
  #Prinzipien .icon.active:after,
  #Prinzipien .icon:hover:after {
    opacity: 1;
    transform: translate(-50%, 8px) rotateZ(45deg);
  }
}
#Prinzipien .quotes-wrap {
  width: 100%;
  background: rgba(255, 255, 255, 0.4);
  padding-bottom: 10px;
  margin-top: 40px;
  height: 120px;
}
@media (min-width: 768px) {
  #Prinzipien .quotes-wrap {
    height: 180px;
  }
}
#Prinzipien .quote {
  padding-bottom: 40px;
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  text-align: center;
  display: none;
  margin-top: 20px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  #Prinzipien .quote {
    font-size: 20px;
  }
}
#Prinzipien .quote.active {
  display: block;
}
@media (min-width: 768px) {
  #Prinzipien .quote {
    padding-bottom: 80px;
    margin-top: 40px;
  }
}
#Projekte {
  background: #dfe4e3;
}
#Projekte.subpage-projekte{
  background: #fff;
}
#Projekte .slider-wrapper {
  margin-left: -10px;
  margin-right: -10px;
  position: relative;
}
#Projekte .slider-wrapper .slick-track {
  display: flex;
}
#Projekte .slide {
  padding-left: 10px;
  padding-right: 10px;
  height: inherit !important;
  display: flex;
  flex-direction: column;
}
#Projekte .slide h4 {
  color: #00595e;
  margin: 10px 0;
  display:flex;
}
#Projekte .slide h4 span:first-of-type{
  margin-right:5px;
}
#Projekte .slide p.preview-text {
  margin-bottom: auto;
  overflow: hidden;
  display: -webkit-box;
  /*-webkit-line-clamp: 3; !* number of lines to show *!*/
  /*line-clamp: 3;*/
  -webkit-box-orient: vertical;
}
#Projekte .slide-img-wrap,
#Projekte .slide-img {
  height: 230px;
}
#Projekte .slide-img-wrap {
  overflow: hidden;
  display: block;
  margin: 0;
}
#Projekte .slide-img {
  transition: transform .8s;
}
#Projekte .slide:hover .read-more-icon {
  transform: rotateZ(0deg);
}
#Projekte .slide:hover .slide-img {
  transform: scale(1.05);
}
#Projekte .slider-arrow-wrap {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  top: 100px;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}
#Projekte .slider-arrow {
  height: 40px;
  width: 40px;
  cursor: pointer;
  transition: opacity .4s;
}
#Projekte .slider-arrow.slick-disabled {
  opacity: 0;
  cursor: default;
}
#Projekte .read-more-wrap {
  margin-top: -5px;
  margin-bottom: -5px;
}
#References .ref-slider-wrapper {
  margin-left: -10px;
  margin-right: -10px;
  position: relative;
}
#References .ref-slide {
  padding-left: 10px;
  padding-right: 10px;
  min-height:160px;
  position: relative;
}
#References .ref-slider-arrow-wrap {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  top: 50%;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}
#References .ref-slide img {
  transition: opacity .4s;
  position: absolute;
  top:50%;
  left:25px;
  right:25px;
  width:calc(100% - 50px);
  transform:translateY(-50%);
}
#References .ref-slide img:nth-of-type(1) {
  opacity: 1;
}
#References .ref-slide img:nth-of-type(2) {
  opacity: 0;
}
/*#References .ref-slide:hover img:nth-of-type(1) {*/
/*  opacity: 0;*/
/*}*/
/*#References .ref-slide:hover img:nth-of-type(2) {*/
/*  opacity: 1;*/
/*}*/

#References .ref-slider-arrow {
  height: 40px;
  width: 40px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity .4s;
}
#References .ref-slider-arrow.slick-disabled {
  opacity: 0;
  cursor: default;
}
/***********/
/*PORTFOLIO*/
/***********/
#Wirkung {
  background: url(img/n9n.jpg) no-repeat center 10%;
  background-size: cover;
}
#Weiterentwicklung h3,
#Loesungen h3{
  max-width: 580px;
}
#Weiterentwicklung .content {
  max-width: 760px;
}
#Weiterentwicklung .social-icons-wrap {
  margin-top: 40px;
}
@media (min-width: 992px) {
  #Weiterentwicklung .social-icons-wrap {
    margin-top: 70px;
  }
}
#Werkzeuge .dropdown-wrap .drop-heading {
  /*margin-left: -13px;*/
}
/********/
/*PROFIL*/
/********/
#ProfilSubpage {
  background: url(img/n1n.jpg) no-repeat;
  background-position: center 0%;
  background-size: 992px auto;
}
@media (min-width: 768px) {
  #ProfilSubpage {
    background-position: 60% 0%;
    background-size: 1240px auto;
  }
}
@media (min-width: 992px) {
  #ProfilSubpage {
    background-position: 50% 0%;
    background-size: 120% auto;
  }
}
@media (min-width: 1440px) {
  #ProfilSubpage {
    background-position: 50% 0%;
    background-size: cover;
  }
}
@media (min-width: 1920px) {
  #ProfilSubpage {
    background-position: 50% 0%;
    background-size: cover;
  }
}
#MehrProfil {
  background: url(img/n4n.jpg) no-repeat center center;
  background-size: cover;
}
section.more-profile {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  section.more-profile {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
section.more-profile h4 {
  /*margin-bottom: 10px;*/
}
section.more-profile h4 + p {
  margin-top: 0;
}
section.more-profile ul li:first-of-type {
  margin-top: 0;
}
section.more-profile h4,
section.more-profile span {
  color: #00595e;
}
section.more-profile .social-icons-wrap {
  margin-top: 40px;
}
@media (min-width: 992px) {
  section.more-profile .social-icons-wrap {
    margin-top: 70px;
  }
}
section.more-profile.first,
section.more-profile.middle {
  border-bottom: dotted 1px #000;
  /*padding-bottom: 10px;*/
}
section.more-profile.middle,
section.more-profile.last {
  /*padding-top: 10px;*/
}
/**********/
/*KONTAKT*/
/*********/
#Kontakt {
  background: url(img/k1b.jpg) no-repeat center center;
  background-size: cover;
}
.contact-section-link {
  margin: 0;
  transition: color .4s;
}
.contact-section-link:hover {
  color: #00595e;
}
/************/
/*IMPRESSUM*/
/**********/
#Impressum {
  padding-top: 110px;
}
@media (min-width: 992px) {
  #Impressum {
    padding-top: 200px;
  }
}
#Impressum .container a{
  color:#005962;
  margin:0;
}
#ProjekteBanner {
  background: url(img/n5n.jpg) no-repeat center center;
  background-size: cover;
}

.slide-title{
  text-transform: uppercase
}

ul li{
  list-style:none;
  margin-top: 5px;
  margin-bottom: 5px;
  position:relative;
  padding-left:13px;
}
ul li:before{
  content:'>';
  position:absolute;
  left:0;
  top:0;
  color: #00595e;
}
@media (min-width: 992px){
  ul li{
    margin-top:10px;
    margin-bottom:10px;
  }
}
.more-profile ul li:before,
.facts-section ul li:before{
  content:'>';
  color:#00595e;
  position:absolute;
  left:0;
  top:0;
}

.more-profile ul li:before,
.facts-section ul li:before{
  color:#00595e;
}

#cookiebanner .container {
  position: relative;
}
#cookiebanner a {
  color: #000;
  margin-bottom: 10px;
  transition: color .4s;
}
#cookiebanner a:hover {
  color: #00595e;
}
#cookiebanner {
  text-align: center;
  background: #fff;
  position: fixed;
  bottom: 0px;
  z-index: 21;
  border-top: solid 1px #dfe4e3;
  width: 100%;
  font-size:12px;
  transform: translateY(100%);
  transition: transform .4s;
}
#cookiebanner.shown {
  transform: translateY(0%);
}
.cookiebannerButtons span {
  color: #00595e;
  text-decoration: none;
  top: 5px;
  cursor: pointer;
  border: 1px solid #fff;
  padding: 4px;
  transition: color .4s;
}
.cookiebannerButtons span:hover {
  color: #00595e;
}
@media (max-width:1239px) {
  .cookiebannerButtons a {
    margin-top:-5px;
  }
}
@media (min-width:1240px) {
  .cookiebannerButtons {
    position: absolute;
    right: 5px;
    top: 0;
  }
}
@media (max-width:7679px) {
  #cookiebanner .container {
    padding-top:8px;
    line-height:1.25;
    padding-bottom:2px;
  }
  #cookiebanner .container a{
    margin-bottom:5px;
  }
}
.narrow {
  max-width: 460px;
}

.content ul li a {
  margin: 0;
}

#HeroSlider {
  position: relative;
  padding: 0;
}

.hero-slider-container {
  height: 600px;
  position: relative;
}
@media (max-width: 991px) {
  .hero-slider-container {
    height: 100vh;
  }
}
@media (min-width: 1240px) {
  .hero-slider-container {
    height: 100vh;
    max-height: 1120px;
  }
}



.hero-slider-inner-container {
  height: 100%;
}

.hero-slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-animation-name: herozoom;
  animation-name: herozoom;
  -webkit-animation-duration: 30s;
  animation-duration: 30s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.hero-slider-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  pointer-events: none;
  padding: 10px;
  text-align: center;
}

.banner.hero.singlepost h1 {
  max-width: 820px;
  margin: 0 auto;
}

.logos-wrap {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}
.logos-wrap > img {
  height: 60px;
  width: auto;
}
footer .logos-wrap > img {
  height: 80px;
}

@media (max-width: 767px) {
  footer .logos-wrap > img {
    height: 60px;
  }
}
