@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --bg: #f2f2f2;
  --green: #78a02e;
  --light-green: #e5f1cf;
  --dark-green: #5a7d23;
  --black: #4b4c4d;
  --white: #fff;
  --headline-font: "Roboto", sans-serif;
  --text-font: "Roboto", sans-serif;
}

/* Helper-Klassen */
.rg-1 {
  row-gap: 0.5rem;
}
.rg-2 {
  row-gap: 1rem;
}
.rg-3 {
  row-gap: 1.5rem;
}
.rg-4 {
  row-gap: 2rem;
}
.rg-5 {
  row-gap: 2.5rem;
}
.rg-6 {
  row-gap: 3rem;
}
.rg-7 {
  row-gap: 3.5rem;
}
.rg-8 {
  row-gap: 4rem;
}
.rg-9 {
  row-gap: 4.5rem;
}
.rg-10 {
  row-gap: 5rem;
}

.row-space-evenly {
  justify-content: space-evenly;
}

.dp-none {
  display: none !important;
}

/* Helper-Klassen Ende */

body {
  font-family: var(--text-font);
  background: var(--bg);
  color: var(--black);
  font-size: 1rem;
}

h1 {
  color: var(--black);
  font-family: var(--headline-font);
  font-size: 2.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  /* letter-spacing: 2px; */
}

h2 {
  color: var(--green);
  font-family: var(--text-font);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: .5rem;
  position: relative;
}

section.std h2{
  margin-bottom: 2.5rem;
}

section.std h2::after {
  content: "";
  height: 4px;
  width: 100px;
  background-color: var(--green);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  color: var(--black);
  font-family: var(--text-font);
  font-size: 1.35rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

h4 {
  color: var(--black);
  font-family: var(--text-font);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

a {
  color: var(--green);
  transition: 0.6 all ease-in-out;
  text-decoration: none;
}

a:hover {
  color: var(--dark-green);
  text-decoration: none;
}

img.logo-webapp {
    width: 82px;
}

.navbar .logo {
  width: 300px;
  transition: all 0.5s ease-in-out;
  /* filter: brightness(0) invert(1); */
}

.navbar {
  background-color: var(--bg);
}

nav.navbar.navbar-expand-xl.fixed-top.nav-bg {
    border-bottom: 1px solid #0000000f;
}

.navbar.nav-bg .logo {
  width: 200px;
}
.navbar .navbar-nav .nav-item {
  padding: 0 2rem;
}
.navbar .navbar-nav .nav-link {
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 0;
  position: relative;
  color: var(--black);
}

.navbar .navbar-nav .nav-link:hover {
  text-decoration: none;
}

.navbar .navbar-nav .nav-link::after {
  content: "";
  height: 2px;
  background: var(--black);
  width: 0;
  transition: all 0.5s ease-in-out;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.navbar .navbar-nav .nav-link.nav-active::after {
  width: 100%;
}

.navbar .navbar-nav .nav-link:hover::after {
  width: 100%;
  color: var(--black);
}

.navbar button.navbar-toggler {
  border: 0;
  font-size: 2rem;
  color: var(--green);
  outline: none !important;
}

.wrapper {
  overflow: hidden;
}

.sidenav {
  position: fixed;
  background: var(--black);
  z-index: 1100;
  top: 0;
  right: -450px;
  width: 450px;
  height: 100vh;
  height: 100dvh;
  transition: all 0.5s ease-in-out;
}

.sidenav.open {
  right: 0;
}

.sidenav .sidenav-inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
}

.sidenav .sidebar-logo {
  display: none;
}

.sidenav .sidebar-logo img {
  width: 100%;
  max-width: 350px;
  margin-bottom: 3rem;
  padding: 0 2rem;
}

.sidenav .sidenav img.logo {
  width: 100%;
  max-width: 300px;
  margin-bottom: 4rem;
}

.sidenav button.sidenav-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: 0;
  color: white;
  font-size: 2rem;
}

.sidenav li.nav-item {
  display: flex;
  justify-content: center;
}

.sidenav .nav-link {
  color: var(--white);
  text-decoration: none !important;
  position: relative;
  font-size: 1.5rem;
}

.sidenav .nav-link:hover {
  text-decoration: none;
}

.sidenav .navbar-nav {
  margin-left: auto;
  margin-right: auto;
}

.sidenav .nav-link::after {
  content: "";
  height: 2px;
  background: var(--white);
  width: 0;
  transition: all 0.5s ease-in-out;
  position: absolute;
  bottom: 5px;
  left: 0;
}

.sidenav .nav-link.nav-active::after {
  width: 100%;
}

.sidenav .nav-link:hover::after {
  width: 100%;
  color: var(--white);
}

.owl-nav {
  position: relative;
  z-index: 10000000;
}

button.owl-prev {
  position: absolute;
  right: 58px;
  top: 45px;
  font-size: 50px;
  transform: translateY(-50%);
  outline: none !important;
}

button.owl-next {
  position: absolute;
  right: 15px;
  top: 45px;
  font-size: 50px;
  transform: translateY(-50%);
  outline: none !important;
}

button.owl-prev > span,
button.owl-next > span {
  font-size: 80px;
}

.owl-dots {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
}

.owl-dots .owl-dot span {
  display: block;
  width: 15px;
  height: 15px;
  background-color: var(--white);
  opacity: 0.5;
  transition: all 0.5s ease-in-out;
  border-radius: 50%;
}

.owl-dots .owl-dot.active span {
  opacity: 1;
}

.iq-hr {
  background: black;
  width: 100%;
  height: 5px !important;
  opacity: 1;
}

.iq-hr-small {
  background: black;
  width: 100%;
  height: 2px !important;
  opacity: 1;
}

a.iq-link {
  font-size: 28px;
  font-weight: 600;
  text-decoration: none;
}

a.iq-link i {
  margin-left: 5px;
  transition: all 0.5s ease-in-out;
}

a.iq-link:hover i {
  margin-left: 20px;
}

a.iq-link.iq-link-hover i {
  margin-left: 20px;
}

.breadcrumbs {
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  column-gap: 20px;
  row-gap: 10px;
  font-size: 1.5rem;
  color: var(--black);
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--black);
}

.breadcrumbs a:last-of-type {
  font-weight: bold;
}

.breadcrumbs i {
  font-size: 1rem;
}
/* Footer */

.footer {
  background-color: #191919;
  padding: 5rem 0;
  color: #ffffffcc;
  font-size: 1.1rem;
}

.footer .footer-logo {
  width: 100%;
  max-width: 150px;
  /* filter: brightness(0) invert(1); */
}

.footer h2 {
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 400;
}

.footer a {
  color: #fff;
  text-decoration: none;
  opacity: 1;
}

.footer i {
  width: 25px;
}

a.footer-news-link {
  display: block;
  border-bottom: 1px solid gray;
  padding: 6px;
  margin-bottom: 5px;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.btn.btn-main {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem 2rem;
  border-radius: 0;
  color: var(--white);
  background-color: var(--green);
  transition: all 0.5s ease-in-out;
  border-radius: 3px;
}

.btn.btn-main:hover {
  background: var(--black);
}

.btn.btn-inverted {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem 2rem;
  border-radius: 0;
  /* border: 2px solid var(--black); */
  background: var(--green);
  color: var(--white);
  transition: all 0.5s ease-in-out;
  border-radius: 0;
}

.btn.btn-inverted:hover {
  background-color: var(--black);
}

/* Artikel Style */

section.header {
  padding: 3rem;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

section.header a.News-Header {
  position: absolute;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  bottom: -111px;
  right: 10rem;
  background: black;
  font-size: 1.65rem;
  width: 350px;
  text-align: center;
  padding: 2rem 2rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  transition: 1s all ease-in-out;
}

section.header .header-text {
  width: 100%;
}

section.header .header-text .image-header {
  width: 100%;
  margin: auto;
  display: block;
}

section.std {
  padding: 3rem 0;
}

section.artikel-image-video {
  padding: 3rem 0;
}

section.artikel-image-video video.video {
  width: 100%;
  display: block;
}

section.artikel-image-video .outter {
  position: relative;
}

.artikel-image-video.even {
  background-color: var(--light-green);
}

section.artikel-image-video .outter .asset {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
}

section.artikel-image-video.even .outter .asset {
  left: 0;
  right: unset;
  transform: rotate(90deg);
}

section.artikel-image-video img.image {
  width: 100%;
  border-radius: 3px;
}

section.artikel-mehr-color-top.artikel-image-video{
  margin-bottom: 0;
}

section.artikel-mehr-color{
  background-color: var(--green);
  position: relative;
  padding: 5rem 0;
  text-align: center;
}


section.artikel-mehr-color::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 25px solid var(--bg); /* Color of the triangle */
  position: absolute;
  top:0;
  left:50%;
  transform: translateX(-50%);
}

section.artikel-mehr-color.even::before{
  border-top: 25px solid var(--light-green);
}

section.artikel-mehr-color .btn{
  background-color: var(--white);
  color: var(--green);
}

section.artikel-mehr-color .btn:hover{
  background-color: var(--black);
  color: var(--white);
}

.even .text{
  text-align: right;
}

.artikel-mehr-color-top.even .outter-image {
    padding-left: 6rem;
}

.artikel-mehr-color-top.odd .outter-image {
    padding-right: 6rem;
}

section.artikel-mehr-color *{
  color: var(--white);
}

section.points {
  margin: 5rem 0;
}

section.points h2 {
  color: var(--black);
}

section.points .headline {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 10px;
}

section.points .headline h3 {
  font-weight: 400;
  color: black;
  margin: unset;
}

section.points .point-icon {
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.points .point-icon i {
  font-size: 1.25rem;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--black);
  /* border-radius: 50%; */
  /* border: 1px solid #a5a5a5; */
}

section.points .inner-point {
  padding: 2.25rem;
  /* background: var(--green); */
  background: #edf3da;
  height: 100%;
  color: black;
  position: relative;
}

section.points .inner-point .text {
  text-align: center;
  display: flex;
  align-items: center;
  height: 100%;
}

section.points .inner-point p {
  margin: 0;
}

section.points .inner-point::before {
  content: "";
  width: 30%;
  height: 2px;
  background: black;
  position: absolute;
  top: 0;
  left: 0;
}

section.points .inner-point::after {
  content: "";
  width: 2px;
  height: 30%;
  background: black;
  position: absolute;
  top: 0;
  left: 0;
}

section.points .inner-point > span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

section.points .inner-point > span::before {
  content: "";
  width: 30%;
  height: 2px;
  background: var(--green);
  position: absolute;
  bottom: 0;
  right: 0;
}
section.points .inner-point > span::after {
  content: "";
  width: 2px;
  height: 30%;
  background: var(--green);
  position: absolute;
  bottom: 0;
  right: 0;
}

section.header-video {
  aspect-ratio: 16 / 6;
}

section.header-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.team {
  margin: 5rem 0;
}

section.team h2 {
  color: var(--black);
}

section.team img.image {
  width: 100%;
}

section.team .text {
  padding: 1.25rem;
  text-align: center;
}

section.team .text .name {
  font-size: 1.55rem;
}

section.team .text .job {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
}

section.team .outter-image {
  position: relative;
}

section.team .outter-image .asset {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
}

section.split-header {
  aspect-ratio: 16/6;
  position: relative;
}
section.split-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #00000030;
}

section.split-header .bg-image {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.split-header .bg-image.active {
  display: block;
}

section.split-header .section-row {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
}

section.split-header .section-column {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s ease-in-out;
}

section.split-header .section-column:nth-of-type(2) {
  border-left: 1px solid white;
  border-right: 1px solid white;
}

section.split-header .section-column.active {
  background: rgba(0, 0, 0, 0.5);
  flex: 2;
}

section.split-header .section-column .front-text {
  font-family: var(--headline-font);
  color: white;
  font-size: 2.5rem;
  padding: 2rem;
  text-align: center;
  font-weight: 600;
  /* letter-spacing: 2px; */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* x-offset, y-offset, blur, color */
}

section.split-header .section-column .back-text {
  display: none;
  color: white;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* x-offset, y-offset, blur, color */
  padding: 4rem 10rem;
}

section.split-header .section-column .back-text h1 {
  color: white;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* x-offset, y-offset, blur, color */
}

section.split-header .section-column.active .front-text {
  display: none;
}

section.split-header .section-column.active .back-text {
  display: block;
}

section.kontakt {
  margin: 5rem 0;
}

section.kontakt .outter {
  position: relative;
}

section.kontakt .outter .image {
  width: 100%;
}

section.kontakt .outter .asset {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
}
section.kontakt .form-group label {
  font-weight: 700;
  padding-left: 0.8rem;
  padding-bottom: 0.35rem;
}
section.kontakt .form-control {
  border-radius: 0;
}

section.google .google-map {
  min-height: 300px;
  position: relative;
}

section.google .google-map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}

.google-map {
  width: 100%;
  height: 100%;
  min-height: 350px;
  position: relative;
}

.google-map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}

.youtube {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 1.6rem;
}

.youtube iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

section.video-header {
  position: relative;
}

section.video-header .text-area {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

.up-text {
  position: absolute;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: -34px;
  top: 50%;
  transform: translateY(-50%);
  flex-wrap: nowrap;
}

.up-text span {
  transform: rotate(270deg);
  font-size: 2rem;
  color: var(--white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

section.video-header video {
  width: 100%;
}

section.video-header .header-text {
  max-width: 750px;
  padding: 2rem 5rem;
  background: #ffffffa6;
  text-align: center;
  position: relative;
}

section.video-header .header-text p {
  margin: 0;
}

section.app {
  margin: 5rem 0;
}

section.app .owl-dots {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
}

section.app .card-header {
  background: none;
}

section.app .owl-dots .owl-dot span {
  display: block;
  width: 15px;
  height: 15px;
  background-color: var(--white);
  opacity: 0.5;
  transition: all 0.5s ease-in-out;
  border-radius: 50%;
}

section.app .owl-dots .owl-dot.active span {
  opacity: 1;
}

section.app .card {
  border-radius: 0;
  border: 0;
  background: transparent;
}

section.app .card .card-header {
  padding: 0;
}

section.app .card .card-body {
    text-align: center;
    background: var(--light-green);
}

section.app .card .card-body p {
  margin: 0;
}

section.app .card .card-body .headline-3 {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  display: block;
}

img.mf-pfeil {
  width: 53px;
}

.nav-galerie {
  padding: 0 !important;
}

a.nav-link.galerie {
  display: flex;
  align-items: center;
  gap: 10px;
}

a.nav-link.galerie span {
  line-height: 1;
  font-size: 14px;
}

.header-mobile-only {
  display: none;
}

section.image-collage {
  margin: 5rem 0;
}
section.image-collage .outter-collage {
  display: flex;
  flex-direction: column;
  gap: 1.65rem;
}
section.image-collage .outter-collage img {
  width: 100%;
}
section.image-collage .collage-text {
  background: var(--light-green);
  padding: 3rem 2rem;
}

section.image-collage2 {
  margin: 5rem 0;
}
section.image-collage2 .outter-collage {
  display: flex;
  flex-direction: column;
  gap: 1.65rem;
}
section.image-collage2 .collage-text {
  background: var(--light-green);
  padding: 2rem 2rem;
}

section.image-collage2 .outter {
  position: relative;
}

section.reise-small{
  margin: 5rem 0;
}

section.reise-small .box-reise {
    background: var(--light-green);
    padding: 1.6rem;
    height: 100%;
}

section.reise-small .row{
  row-gap: 1.6rem;
}

section.reise-small .headline {
    font-size: 1.25rem;
    font-weight: 600;
}

section.reise-small .datum {
    font-size: 0.9rem;
    font-style: italic;
}

section.reise-small .text {
    margin-top: .5rem;
}

section.reise-small .text *{
  margin: 0;
}

section.reise-small .btn{
  margin-top: .5rem;
}

section.reise{
  margin: 5rem 0;
}

section.reise .box-reise {
    background: var(--light-green);
    padding: 1.6rem;
    height: 100%;
}

section.reise .row{
  row-gap: 1.6rem;
}

section.reise .headline {
    font-size: 1.25rem;
    font-weight: 600;
}

section.reise .datum {
    font-size: 0.9rem;
    font-style: italic;
}

section.reise .text {
    margin-top: .5rem;
}

section.reise .text *{
  margin: 0;
}

section.reise .btn{
  margin-top: .5rem;
}

section.two-blocks{
  margin: 5rem 0;
}

section.two-blocks .block{
  background-color: var(--light-green);
  /*   height: 100%; */
}

section.two-blocks .block-right .block {
    margin-top: 7rem;
}

section.two-blocks .block .text-section{
  padding: 1.6rem;
}

section.two-blocks .block .image{
  width: 100%;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

section.slider-text{
  padding: 5rem 0;
  background-color: var(--light-green);
}

/* General styling */
.slide-block {
  position: relative;
  width: 100%;
  height: 400px; /* Adjust as needed */
  overflow: hidden;
  border-radius: 3px;
}

.slide-block .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-block .slide-text {
  position: absolute;
  bottom: 10%;  /* Adjust text position */
  /* left: 10%; */
  color: white;
  z-index: 2;
  max-width: 100%;  /* To avoid text overflowing */
  line-height: 1.5;
  opacity: 1; /* Keep the headline and first line always visible */
  transform: translateY(0);
  transition: all 0.5s ease;
  max-height: 60px; /* Limits to the height of the headline + first line */
  overflow: hidden;
  padding: 0 1.6rem;
}

.slide-block .slide-text h3{
  color: white;
}

/* Light overlay with filter */
.slide-block .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* Lighter black overlay */
  z-index: 1;
}

/* Hover effect */
.slide-block:hover .slide-text {
  opacity: 1;  /* Ensure text is fully visible */
}

.owl-bild-text .owl-dots{
  position: unset;
  margin-top: .6rem;
  justify-content: flex-start;
}

.owl-bild-text .owl-dots .owl-dot span{
  background-color: var(--green);
  width: 35px;
  height: 4px;
  border-radius: 0;
}

.owl-bild-leiste .owl-dots{
  position: unset;
  margin-top: .6rem;
  justify-content: flex-start;
}

.owl-bild-leiste .owl-dots .owl-dot span{
  background-color: var(--green);
  width: 35px;
  height: 4px;
  border-radius: 0;
}

.video-wrapper {
    aspect-ratio: 16 / 7;
}

.video-wrapper video {
    object-fit: cover;
    display: block;
}

@media (max-width: 1500px) {
  .navbar .logo {
    width: 260px;
  }
  .navbar .navbar-nav .nav-link {
    font-size: 1.185rem;
  }
  .navbar .navbar-nav .nav-item {
    padding: 0 1rem;
  }
}

@media (max-width: 991px) {
  .split-header {
    display: none;
  }
  .header-mobile-only {
    display: block;
  }
  .header-text {
    position: relative;
  }

  .header-text::before {
    content: "";
    background-color: #141414;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.35;
  }

  .mobile-text {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 2rem;
    width: 100%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .mobile-text h3 {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    font-family: var(--headline-font) !important;
  }
  .artikel-image-video .text {
    padding-top: 1.6rem;
    text-align: center;
  }
  .kontakt .text {
    padding-top: 1.6rem;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 1.65rem;
  }

  h2 {
    font-size: 1.35rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  h4 {
    font-size: 1.2rem;
  }

  .navbar .logo {
    width: 200px;
  }

  img.logo-webapp {
    width: 70px;
}

  .sidenav {
    width: 100vw;
    right: -100vw;
  }
  .sidenav .sidebar-logo {
    display: block;
  }
  .artikel-image-video .text {
    padding-top: 1.6rem;
  }
  .image-collage .row {
    row-gap: 1.6rem;
  }
  .text-area {
    display: none !important;
  }
  .btn.btn-main {
    width: 100%;
  }
  section.team {
    margin: 0;
  }
  .sidenav .btn {
    margin: 1.1rem 0 !important;
  }
}

@media(max-width: 1200px){
  .artikel-mehr-color-top .outter-image{
    padding: 0!important;
  }
  .nav-item .btn{
    margin-top: 2rem!important;
  }
  section.split-header .section-column .front-text {
      font-size: 1.6rem;
  }
}