@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=devanagari,latin-ext');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Roboto:ital,wght@0,300;0,400;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Prompt:ital,wght@0,400;0,500;0,600;0,700;0,900;1,300;1,400&family=Roboto:ital,wght@0,300;0,400;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Raleway:wght@100..900&display=swap');


:root {
  --primary:#95ad96;
  --secondary: #3a5e3b;
  --light:#ffffff;
  --dark:#212121;
  --lightgrey:#f3f3f3;
  --grey:#495057;
  --prompt:'Prompt', sans-serif;
}
::selection {
  background: #95ad96;
  color: #fff;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: #ff000000 1px solid;
}
html{
  scroll-behavior: smooth;
  overflow-x: hidden;
  border: 1px solid #333;
}

body, html, ul, ol, li, h1, h2, h3, h4, h5, h6, button {
  margin: 0;
  padding: 0;
  cursor: default;
}

body::-webkit-scrollbar {
  width: 0.33rem;
  height: 0.33rem;
}
 
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
body::-webkit-scrollbar-thumb {
  background-color: var(--dark);
  outline: 0.1px solid var(--dark);
}
.color{
  color:#95ad96;
}
body{
    font-family: Montserrat, sans-serif;
    object-fit: cover;
    margin: 0 auto;
}
h1{
  font-size: 0.5rem;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  color: #333;
}
h2{
  font-size: 1rem;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}
h3{
  color: #333;
}
p{
  font-family: Montserrat, sans-serif;
  margin-block-start: 0em;
  margin-block-end: 0em;
}


@media ( min-width: 550px ) {  /** Tablet **/
  h1 {
    font-size: 1rem;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
  }
}

@media ( min-width: 900px ) { /** Browserfenster **/
  h1 {
    font-size: 2rem;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
  }
}
.wrapperdiv{
  position:relative;
  top:-150px;
}
.wrapperdiv2{
  position:relative;
  top:0px;
}
.kontaktdiv{
  position:relative;
  margin-top: -10rem;
}
.relative{
  position: relative;
}
.flex{
  display: flex;
  display: -ms-flexbox;
}
ol, ul {
  list-style: none;
}
fieldset, ol, ul {
  margin: 0;
  padding: 0;
}
.cursor-pointer {
  cursor: pointer;
}
.p-0 {
  padding: 0;
}
.items-center{
  align-items: center;
}
.margin-low-down{
  margin-bottom: 0.25rem;
}
/*Loader*/
.loader-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  display:flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}
.loader {
  display: inline-block;
  width: 1px;
  height: 1px;
  background-image: url(/assets/images/airplane-svg.png);
  position: relative;
  border: 4px solid var(--white);
  animation: loader 0.75s infinite ease;
}
.loader img {
 width: 2rem;
}
@keyframes loader {
  0% {
    transform: rotate(0deg);
  } 
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes loader-inner {
  0% {
    height: 0%;
  }
  
  25% {
    height: 0%;
  }
  
  50% {
    height: 100%;
  }
  
  75% {
    height: 100%;
  }
  
  100% {
    height: 0%;
  }
}

/**** Animation ******/
.lineup {
  animation: 2s anim-lineUp ease-out;
}
@keyframes anim-lineUp {
  0% {
    opacity: 0;
    transform: translateY(80%);
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

/***** Menü *****/
.navbar{
    padding: 1vw 6.5%; 
    font-size: 0.9vw;
    display: flex;
    background-color:var(--light);
    position: relative; 
    top: 0;
    z-index: 10;
    border-right: none;
    align-items: flex-start;
    justify-content: space-between;
}

.navbar .navbar-right{
  display: flex;
  align-items: center;
  justify-items: end;
}
@media ( max-width: 1048px ) {
  .navbar{
  display: none;
  }
}
.navbar-left img {
    width: 10rem;
    margin-top: 8px;
}
.navbar-middle div{
    font-weight: 400;
    margin-left: 1vw;
    text-decoration: none;
    text-decoration-color: rgb(49, 99, 51);
    color: #333;
}
.navbar-left{
    display: flex;
    align-items: center;
}
.navbar-left img{
  cursor: pointer;
}
.navbar-middle {
  align-items: center;
  display: flex;
  cursor: default;
  margin-bottom: 10px;
}
.navbar-middle a{
  text-decoration: none;
  cursor: pointer;
}
.navbar-middle p{
  font-family: 'Prompt', sans-serif;
  font-weight:400;
  color: #212121;
  font-size: 1rem;
  letter-spacing: 1px;
  text-decoration:none !important;
}
.navbar-middle p:hover{
  text-decoration:none !important;
}
@media only screen and (max-width: 1500px){
  .navbar-middle p{
    font-family: 'Prompt', sans-serif;
    font-weight:400;
    color: #212121;
    font-size: 0.9rem;
  }
}
.navbar-middle > *{
    margin: 10px 10px 0px 10px;
}
.leistung{
  padding-bottom:0px;
}
.anfrage a{
    color: var(--dark);
    cursor: pointer;
    text-decoration: none;
    font-family: 'Prompt', sans-serif;
    font-weight:400;
    color: #212121;
    font-size: 1rem;
    letter-spacing: 1px;
}
.anfragebutton{
  padding:0.40rem 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0);
  font-weight: 400;
  display: flex;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.1rem;
  border: solid 0.1rem #95ad96;
  transition: ease-out 0.5s;
  box-shadow: inset 0 0 0 0 #3a5e3b;
  color: var(--dark);
}
@media only screen and (max-width: 1040px){
  .anfragebutton{
    display: none;
  }
}
@media only screen and (max-width: 1200px){
  .navbar{
    padding: 1vw 0rem 0.5rem 1rem;
  }
}
  #anfrageicon{
    margin-top: 0.35rem;
    font-size: 0.90rem;
  }
  .anfragebutton:hover #anfrage__btn{
    color: var(--light);
  }
  .anfragebutton:hover {
    box-shadow: inset 0 -100px 0 0 #3a5e3b;
    color: var(--light);
  }
  .anfragebutton:active {
    transform: scale(0.9);
  }
  .anfragebutton:hover{
    background-color: var(--light);
  }
  .dropdown-content img {
    width: 1.6rem;
    height: 1.1rem;
    border-radius: 0.1rem;
    margin-right: 0.5rem;
  }
  .lang-switcher{
    display: flex;
    align-items: center;
    margin-left: 1rem;
  }
  @media only screen and (max-width: 1040px){
    .lang-switcher{
      display: none;
    }
  }

  @media only screen and (max-width: 800px) {
    .lang-switcher {
    display: flex;
    align-items: center;
    margin-left: 1rem;
    margin-right: 1rem;
    }
    .wrapperdiv{
      position:relative;
      top:-50px;
    }
    .kontaktdiv{
      position:relative;
      margin-top: 50px;
    }
  }
  .lang-switcher nav{
    display: flex;
    align-items: center;
  }
  .dropdown-content.show {
    display: block;
  }
  .dropdown-content {
    opacity: 1;
    display: none;
    padding: 0.50rem 1rem 0.50rem 0.75rem;
    position: absolute;
    top: 2.7rem;
    width: fit-content;
    background-color: #fff;
    border: 0.01rem solid #f3f3f3;
    border-radius: 0;
  }
  .dropdown-content a{
    text-decoration: none;
    color: var(--dark);
    font-family: var(--prompt);
    font-weight: 400;
    width: fit-content;
    display: flex;
    align-items: center;
    left: 0;
    font-family: Montserrat,sans-serif;
    }
    #leistung_i{
      font-size: 0.7rem;
      align-items: center;
      display: flex;
      margin-left: -0.2rem;
    }
    #language_i{
      font-size: 0.7rem;
      align-items: center;
      display: flex;
      margin: 0;
      padding: 0;
    }
    @media only screen and (max-width: 1200px){
      .lang-switcher{
        display: flex;
        align-items: center;
        margin-left: 1rem;
        margin-right: 1.5rem;
      }
      .dropdown-content {
        opacity: 1;
         display: none;
         padding: 0.50rem 1rem 0.50rem 0.75rem;
        position: absolute;
         top: 2.8rem;
         width: fit-content;
         background-color: #fff;
         border: 0.01rem solid #f3f3f3;
         margin-left: -5rem;
       }
    }
  .dropdown-icon{
    color: #212121;
    margin-left: -0.2rem;
    font-size: 1rem;
  }
  .dropdown-icon-svg{
    display: block;
    z-index: 10000;
    margin-left: 0.2rem;
    margin-top: 0.2rem;
  }

  .dropdown-button a{
    align-items: center;
  }
  .is-active{
    padding: 0.25rem 0.5rem;
    border-radius: 0.2rem;
    background-color: #f3f3f3;
  }
  .not-active{
    padding: 0.25rem 0.5rem;
    border-radius: 0.2rem;
    border: 0.1rem solid var(--light);
  }
  .not-active:hover{
    padding: 0.25rem 0.5rem;
    border-radius: 0.2rem;
    border: 0.1rem solid #c7e2c7;
  }
  .rotate180{
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .rotate90{
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .margintop{
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    margin-top: 0rem;
  }
  .dropdown-button a span{
    font-size: 1rem !important;
    margin-top: 0.10rem;
    font-family: 'Prompt', sans-serif;
    font-weight:400;
    color: #212121;
    letter-spacing: 1px;
  }
  i {
    padding-left: 7px;
    margin-right: -5px;
  }
  i:hover {
    padding-left: 7px;
    margin-right: -5px;
  }
  #arrow_down{
    display: none;
  }
  .leistung div li{
    display: block;
    top: 2.0rem;
    background-color: #fff;
    cursor: pointer;
    padding: 0.5vw 1vw 0.5vw 1vw;
    margin: 0.2rem;
    font-size: 0.85vw;
    background-color: rgb(247, 250, 247);
    color: #333;
  }
  .leistung ul i{
    padding-right: 12px;
    margin-left: -10px;
  }
#leistung_ul {
    position: absolute;
    background-color: #ffffff00;
    cursor: default;
    display: none;
    padding: 0;
    margin: 0;
    padding-top: 1rem;
}
#leistung_ul:hover{
  cursor: default;
  text-decoration:none;
  transition: none;
  color:#333 ;
}
#leistung_grid{
  display: block;
  padding: 1rem;
  justify-content: center;
  text-align: left;
  position: relative;
  background-color: #fff;
  border: 0.1rem solid #f3f3f3;
}
#leistung_grid li:hover{
  cursor: pointer;
}

#leistung_grid h2{
  font-size: 1rem;
  line-height: 1rem;
  font-family: 'Prompt', sans-serif;
  color: var(--dark);
  padding: 0;
  text-decoration: none;
  font-weight: 400;
  margin-left: 0.25rem;
}

#leistungimg{
  width: 4rem;
  margin: 0.50rem 0rem 0.80rem 0rem;
}
#leistung_grid h3 {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 500;
  font-family: var(--prompt);
  line-height: 1rem;
  display: flex;
  align-items: center;
  letter-spacing: 0.05rem;
}
#leistung_grid li{
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  margin-bottom: 0.25rem;
  padding: 0.5rem 4rem 0.5rem 0.2rem;
  width: 35rem;
  border: 1px solid #f3f3f3;
  border-radius: 0.2rem;
}
#leistung_grid li:hover {
  background-color: #fff;
  cursor: pointer !important;
  text-align: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid var(--secondary);
  padding: 0.5rem 4rem 0.5rem 0.2rem;
  border-radius: 0.2rem;
}
#leistung_grid li a i {
  background-color: #3a5e3b;
  color: #fff;
  padding: 0.8rem;
  margin-left: 0.25rem;
  border-radius: 0.2rem;
  font-size: 1rem;
  border: 0.1rem solid #fff;
}
#leistung_grid_div{
text-decoration-color: var(--white);
display: grid;
align-items: center;
text-decoration: none;
position: relative;
}
#leistung_grid_div:hover{
  text-decoration: none;
  cursor: pointer !important;
}
#leistung_grid_div h3:hover{
  text-decoration: none;
  cursor: pointer !important;
}
#leistung_grid_div p:hover{
  text-decoration: none;
  cursor: pointer !important;
}
#leistung_grid p{
  line-height: 0.9rem;
  font-size: 0.8rem;
  color: #212121;
  font-family: var(--prompt);
  margin-top: 0.1rem;
  max-width: fit-content;
  text-align: left;
  position: relative;
}
#leistung_grid li a{
  align-items: center;
  width: fit-content;
}
#lft{
  grid-area: lft;
}
#sft{
  grid-area: sft;
}
#zll{
  grid-area: zll;
}
#lnd{
  grid-area: lnd;
}
#del{
  grid-area: del;
}
#lag{
  grid-area: lag;
  margin-bottom: 0 !important;
}
/*****
  #sft a i{
  background-color: #fffed6 !important;
  color: #eabc62 !important;
  padding: 0.8rem;
  margin-left: 0.25rem;
  border-radius: 0.2rem;
  font-size: 1rem;
}
#sft:hover {
  background-color: #fff;
  cursor: pointer !important;
  text-align: center;
  justify-content: center;
  background-color: #fffdea !important;
  padding: 0.5rem 0.2rem;
}
#zll a i{
  background-color: #ffdada !important;
  color: #f95f5f !important;
  padding: 0.8rem;
  margin-left: 0.25rem;
  border-radius: 0.2rem;
  font-size: 1rem;
}
#zll:hover {
  background-color: #fff;
  cursor: pointer !important;
  text-align: center;
  justify-content: center;
  background-color: #ffd2d28b !important;
  padding: 0.5rem 0.2rem;
}
#lnd a i{
  background-color: #dae4ff !important;
  color: #5f69f9 !important;
  padding: 0.8rem;
  margin-left: 0.25rem;
  border-radius: 0.2rem;
  font-size: 1rem;
}
#lnd:hover {
  background-color: #fff;
  cursor: pointer !important;
  text-align: center;
  justify-content: center;
  background-color: #d5d2ff8b !important;
  padding: 0.5rem 0.2rem;
}
#del a i{
  background-color: #f1daff !important;
  color: #b15ff9 !important;
  padding: 0.8rem;
  margin-left: 0.25rem;
  border-radius: 0.2rem;
  font-size: 1rem;
}
#del:hover {
  background-color: #fff;
  cursor: pointer !important;
  text-align: center;
  justify-content: center;
  background-color: #e9d2ff8b !important;
  padding: 0.5rem 0.2rem;
}
#lag a i{
  background-color: #dafff8 !important;
  color: #5ff9f9 !important;
  padding: 0.8rem;
  margin-left: 0.25rem;
  border-radius: 0.2rem;
  font-size: 1rem;
}
#lag:hover {
  background-color: #fff;
  cursor: pointer !important;
  text-align: center;
  justify-content: center;
  background-color: #d2f6ff8b !important;
  padding: 0.5rem 0.2rem;
}
*****/

.leistung a {
  font-size: 0.9vw;
  color: #333;
  text-decoration: none;
  text-decoration-color: #fff;
  display: flex;
}
.leistung a:hover{
  text-decoration-color: #3a5e3b;
  -webkit-text-decoration-color: rgb(49, 99, 51);
  -moz-text-decoration-color: rgb(49, 99, 51);
  text-underline-offset: 5px;
  color:#000 ;
}
.hover-underline-menu-animation {
  display: inline-block;
  position: relative;
}
.hover-underline-menu-animation:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.hover-underline-menu-animation::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  top: 1.4rem;
  background-color: #4c754e58;
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.fixed {
  top: 0;
  padding: 1vw 6.5%;
  position: fixed;
  left: 0;
  width: 100%;
  background-color: var(--light);
  border-bottom: 0.1rem solid var(--lightgrey);
  opacity: 1;
  animation: 0.50s ease-in-out 0s fixed;
  z-index: 10000;
}

@keyframes fixed {
  0% {
    transform: translate3d(0px, -60px, 0); 
  }
  100% {
    transform: translate3d(0, 0, 0); 
  }
}


/***** Mobile Nav *****/

  .mobile__nav img{
    width: 8rem;
    margin-left: 1rem;
  }
  .mobile__nav{
  justify-content: space-between;
  position: fixed;
  width: 100%;
  display: flex;
  padding: 12px 10px 12px 10px;  
  background-color: #fff;
  z-index: 9999;
  top: 0;
  border-bottom: #f3f3f3 1px solid;
  }

.hamburger{
  display: block;
  width: 30px;
  cursor: pointer;
  appearance: none;
  position: relative;
  border: none;
  outline: none;
  background: none;
}
.hamburger::after, .hamburger::before {
  content: '';
  width: 80%;
  height: 2px;
  background-color: var(--dark);
  margin: 3px 3px;
  transition: 0.4s;
  display: block;
}
.hamburger .bar{
  content: '';
  width: 80%;
  height: 2px;
  background-color: var(--dark);
  margin: 3px 3px;
  transition: 0.4s;
  display: block;
  margin-left: 0.30rem;
}

.hamburger.active:before {
  transform: rotate(-45deg) translate(-2px, 4px);
  color: var(--dark);
}

.hamburger.active:after {
  transform: rotate(45deg) translate(-3px, -5px);
  color: var(--dark);
}

.hamburger.active .bar{
  opacity: 0;
}

.mobile-nav {
  position: fixed;
  display: block;
  top: -200%;
  height: 29rem;
  width: 100%;
  z-index: 99;
  background-color: #fff;
  padding-top: 70px;
  border-radius: 0.25;
  transition: 0.1s;
  border-bottom: solid 0.1rem #f3f3f3;
}

.mobile-nav.active{
top: 0;
}
.mobile-nav a {
  display: block;
  width: 100%;
  margin: 0 auto 10px;
  padding: 6px;
  background-color: #fff;
  text-decoration: none;
  color: var(--dark);
  border-radius: 0.25rem;
  font-size: 1.4rem;
  text-align: start;
  padding-left: 1.25rem;
  font-weight: 600;
  font-family: 'Prompt', sans-serif;
  letter-spacing: 0.1rem;
  text-decoration:underline;
  text-underline-offset: 0.20rem;
  text-decoration-color: var(--primary);
  text-decoration-thickness: 0.25rem;
}
.mobile__sprache {
  display: flex;
  width: 25%;
  max-width: 100px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0);
  text-decoration: none;
  color: var(--dark);
  border-radius: 0.25rem;
  text-align: start;
  justify-content: flex-start;
}
  .mobile__sprache img {
    width: 1.90rem;
    height: 1.3rem;
    border-radius: 0.1rem;
  }
  .mobile__sprache a {
    right: 0;
    display: block;
    height: 2.7rem;
  }
  .anfrage_mobile{
    padding: 0.8rem 1rem;
    background-color:#fff;
    border: solid 0.1rem #95ad96;
    border-radius: 0.2rem;
    cursor: pointer;
    line-height: 0px;
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    font-size: 0.80rem;
    font-weight: 500;
    box-shadow: inset 0 0 0 0 #3a5e3b;
    position: absolute;
    right: 0.50rem;
    top: 0.60rem;
  }

/***** HERO *****/
.herosection {
  display: flex;
  justify-content: space-between;
  position: relative;
  height: 36rem;
  background-color: #fff;
  overflow: hidden;
  text-decoration: none;
  margin: 0 6.5% 0rem 6.5%;
  border-radius: 0.5rem;
  border: 1px solid #f3f3f3;
  padding: 0rem 0rem 0rem 2rem;
}
@media ( max-width: 550px ) {
  .herosection{
    height: 20rem;
    padding-top:3rem;
    padding-left: 1rem;
  }
}
@media ( max-width: 1200px ) {
  .herosection-2 {
    vertical-align: middle;
    margin-right: -1rem;
  }
}


.herosection-1 {
  vertical-align: middle;
  background-color: rgba(255, 255, 255, 0);
  z-index: 2;
  position: relative;
  align-items: center;
  height: fit-content;
  margin-top: auto;
  margin-bottom: auto;
margin-left: 1rem;
}

@media ( max-width: 1500px ) {
  .herosection-1{
    padding-top: 2rem;
    margin: 0;
  }
}
@media ( max-width: 1050px ) {
  .herosection-1{
    padding-top: 3rem;
  }
}
.herosection-2{
  vertical-align: middle;
}
.herosection-1 p {
  line-height: 0.6vw;
  font-size: 1rem;
}
@media ( max-width: 550px ) {
  .herosection-1 p {
    font-size: 0.6rem;
    line-height: 0.3rem;
  }
}
@media only screen and (min-width: 551px) and (max-width: 979px) {
  .herosection-1 p {
    line-height: 1rem;
    font-size: 1rem;
  }
}
  @media ( max-width: 1050px ) {
    .herosection-2{
      vertical-align: middle;
      padding-top: 3rem;
    }
}
@media ( max-width: 980px ) {
  .herosection-2{
    vertical-align: middle;
    padding-top: 1rem;
  }
}
@media only screen and (min-width: 551px) and (max-width: 800px) {
  .herosection-2{
    vertical-align: middle;
    padding-top: 6rem;
  }
}  

.herosection-1 h1 {
  line-height: 6rem;
  font-size: 6rem;
font-family: "Albert Sans", sans-serif;
font-weight: 900;
  color: #212121;
  white-space: nowrap;
  letter-spacing: 0.05rem;
  word-spacing: -0.5rem;
  margin-left: -0.2rem;
  z-index: 1;
  position: relative;
  letter-spacing: -3px;
}

.herosection-1 h1:after {
  content: "Vertrauens";
  color: #212121;
  width: fit-content;
  height: fit-content;
  position: absolute;
  margin:0rem 0.5rem;
  padding: 0rem 0.5rem;
  font-style: italic;
}
@media ( max-width: 800px ) {
  .herosection-1 h1{
    font-size: 3.5rem;
    line-height: 3.5rem;
  }
}
@media only screen and (min-width: 800px) and (max-width: 1600px) {
  .herosection-1 h1{
    font-size: 5rem;
    line-height: 5rem;
    margin-left:0rem;
  }
}
#herop {
  margin-bottom: 1vw;
  margin: 0.8rem 0 1rem 0;
  max-width: 40rem;
  line-height: 1.50rem;
  z-index: 5;
  position: relative;
  font-size: 0.9rem;
}
@media ( max-width: 800px ) {
  #herop{
    font-size: 0.60rem;
    line-height: 0.70rem;
    max-width: 18rem;
  }
}
.herosection-1 h2{
  line-height: 10px;
}
.herosection-1 div a{
  max-width: 5rem;
  display: contents;

}
.buttonclass a{
  text-decoration: none;
}
.leistungenbutton {
  padding: 0.8rem 1.7rem;
  background-color: var(--secondary);
  border: 1px solid var(--secondary);
  cursor: pointer;
  line-height: 0px;
  font-family: 'Poppins', sans-serif;
  color: var(--light);
  font-size: 0.8rem;
  font-weight: 500;
  transition: ease-out 0.5s;
  box-shadow: inset 0 0 0 0 #fff;
  position: relative;
  animation: 4s anim-lineUp_p ease-out;
}
.leistungenbutton:hover {
  color: var(--dark);
  box-shadow: inset 0 -100px 0 0 #fff;
  border: solid 0.1rem var(--primary);
}
.leistungenbutton:active {
  transform: scale(0.9);
}
.leistungenbutton p {
  font-size: 0.8rem;
  line-height: 0.8rem;
}
.leistungenbutton_2 {
  padding: 0.8rem 1.7rem;
  background-color: #fff;
  border: solid 1px var(--secondary);
  cursor: pointer;
  line-height: 0px;
  font-family: 'Poppins', sans-serif;
  color: var(--light);
  font-size: 0.8rem;
  font-weight: 500;
  transition: ease-out 0.5s;
  box-shadow: inset 0 0 0 0 #fff;
  position: relative;
  animation: 4s anim-lineUp_p ease-out;
  margin-left: 0.5rem;
}
.leistungenbutton_2 p {
  font-size: 0.8rem;
  line-height: 0.8rem;
  color: #212121;
}
.arrow-down{
  padding: 0.8rem 1.2rem;
  background-color: var(--light);
  border: solid 0.1rem var(--dark);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  font-size: 1rem;
  font-weight: 500;
  justify-content: center;
  align-items: center;
  display: flex;
  box-shadow: inset 0 0 0 0 var(--secondary);
  transition: ease-out 0.5s;
  margin-top: 1rem;
}
.arrow-down:hover {
  color: var(--light);
  box-shadow: inset 0 -100px 0 0 var(--secondary);
  border: solid 0.1rem var(--primary);
}
.arrow-down i{
  padding: 0;
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.25rem;
  margin-top: 0.3rem;
  -webkit-animation: down 2s linear infinite;
  -moz-animation: down 2s linear infinite;
  -ms-animation: down 2s linear infinite;
  -o-animation: down 2s linear infinite;
  animation: down 2s linear infinite;
}
#arrow-down-a{
  text-decoration: none;
}
#arrow-down-div{
  height: fit-content;
  display:flex;
  justify-content: center;
  align-items: center;
}
@-webkit-keyframes down {
  0%, 50%       { padding-top: 0rem; }
  80%, 100%     { padding-top:0.50rem;  }
}
@keyframes down {
  0%, 50%       { padding-top: 0rem; }
  80%, 100%     { padding-top:0.5rem;  }
}
@media ( max-width: 900px ) {
  .leistungenbutton {
    border-radius: 0.1rem;
    background-color: var(--light);
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    font-size: 0.50rem;
    padding: 0.40rem 0.4rem;
    border: solid 1px #95ad96;
  }
  .leistungenbutton p{
    font-size: 0.60rem;
    line-height: 0.60rem;
  }
  .leistungenbutton_2 {
   display: none;
  }
  .leistungenbutton_2 p{
    font-size: 0.60rem;
    line-height: 0.60rem;
  }
}

.herosection-2 img {
  margin-left: 0px;
  position: absolute;
  padding-top: 16vw;
  padding-bottom: 1vw;
}
@media ( max-width: 550px ) {
  .herosection-2 img{
    padding-top: 8rem;
  }
}

.herosection-2 #flugzeughp {
  opacity: 1;
  z-index: 1;
  transform: translate3d(-25rem, -20rem, 0);
  animation: 2.5s ease-in 0s flugzeugslide;
  width: 400px;
  z-index: 0;
}
.herosection-2 #hero1 {
  z-index: 3;
  opacity: 1;
  width: 200px;
  transform: translate3d(-12.5rem, 1.5rem, 0);
  animation: 1.0s ease-in 0s slideinfromright1;
}
.herosection-2 #hero2 {
  z-index: 2;
  opacity: 1;
  width: 220px;
  transform: translate3d(-24.8rem, 4.5rem, 0);
  animation: 1.0s ease-in 0s slideinfromright2;
}
.herosection-2 #hero3 {
  z-index: 1;
  opacity: 1;
  width: 350px;
  transform: translate3d(-44.6rem, 4rem, 0);
  animation: 1.5s ease-in 0s slideinfromright3;
}


@keyframes slideinfromright1 {
  0% {
    transform: translate3d(0px, 4vw, 0); 
  }
  100% {
    transform: translate3d(-12.5rem, 1.5rem, 0);
  }
}
@keyframes slideinfromright2 {
  0% {
    transform: translate3d(0px, 3vw, 0); 
  }
  100% {
    transform: translate3d(-24.8rem, 4.5rem, 0);
  }
}
@keyframes slideinfromright3 {
  0% {
    transform: translate3d(0vw, 3vw, 0); 
  }
  100% {
    transform: translate3d(-44.6rem, 4rem, 0);
  }
}
@keyframes flugzeugslide {
  0% {
    transform: translate3d(10vw, -9vw, 0); 
  }
  100% {
    transform: translate3d(-25rem, -20rem, 0);
  }
}

@media only screen and (min-width:200px) and (max-width:800px){
  .herosection-2 #flugzeughp{
    opacity: 1;
    z-index: 1;
    transform: translate3d(-90%, -65%, 0); 
    animation: 2.5s ease-in 0s flugzeugslide;
    width: 10rem;
    z-index: 0;
    }
  .herosection-2 #hero1{
    z-index: 3;
    opacity: 1;
    width: 5rem;
    transform: translate3d(-80%, 10%, 0); 
    animation: 1.0s ease-in 0s slideinfromright1;
  }
  .herosection-2 #hero2{
    z-index: 2;
    opacity: 1;
    width: 6rem;
    transform: translate3d(-155%,18%, 0); 
    animation: 1.3s ease-in 0s slideinfromright2;
  }
  .herosection-2 #hero3{
    z-index: 1;
    opacity: 1;
    width: 8rem;
    transform: translate3d(-210%,23%, 0);
    animation: 1.5s ease-in 0s slideinfromright3;
  }
  
  @keyframes slideinfromright1 {
    0% {
      transform: translate3d(0px, 0, 0); 
    }
    100% {
      transform: translate3d(-100%, 10%, 0); 
    }
  }
  @keyframes slideinfromright2 {
    0% {
      transform: translate3d(0px, 0, 0); 
    }
    100% {
      transform: translate3d(-170%,18%, 0); 
    }
  }
  @keyframes slideinfromright3 {
    0% {
      transform: translate3d(0vw, 0, 0); 
    }
    100% {
      transform: translate3d(-222%,23%, 0);
    }
  }
  @keyframes flugzeugslide {
    0% {
      transform: translate3d(0%, -40%, 0); 
    }
    100% {
      transform: translate3d(-90%, -65%, 0); 
    }
  }
}
@media ( max-width: 600px ) {
  .herosection{
    height: 20rem;
    padding-top:3rem;
    padding-left: 1rem;
  }
  .herosection-1 h1:after{
    padding: 0 !important;
  }
}
/***** Leistungen Frontpage *****/
.leistungenhp{
  margin: 4rem 6.5% 0rem 6.5%;
}
.leistungenhp h1 {
  font-size: 3rem;
  padding-bottom: 0.5rem;
  font-family: "Albert Sans", sans-serif;
  color: var(--dark);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -1px;
  width: 100%;
  line-height: 3.5rem;
}
.leistungenhp p {
  font-size: 1rem;
  font-family: "Albert Sans", sans-serif;
  color: var(--dark);
  font-weight: 500;
 max-width: 75%;
}
.unsereleistungen1 {
  display: grid;
  grid-template-columns: 20% 18% 17% 12% 14% 14%;
  /* grid-template-columns: 100px 250px 250px 50px 300px 300px; */
  grid-template-rows: 5.5% 10% 20% 20% 20% 5%;
  grid-template-areas:
      "h1 h1 h1 h1 . uebersiedlungen"
      "h1 h1 h1 h1 verzollung uebersiedlungen"
      "luftfracht luftfracht luftfracht luftfracht verzollung uebersiedlungen"
      "lkwtransporte lkwtransporte seefracht seefracht verzollung uebersiedlungen"
      "lagerung lagerung seefracht seefracht delogierungen delogierungen"
      "lagerung lagerung . . . . ";
  z-index: 3;
  pointer-events: none;
  position: relative;
  height: fit-content;
  margin-top: 3rem;
  margin-bottom: 1rem;
  width: 100%;
  grid-gap: 1rem;
  height: 100vh;
  justify-content: center;
  position: relative;
}
.unsereleistungen1 > * {
  pointer-events: auto;
}
.unsereleistungen1 div {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.unsereleistungen1 div a{
  cursor: pointer;
  text-decoration: none;
}
.unsereleistungen1_h1{
    font-size: 4rem;
    font-weight: 800;
    padding-bottom: 0rem;
    font-family: "Albert Sans", sans-serif;
    color: var(--dark);
    letter-spacing: -2px;
    position: relative;
    left: 2px;
    bottom: 2px;
    justify-content: end;
}

.unsereleistungen1_h2 {
  font-size: 2vw !important;
  font-weight: 800;
  padding-bottom: 0rem;
  font-family: "Albert Sans", sans-serif;
  color: #fff;
  align-items: end;
  text-align: center;
  display: flex;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 100%;
  padding-left: 20px;
  padding-bottom: 10px;
  padding-right: 20px;
}
.unsereleistungen1_h2:hover {
  cursor: pointer;
}
.unsereleistungen1 div{
  border-radius: 0rem;
}
.unsereleistungen1 > * {
pointer-events: auto;
}
#h1 {
  background-color: #fff;
  grid-area: h1;
  display: flex;
  align-content: end;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
}
#luftfracht{
  grid-area: luftfracht;
  position: relative;
  display:flex;
  justify-content: left;
  content: "";
  background-image: url(/assets/images/airplane1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  }
  
  #seefracht{
  grid-area: seefracht;
  display:flex;
  justify-content: left;
  background-color: rgba(255, 255, 255, 0);
  background-color: #7777;
  content: "";
  background-image: url(/assets/images/seefracht.jpg);
  }
  #seefracht h2{
    font-size: 2.5rem;
    align-items: end;
    justify-content: center;
    padding-bottom: 10px;
  }
  
  #lkwtransporte{
  grid-area: lkwtransporte;
  display:flex;
  justify-content: left;
  background-color: #999;
  content: "";
  background-image: url(/assets/images/truck__hp.jpg);
  }
  
  #lagerung{
  grid-area: lagerung;
  display:flex;
  justify-content: left;
  background-color: #111;
  content: "";
  background-image: url(/assets/images/lagerung__hp.jpg);
  }
  
  #verzollung{
  grid-area: verzollung;
  display:flex;
  justify-content: left;
  background-color: #444;
  content: "";
  background-image: url(/assets/images/zoll.jpg);
  }
  #verzollung h2{
    font-size: 1.6vw !important;
    line-height: 1.6vw;
    align-items: end;
    justify-content: center;
    padding-bottom: 20px;
  }
  
#uebersiedlungen{
  grid-area: uebersiedlungen;
  display:flex;
  justify-content: left;
  background-color: #329832;
  content: "";
  background-image: url(/assets/images/ueebrsiedlungen_wien.jpg);
  }
  #uebersiedlungen h2{
    font-size: 1.6vw !important;
    align-items: end;
    justify-content: center;
    padding-bottom: 10px;
  }

  #delogierungen{
    grid-area: delogierungen;
    display:flex;
    justify-content: left;
    background-color: #329832;
    content: "";
    background-image: url(/assets/images/Delogierung_Wien.jpg);
    }
    #delogierungen h2{
      font-size: 1.4vw;
      align-items: end;
      justify-content: center;
      padding-bottom: 10px;
    }
@media only screen and (max-width:1300px){
  .unsereleistungen1 {
    display: grid;
    grid-template-columns: 20% 10% 25% 10% 15% 15%;
    /* grid-template-columns: 100px 250px 250px 50px 300px 300px; */
    grid-template-rows: 5.5% 10% 20% 20% 20% 5%;
    grid-template-areas:
        "h1 h1 h1 h1 . uebersiedlungen"
        "h1 h1 h1 h1 verzollung uebersiedlungen"
        "luftfracht luftfracht luftfracht luftfracht verzollung uebersiedlungen"
        "lkwtransporte lkwtransporte seefracht seefracht verzollung uebersiedlungen"
        "lagerung lagerung seefracht seefracht delogierungen delogierungen"
        "lagerung lagerung . . . . ";
    z-index: 3;
    pointer-events: none;
    position: relative;
    height: fit-content;
    margin-top: 3rem;
    margin-bottom: 1rem;
    width: 100%;
    grid-gap: 1rem;
    height: 100vh;
    /* align-content: center; */
    justify-content: center;
    position: relative;
  }
  .leistungenhp {
      position: relative;
      height: fit-content;
      background-color:#dc050500;
      text-align: left;
      background-color: #fff;
      border-radius: 0rem;
      padding: 0rem 1rem 0rem 0.75rem;
      overflow: hidden;
      border-top: solid 1px #f3f3f3 ;
    } 
    .leistungenhp h1 {
      font-size: 2rem;
      font-family: "Albert Sans", sans-serif;
      color: var(--dark);
      font-weight: 900;
      line-height: 2rem;
      margin-top: -0.5rem;
      padding-top: 1.5rem;
      margin-left: 0px;
    }
    .leistungenhp h1:before{
      content: '';
      position: absolute;
      display: inline-block;
      height: 2.15rem;
      width: 14rem;
      border-bottom: 6px solid #95ad96;
      margin-top: -13px;
      z-index: -1;
      display:none;
    }
    .unsereleistungen div h2{
      font-size: 0.70rem;
    }
    .viewmore{
      border-radius: 0.25rem;
      padding: 10px 10px 10px 10px;
      margin-left: 0.4rem;
      background-color:#3a5e3b;;
      border: 2px solid #3a5e3b;
      font-family: 'Poppins', sans-serif;
      color: #fff;
      font-size: 0.60rem;
      margin-top: 0.25rem;
    }
    .viewmore:is(:hover, :focus){
      outline: 0px solid #95ad96;
      outline-offset: 2px;
      border-radius: 0.25rem;
    }
    .mobile__menu{
      display: none;
    }
    .leistungback {
      border-top: none;
      display: none;
    }
    .leistungen__back1,.leistungen__back2,.leistungen__back3,.leistungen__back4,.leistungen__back5,.leistungen__back6 {
      clip-path: circle(91.3% at 95% 100%);
      -webkit-clip-path: circle(91.3% at 95% 100%);
      -webkit-clip-path:polygon(60% 0, 100% 0, 100% 100%, 0% 100%);
      width: 20rem;
      background-position: center center;
    }
    .herosection {
      display: flex;
      justify-content: space-between;
      position: relative;
      height: fit-content;
      padding-bottom: 0rem;
      background-color: var(--light);
      padding-left: 1rem;
      overflow: hidden;
      text-decoration: none;
      border: none;
      margin: 0;
  }
  }
  
  @media only screen and (max-width:1000px){
    .unsereleistungen1 {
      display: grid;
      grid-template-columns: 15% 10% 15% 10% 18% 20%;
      /* grid-template-columns: 100px 250px 250px 50px 300px 300px; */
      grid-template-rows: 5.5% 10% 20% 20% 20% 5%;
      grid-template-areas:
          "h1 h1 h1 h1 . uebersiedlungen"
          "h1 h1 h1 h1 verzollung uebersiedlungen"
          "luftfracht luftfracht luftfracht luftfracht verzollung uebersiedlungen"
          "lkwtransporte lkwtransporte seefracht seefracht verzollung uebersiedlungen"
          "lagerung lagerung seefracht seefracht delogierungen delogierungen"
          "lagerung lagerung . . . . ";
      z-index: 3;
      pointer-events: none;
      position: relative;
      height: fit-content;
      margin-top: 3rem;
      margin-bottom: 1rem;
      width: 100%;
      grid-gap: 1rem;
      height: 100vh;
      /* align-content: center; */
      justify-content: center;
      position: relative;
  }
  
    .leistungenhp {
      margin: 0  !important;
      margin-bottom: 0rem;
    }
  }
  @media only screen and (max-width: 650px){
    .unsereleistungen1 {
      display: grid;
      grid-template-columns: 20% 5% 10% 15% 10% 20%;
      /* grid-template-columns: 100px 250px 250px 50px 300px 300px; */
      grid-template-rows: 5.5% 10% 20% 20% 20% 5%;
      grid-template-areas:
          "h1 h1 h1 h1 h1 h1"
          "h1 h1 h1 h1 h1 h1"
          "luftfracht luftfracht luftfracht luftfracht seefracht seefracht "
          "lkwtransporte lkwtransporte lkwtransporte lkwtransporte seefracht seefracht "
          "lagerung lagerung verzollung verzollung delogierungen delogierungen"
          "lagerung lagerung . . . . ";
      z-index: 3;
      pointer-events: none;
      position: relative;
      height: fit-content;
      margin-top: 3rem;
      margin-bottom: 0.5rem;
      width: 100%;
      grid-gap: 0.25rem;
      height: 60vh;
      justify-content: center;
      position: relative;
  }
  .leistungenhp p {
    font-size: 1rem;
    font-family: "Albert Sans", sans-serif;
    color: var(--dark);
    font-weight: 500;
    max-width: 100%;
    line-height: 0.90rem;
    margin-bottom: 0.2rem;
}
.leistungenhp {
  position: relative;
  height: fit-content;
  background-color: #dc050500;
  text-align: left;
  background-color: #fff;
  border-radius: 0rem;
  padding: 0;
  overflow: hidden;
  border-top: solid 1px #f3f3f3;
}
#verzollung h2 {
  font-size:  4vw !important;
  line-height: 0.9rem;
  align-items: center;
  justify-content: center;
  padding-bottom: 10px;
  padding: 5px 0 !important;
}
.leistungenhp h1 {
  font-size: 1.5rem;
  font-family: "Albert Sans", sans-serif;
  color: var(--dark);
  font-weight: 900;
  line-height: 2rem;
  margin-top: -0.5rem;
  padding-top: 1.5rem;
  margin-left: 0px;
}
#delogierungen h2{
    font-size: 1.4vw;
    justify-content: left;

}
  }



  @media only screen and (min-width:800px) and (max-width:979px){
      .leistungenhp h1 {
        font-size: 1.5rem;
        font-family: 'Poppins', sans-serif;
        line-height: 2rem;
      }
      .leistungenhp h1:before{
        content: '';
        position: absolute;
        display: inline-block;
        height: 2.15rem;
        width: 14rem;
        border-bottom: 7px solid #95ad96;
        margin-top:-13px;
        z-index: -1;
      }
      .unsere
      .leistungen__container{
        padding:0.20rem;
        font-size: 0.75rem;
        overflow: hidden;
        color: #333;
      }
      .leistungen__container p{
        padding: 0.25rem 0rem 0.10rem 0.5rem;
        overflow: hidden;
        font-size: 0.8rem;
      }
      .viewmore{
        border-radius: 0.6vw;
        padding: 10px 10px 10px 10px;
        margin-left: 0.4rem;
        background-color:#3a5e3b;
        border: 2px solid #3a5e3b;
        line-height: 3px;
        font-family: 'Poppins', sans-serif;
        color: #fff;
        font-size: 0.75rem;
      }
      .viewmore:is(:hover, :focus){
        outline: 0px solid #95ad96;
        outline-offset: 2px;
        border-radius: 0.6rem;
      }
      .herosection{
        padding-top: 2rem;
        padding-bottom: 7rem;
        }
    } 
    @media only screen and (max-width:800px){ 
      .unsereleistungen1_h2 {
        font-size: 3vw !important;
        font-weight: 800;
        padding-bottom: 0rem;
        font-family: "Albert Sans", sans-serif;
        color: #fff;
        align-items: end;
        text-align: center;
        display: flex;
        width: 100%;
        position: absolute;
        bottom: 0px;
        left: 0px;
        height: 100%;
        padding-left: 20px;
        padding-bottom: 10px;
        padding-right: 20px;
      }
      #uebersiedlungen h2{
        font-size: 0.9rem !important;
        align-items: end;
        justify-content: center;
        padding-bottom: 10px;
      }
      #verzollung h2{
        font-size:0.9rem !important;
        line-height: 0.9rem;
        align-items: end;
        justify-content: center;
        padding-bottom: 10px;
      }
      .leistungen__container p{
        padding: 0rem 0rem 0.2rem 0.5rem;
        font-size: 0.6rem;
        line-height: 0.6rem;
        overflow:visible;
        margin-top: 0rem;
      }
      .leistungen__container_lf p{
        padding: 0.2rem 0rem 0.2rem 0.5rem;
        font-size: 0.6rem;
        line-height: 0.6rem;
        overflow:visible;
      }
      .unsereleistungen_p {
        font-size: 0.75rem;
        color: #212121;
        font-weight: 500;
        line-height: 1rem;
    }
    .unsereleistungen_p{
      margin-bottom: 0.5rem;
    }
  
     }

    @media only screen and (min-width:551px) and (max-width:979px){
      .herosection-1 h1{
        font-size: 3rem;
        line-height: 3rem;
      }
    #herop{
        font-size: 0.7rem;
        line-height: 1rem;
        max-width: 60%;
      }
      .herosection {
        padding-left: 1rem;
        height: fit-content;
        padding-bottom: 0rem;
    }
    }
    @media only screen and (min-width:100px) and (max-width:600px){
      .herosection-1 h1 {
        font-size: 2.1rem;
        line-height: 2.1rem;
        margin-top: 0rem;
        margin-bottom: 0.50rem;
      }
      .herosection {
        height:21.50rem;
        padding-left: 1rem;
      }
      .leistungenhp{
        margin-top: 2rem;
      }
      .dasbietenwir {
        margin: -3rem 0rem;
        height: fit-content;
    }
    .unsereleistungen1_h2 {
      font-size: 4vw !important;
      padding-left: 5px;
    }
    #verzollung h2 {
      font-size:  4vw !important;
      line-height: 0.9rem;
      justify-content: center;
      padding-bottom: 10px;
      padding: 5px 0 !important;
    }
    }


@media only screen and (min-width: 1050px){
  .mobile-nav{
    display: none;
  }
  .hamburger{
    display: none;
  }
  .mobile__nav img{
    display: none;
  }
  .mobile__nav{
  display: none;
  }
}

@media only screen and(min-width:900px) and (max-width:1045px) {
  .leistungen__container p{
    font-size: 0.75rem;
    color: #333;
    line-height: 1rem;
    max-height:fit-content;
    overflow: hidden;
  }
}

.lineup {
  animation: 2s anim-lineUp ease-out;
}
@keyframes anim-lineUp {
  0% {
    opacity: 0;
    transform: translateY(80%);
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
.lineup_p {
  animation: 3s anim-lineUp_p ease-out;
}
@keyframes anim-lineUp_p {
  0% {
    opacity: 0;
    transform: translateY(10rem);
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
/***** Dafür stehen wir *****/
#test img{
  clip-path: polygon(5% 15%, 5% 86%, 27% 86%, 27% 59%, 27% 15%, 55% 15%, 55% 56%, 55% 77%, 33% 77%, 33% 71%, 33% 57%, 33% 31%, 33% 2%, 55% 2%, 55% 15%, 60% 15%, 83% 15%, 81% 15%, 81% 86%, 65% 86%, 73% 86%, 60% 86%, 60% 29%, 60% 15%, 55% 15%);
  width: 50rem;
  height: 50rem;
}
#test{
  height: 50rem;
}
.dasbietenwir {
  padding: 1vw 6.5%;
  height: fit-content;
  background-color: #fff;
}
.dbw__right h1 {
  font-size: 3rem;
  padding-bottom: 0.5rem;
  font-family: "Albert Sans", sans-serif;
  color: var(--dark);
  font-weight: 900;
  line-height: 2.8rem;
  word-spacing: 0rem;
  letter-spacing: -1px;
  max-width: 80%;
}
.dbw__right h1:before {
  font-size: 3rem;
  padding-bottom: 0.5rem;
  font-family: "Albert Sans", sans-serif;
  color: var(--dark);
  font-weight: 900;
  line-height: 2.5rem;
  word-spacing: 0rem;
  letter-spacing: -1px;
  content: "Kundenzufriedenheit";
  font-style: italic;
}
.wrapper {
  display: flex;
  margin: 0 auto;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 6rem;
}
.dbw__right {
  position: relative;
  display: grid;
  width: fit-content;
  z-index: 2;
  width: 60%;
}
#dbw__right_p{
  max-width: 43rem;
  font-size: 1rem;
  font-family: "Albert Sans", sans-serif;
  color: var(--dark);
  font-weight: 500;
}
.dbw__right_container{
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
.dbw__right_container_icon{
  display: flex;
  padding: 0.5rem 0rem 0rem 0rem;
}
.dbw__right_container_icon p{
  margin: 0;
  padding: 0;
  display: inline-block;
  max-width: 26rem;
}
.dbw__right_container_icon_img{
  margin: 0;
  padding: 0;
  height: fit-content;
  border: 0.1rem solid #212121;
}
.dbw__right_container_icon img{
  width: 6rem;
  height: 6rem;
  background-color: #3a5e3b;
  object-fit:scale-down;
}
.dbw__right_container_icon h2{
  padding: 0;
  margin-top: 0.25rem;
  margin: 0.25rem 0rem 0.30rem 0rem;
  color: var(--dark);
  font-size: 1rem;
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  line-height: 1rem;

}
.dbw__right_container_icon p{
  padding: 0;
  font-size: 0.90rem;
  line-height: 0.9rem;
  color: var(--dark);
  font-family: "Albert Sans", sans-serif;
}
.dbw__right_container_icon_box{
  margin-left:1.5rem ;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 20%;
}
#background {
  content: "";
  background: linear-gradient(#ecf4ec,#fff 50% );
  position: absolute;
  width: 100%;
  height: 15rem;
  clip-path: polygon(0 0, 100% 0%, 100% 60%, 0% 100%);
  padding-top: -1rem;
  margin-top: -4.5rem;
  rotate: -4deg;
  display: none;
}
.dbw__left {
  position: relative;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  background-color: #fff;

}

.dbw__left_grid {
  position: relative;
  display: grid;
  z-index: 2;
  grid-template-columns: 8vw 8vw 8vw 8vw;
  grid-template-rows: 5vw 18vw 5vw;
  grid-template-areas:
".    dbw2 .    dbw4" 
"dbw1 dbw2 dbw3 dbw4" 
"dbw1 .    dbw3 .   ";
  grid-gap: 0rem;
  z-index: 10;
}
.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.dbw__left_grid div{
  background-color: rgba(255, 255, 255, 0);
}
.dbw__left img{
  height: 5rem;
  width: fit-content;
  z-index: 0;
  position: absolute;
}
.dbw__left_container1 {
  grid-area: dbw1;
  content: "";
  color: var(--dark);
  background-image: url(/assets/images/split1.jpg);
  text-align: center;
  z-index: 5;
  position: relative;
  margin: 0.25rem;
  background-size: 130%;
  background-position: 100% 100%;
  border-radius: 0.2rem;
}
.dbw__left_container2 {
  grid-area: dbw2;
  content: "";
  color: var(--dark);
  background-image: url(/assets/images/split2.jpg);
  text-align: center;
  z-index: 5;
  position: relative;
  margin: 0.25rem;
  background-size: 130%;
  background-position: 0px 30%;
  border-radius: 0.2rem;
}
.dbw__left_container3 {
  grid-area: dbw3;
  content: "";
  color: var(--dark);
  background-image: url(/assets/images/split3.jpg);
  text-align: center;
  z-index: 5;
  position: relative;
  margin: 0.25rem;
  background-size: 170%;
  background-position: 60% 85%;
  border-radius: 0.2rem;
}

.dbw__left_container4 {
  grid-area: dbw4;
  content: "";
  color: var(--dark);
  background-image: url(/assets/images/split4.jpg);
  text-align: center;
  z-index: 5;
  position: relative;
  margin: 0.25rem;
  background-size: 150%;
  background-position: 0% 45%;
  border-radius: 0.2rem;
}
@media ( max-width: 1001px ) {
  .dbw__left{
    display: none;
  }
  .dasbietenwir{
    margin: 0rem;
    height: fit-content;
    background-color: #fff;
  }
  .wrapper{
    padding: 1rem 0rem 1rem 0rem;
  }
  .dbw__right h1 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
  .dbw__right h1:before {
    font-size: 1.5rem;
    line-height: 1.5rem;
}
  .dbw__right p {
    font-size: 0.70rem;
    line-height: 0.90rem;
    max-width: 50rem;
  }
  .dbw__right{
    margin: 1rem;
    }
  .dbw__right_container_icon_img {
    margin: 0;
    padding: 0;
    border: solid 0.10rem var(--dark);
    border-radius: 0.20rem;
    height: fit-content;
  }
  .dbw__right_container_icon_box {
    margin-left: 1.5rem;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 0%;
  }
  .dbw__right_container_icon h2 {
    padding: 0;
    margin: 0;
    color: var(--dark);
    font-size: 1rem;
  }
  #background {
    display: none;
  }
}

  @media only screen and (min-width:1000px) and (max-width:1300px){
     .überuns {
      margin: 2.5rem 2rem 5rem 2rem;
      padding: 0;
     }
     #background {
      display: none;
    }
    .dasbietenwir {
      padding: 1vw 2.5%;
      height: fit-content;
      background-color: #fff;
  }
  .leistungenhp {
    margin: 1vw 2.5%;
    margin-bottom: 0rem;
  }
  .herosection {
    margin: 1vw 2.5%;
}
.navbar {
  padding: 1vw 2.5%;
}
.fixed {
  padding: 1vw 2.5%;
}
  }
  @media only screen and (min-width:100px) and (max-width:550px){
    .dbw__right_container_icon h2 {
      padding: 0;
      margin: 0;
      color: var(--dark);
      font-size: 0.75rem;}
    }
    @media (max-width: 1001px){
    .dbw__right p {
      font-size: 0.70rem;
      line-height: 0.90rem;
    }
    .dbw__right {
      width: 100%;
    }
    .dasbietenwir {
      margin: -3rem 0rem;
      height: fit-content;
      padding:0;
    } 
    }

/***** Dafür stehen wir *****/
.niederlassungen {
  padding: 1vw 6.5%;
  height: fit-content;
  background-color: #fff;
  z-index: 99;
  position: relative;
  background-color: #fff0;
  margin-bottom: -7rem;
}
.niederlassungen_h1{
  display: flex;
  position: relative;
  justify-content: space-between;
}
.niederlassungen_h1 h1{
  font-family: "Albert Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  word-spacing: -0.1rem;
  color: var(--light);
  line-height: 1.3rem;
}
#niederlassung_h1{
  display: flex;
  align-items: flex-end;
}

.niederlassungen_button{
  padding:0.50rem 1rem;
  font-family: "Albert Sans", sans-serif;
  font-size: 1rem;
  background-color: var(--light);
  font-weight: 500;
  display: flex;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.1rem;
  border: solid 0.1rem #95ad96;
  transition: ease-out 0.5s;
  box-shadow: inset 0 0 0 0 #3a5e3b;
  color: var(--dark);
}
.niederlassungen_button:hover{
    color: var(--secondary);
    border: solid 0.1rem var(--primary);
    background-color: var(--light);
  }
.niederlassungen_h1 a{
  text-decoration: none;
  font-size: 1.3rem;
  color: var(--light);
}
.niederlassungen_ueberschrift:hover{
  cursor: pointer;
}
#niederlassungen_ueberschrift{
  align-items: center;
  justify-content: center;
  display: flex;
}

.niederlassungen_cards{
  display:flex;
  justify-content: space-between;
  padding-top: 1rem;
  overflow-x: auto;
  scroll-behavior:auto;
  scrollbar-width: thin;
  cursor: pointer;
}
.niederlassungen_cards div{
  width: 170px;
  min-width: 170px;
  height: 280px;
  border: 0.1rem var(--lightgrey) SOLID;
  margin: 0rem 0.2rem 1rem 0.2rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}
.niederlassungen_cards div img{
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
}

.niederlassungen_cards div:hover img{
  filter: none;
}
.niederlassungen_cards div h2 {
  color: var(--light);
  font-size: 1.10rem;
  font-family: var(--prompt);
  letter-spacing: 0.1rem;
  word-spacing: 0.1rem;
  font-weight: 600;
  display: flex;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.5rem;
  z-index: 3;
  padding: 0.25rem 0rem ;
  width: 100%;
  justify-content: center;
  background-color: #21212186;
}
.niederlassungen_cards div:hover h2{
  background-color: #3a5e3b;
}

.niederlassungen_cards::-webkit-scrollbar {
  width: 0.30rem;
  height: 0.30rem;
}
.niederlassungen_cards::-webkit-scrollbar-thumb {
  background-color: var(--lightgrey);
  outline: 0.1px solid #fff;
  background-color: #fff;
}
.niederlassungen_cards::-webkit-scrollbar-track {
  color: var(--dark);
}
#land12{
    width: 170px;
    min-width: 170px;
    height: 280px;
    border: none;
    margin: 0rem 0.2rem 1rem 0.2rem;
    position: relative;
    align-items: center;
    justify-content: center;
    display: grid;
}
#land12 a{
  text-decoration: none;

}
#land12_div h2 {
  position: absolute;
  display: flex;
  width: fit-content;
  margin: 0;
    margin-top: 0px;
  padding: 0;
  top: 4rem;
  font-size: 0.9rem;
  color: var(--dark);
  line-height: 1.2rem;
  white-space: nowrap;
  font-family: var(--prompt);
  word-spacing: 0rem;
  letter-spacing: 0.01rem;
  margin-top: -0.5rem;
  background-color: #3a5e3b00;
}
#land12_div i{
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
  color: var(--dark);
}
#land12_div{
  align-items: center;
  justify-content: center;
  display: flex;
  width: 50px;
  height: 50px;
  min-width:30px ;
  margin: 0;
  background-color: #fff;
}
#land12_div:hover h2{
  cursor: pointer;
}

@media ( max-width: 1001px ) {
  .niederlassungen{
    padding: 2rem 1rem;
    height: fit-content;
    background-color:#fff0;
    z-index: 99;
    position: relative;
  }
  .niederlassungen_h1 h1 {
    font-family: var(--prompt);
    font-size: 1.5rem;
    font-weight: 600;
    word-spacing: -0.1rem;
    color: var(--light);
    line-height: 1.3rem;
}
.niederlassungen_button {
  padding: 0.5rem 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  background-color: var(--secondary);
  font-weight: 500;
  display: flex;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.1rem;
  border: solid 0.1rem #95ad96;
  transition: ease-out 0.5s;
  box-shadow: inset 0 0 0 0 #3a5e3b;
  color: var(--light);
}
}
@media only screen and (min-width:100px) and (max-width:600px){
  .niederlassungen_h1 h1 {
    font-family: var(--prompt);
    font-size: 1.1rem;
    font-weight: 600;
    word-spacing: -0.1rem;
    color: var(--light);
    line-height: 1.3rem;
}
.niederlassungen_button {
  padding: 0.25rem 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  background-color: var(--secondary);
  font-weight: 500;
  display: flex;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.1rem;
  border: solid 0.1rem #95ad96;
  transition: ease-out 0.5s;
  box-shadow: inset 0 0 0 0 #3a5e3b;
  color: var(--light);
}

}

@media only screen and (min-width:1000px) and (max-width:1300px){
  .niederlassungen{
    padding: 2.5rem 2rem 2rem 2.5rem;
    height: fit-content;
    background-color:#fff0;
    z-index: 99;
    position: relative;
  }
}
/***** Das ist Logsped *****/

.überuns{
  height: fit-content;
  display: flex;
  background-color: #fff;
  padding: 1vw 6.5%;
}
.überuns p{
  font-size: 1.10rem;
  font-family: "Albert Sans", sans-serif;
}
.wwsh1{
  justify-content: center;
  position: relative;
  padding: 0;
  max-width: 45rem;
  margin-top: 13rem;
  z-index: 5;
  overflow-y: hidden;
}
.wwsh1 h1{
    font-size: 3rem;
    padding-bottom: 1rem;
    font-family: "Albert Sans", sans-serif;
    color: var(--dark);
    font-weight: 900;
    line-height: 3rem;
    word-spacing: -0.25rem;
    padding-top: 0.25rem;
    font-style: italic;
  }
  .wwsh1 h1:after{
    content: "Uns";
    font-size: 3rem;
    padding-bottom: 1rem;
    font-family: "Albert Sans", sans-serif;
    color: var(--dark);
    font-weight: 900;
    line-height: 3rem;
    word-spacing: -0.25rem;
    padding-top: 0.25rem;
    font-style: italic;
  }

  .wwsh2{
    margin-left: 12vw;
    display: grid;
    grid-template-columns: 14vw 0.5rem 14vw;
    grid-template-rows:6rem 2.5rem 2.25rem 0.25rem 3rem 5rem;
    grid-template-areas:
    "container1 . ."
    "container1 . container2"
    ". . container2"
    "container3 . container2"
    "container3 . container2"
    "container3 . .";
    grid-gap: 0.5rem;
    padding-top: 12rem;
    justify-content: center;
    overflow: hidden;
  }
  .wwsh2 div div{
    margin: 0rem 1rem 0rem 1rem;
  }
  .wwsh2 i{
    font-size: 0.80rem;
  }
  .wwsh2 h2 {
    font-size: 1rem;
    line-height: 1rem;
    font-family: 'Prompt', sans-serif;
    color: var(--dark);
    font-weight: 500;
}
  .wwsh2 h3{
      font-size: 2rem;
      margin: 0.5rem 0rem 0rem 0rem;
      color: var(--secondary);
  }
  .wwsh2 h4{
    font-size: 2.5rem;
    font-family: 'Prompt', sans-serif;
    color: #fff;
    font-weight: 600;
    margin-top: 0,5rem;
    margin-right: 0.25rem;
    text-align: end;
  }
  .wwsh2__container{
    display: flex;
    position: relative;
    justify-content: space-around;
    height: fit-content;
    margin-top: 5%;
    max-width: 50rem;
    overflow: hidden;
  }
  .wwsh2__container h2{
    font-size: 1.10rem;
    margin-top: auto;
    font-family: "Albert Sans", sans-serif;
  }
  .wwsh2_container1 {
    grid-area: container1;
    color: var(--dark);
    background-color: #fefefe;
    text-align: center;
    z-index: 5;
    border: solid 0.10rem var(--dark);
    height: 9rem;
    position: relative;
    margin: 0.25rem;
    width: 33%;
  }
    .wwsh2_container1 h2{
      color: var(--dark);
      font-size: 1.1rem;
      margin-bottom: 0.8vh;
      font-family: "Albert Sans", sans-serif;
      line-height: 1rem;
    }

    .wwsh2_container1 h3{
      color: var(--dark);
      font-weight: 500;
      padding-top: 0.75rem;
      font-size: 1.75rem;
    }
    .wwsh2_container1 p{
      font-size: 0.9rem;
      margin: 0.10rem 0.75rem 0rem 0.75rem;
    }
    .wwsh2_container2 {
      grid-area: container2;
      color: var(--dark);
      background-color: #fefefe;
      text-align: center;
      z-index: 5;
      border: solid 0.10rem var(--dark);
      height: 9rem;
      position: relative;
      margin: 0.25rem;
      width: 33%;
    }
    .wwsh2_container2 h2{
      color: var(--dark);
      font-size: 1.1rem;
      margin-bottom: 0.8vh;
      font-family: "Albert Sans", sans-serif;
      line-height: 1rem;
    }
    .wwsh2_container2 p{
      font-size: 0.9rem;
      margin: 0.10rem 0.75rem 0rem 0.75rem;
      color: var(--dark);
    }
    .wwsh2_container2 h3{
      color: var(--dark);
      font-weight: 500;
      padding-top: 0.75rem;
      font-size: 1.75rem;
    }
    .wwsh2_container3 {
      grid-area: container3;
      color: var(--dark);
      background-color: #fefefe;
      text-align: center;
      z-index: 5;
      border: solid 0.10rem var(--dark);
      height: 9rem;
      position: relative;
      margin: 0.25rem;
      width: 33%;
    }
    .wwsh2_container3 h2{
      color: var(--dark);
      font-size: 1.1rem;
      margin-bottom: 0.8vh;
      font-family: "Albert Sans", sans-serif;
      line-height: 1rem;
    }
    .wwsh2_container3 p{
      font-size: 0.9rem;
      margin: 0.10rem 0.75rem 0rem 0.75rem;
      color: var(--dark);
    }
    #wwsh2_fa{
      position: absolute;
      margin-top: 1rem;
      margin-left: 4rem;
    }
    .wwsh2img{
      z-index: 0;
      right: 0;
    }
    .wwsh2_container3 h3 {
      color: var(--dark);
      font-weight: 500;
      padding-top: 0.75rem;
      font-size: 1.75rem;
  }
  .wwsh2__container img{
    max-width: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0%;
    overflow: hidden;
    object-fit: contain;
    max-height: 30%;
  }
  #wwsh2info {
    position: relative;
    min-height: 9rem;
    z-index: 3;
    padding-top: 1.5rem;
    overflow: hidden;
  }
  .wwsh2__container div{
    overflow: hidden;
  }

  @media (max-width: 1600px) {
    .wwsh1 {
      margin-top: 8rem;
      margin-left: 0rem;
      z-index: 5;
      width: 40rem;
      max-width: 90%;
      padding: 0;
  }
  .überuns p {
    font-size: 1rem;
  }
  .wwsh1 h1 {
    font-size: 2.2rem;
  }
  .wwsh1 h1:after{
    font-size: 2.2rem;
  }
  .wwsh2__container div{
    height: 0.15rem fit-content;
  }
  .wwsh2__container div h3{
    font-size: 1.5rem;
  }
  .wwsh2__container div h2{
    font-size: 1.1rem;
    margin-bottom: 1.5vh;
    font-family: var(--prompt);
    line-height: 1rem;
  }
  .wwsh2__container div p{
    font-size: 0.80rem;
  }
  }
  @media ( max-width: 1001px ) {
  .überuns{
  position: relative;
  display:contents;
  margin: 0rem 2rem 0rem 2rem;
  }
  .wwsh2_container2{
    max-width: 12rem;
    overflow: hidden;
    padding-bottom: 0rem;
  }
  .wwsh2_container3{
    max-width: 12rem;
    overflow: hidden;
    padding-bottom: 0rem;
  }
  .wwsh2_container1{
    max-width: 12rem;
    overflow: hidden;
    padding-bottom: 0rem;
  }
  .wwsh2 p{
    font-size: 0.7rem;
  }
  .wwsh1 {
    margin-left: 1rem;
    z-index: 5;
}
.wwsh2 h2 {
  font-size: 1rem;
  line-height: 1rem;
  font-family: 'Prompt', sans-serif;
  color: var(--dark);
  font-weight: 500;
}
.wwsh2 h3 {
  font-size:2rem;
  margin: 0.5rem 0rem 0rem 0rem;
}
.überuns p {
  font-size: 0.80rem;
}
}
@media (max-width:650px) {
  .wwsh2__container{
    display: block;
    width: 100%;
  }
  .wwsh2_container2{
    max-width: 100%;
    overflow: hidden;
    height: fit-content;
    margin: 0;
  }
  .wwsh2_container3{
    max-width: 100%;
    overflow: hidden;
    height: fit-content;
    margin: 0;
  }
  .wwsh2_container1{
    max-width: 100%;
    overflow: hidden;
    height: fit-content;
    margin: 0;
  }
  .wwsh2__container div {
    width: 100%;
    height: 8rem;
    min-height: 2rem;
    margin-bottom: 0.5rem;
}
  .wwsh2__container img{
    height: 25%;
  }
  #wwsh2info {
    min-height: 2rem;
  }
} 
@media only screen and (min-width:1000px) and (max-width:1300px){
   .überuns {
    margin: 0rem 2rem 5rem 2rem;
    padding: 0;
   }
  }


@media ( max-width: 550px ) {
  .wwsh2img{
    z-index: 1;
    margin: -10vw 0rem 0rem 1rem;
    overflow-x: hidden;
  }
  .wwsh1 h1 {
    font-size: 1.5rem;
    padding-bottom: 0.2rem;
    font-family: "Albert Sans", sans-serif;
    color: var(--dark);
    font-weight: 900;
    line-height: 2.5rem;
    word-spacing: -0.25rem;
  }
  .wwsh1 {
    margin-top: 6rem;
    margin-left: 1rem;
    z-index: 5;
    width: 40rem;
    max-width: 90%;
    padding: 0;
    margin-bottom: 5rem;
    overflow: visible;
}
.wwsh1 h1:after {
  font-size: 1.5rem;
}
.wwsh2__container{
  display: block;
  width: 100%;
}
.wwsh2__container div h3{
  font-size: 0.90rem;
}
.wwsh2__container div h2{
  font-size: 0.90rem;
  margin-bottom: 0.5vh;
}
.wwsh2__container div p{
  font-size: 0.70rem;
}
.wwsh2_container2{
  max-width: 100%;
  width: 50rem;
  overflow: hidden;
  margin: 0;
  margin-bottom: 0.75rem;
}
.wwsh2_container3{
  max-width: 100%;
  overflow: hidden;
  margin: 0;
}
.wwsh2_container1{
  max-width: 100%;
  overflow: hidden;
  height: fit-content;
  margin: 0;
  margin-bottom: 0.75rem;
}
.wwsh2__container div {
  width: 100%;
  overflow: hidden;
  height: 8rem;
  margin-bottom: 0.5rem;
}
#wwsh2info {
  position: relative;
  min-height: 7rem;
  justify-content: center;
  z-index: 99;
  padding-top: 1rem;
}
#wwsh2info h2{
  margin-top: 1rem;

}
}


/*** Kontakt ***/
.kontakt{
  padding: 0;
  height: fit-content;
  margin-bottom: 5rem;
  margin-top: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow-x: hidden;
  background-color: #fff;
}
.kontakt_wrapper{
  justify-content: space-between;
}
.kontakt_links{
  position: relative;
  margin-top: 2rem;
}
.kontakt_rechts{
  padding-left:0;
}
.kontakt_rechts h2{
  font-size: 3rem;
  padding-bottom: 1rem;
  font-family: "Albert Sans", sans-serif;
  color: var(--dark);
  font-weight: 900;
  line-height: 3rem;
  word-spacing: -0.25rem;
}
.kontakt_rechts p{
  max-width: 55rem;
  font-family: "Albert Sans", sans-serif;
}
form{
  width: 100%;
  padding: 0rem 9rem 0rem 9rem;
}
input, textarea{
  width: 100%;
  padding: 0.5rem;
  outline: 0;
  border: solid 0.1rem #f3f3f3;
  background: transparent;
  font-size: 1rem;
  border-radius: 0.2rem;
  box-sizing: border-box;
  caret-color: var(--primary);
}
textarea{
  height: 10rem !important;
}
label {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--dark);
  cursor: text;
  pointer-events: none;
  display: block;
}
#submit{
  padding:0.50rem 1rem;
  background-color:#fff ;
  outline: #95ad96;
  border: solid 0.1rem var(--primary);
  border-radius: 0.20rem;
  cursor:pointer;
  width: 100%;
  font-family: 'Prompt', sans-serif;
  font-weight:400;
  color: var(--dark);
  font-size: 1rem;
}
#submit:hover{
  color: #fff;
  box-shadow: inset 0 -100px 0 0 #95ad96;
  transition: 800ms;
}
.kontaktformular {
  position: relative;
  margin-bottom:1.5rem;
}
.eingabefeld {
  border: 1px solid silver !important;
  border-radius: 5px;
  box-sizing: border-box;
  color: var(--dark);
  height: 40px;
  padding: 1.25rem 15px;
  resize: none;
}
.eingabefeld::placeholder {
  color: transparent;
}
.eingabefeld:placeholder-shown ~ .eingabelabel {
  top: 12px;
  border-right: none;
  border-left: none;
}
.eingabelabel {
  background-color: white;
  color: var(--dark);
  display: block;
  font-size: .9em;
  margin-left: 5px;
  padding: 0 10px;
  pointer-events: none;
  position: absolute;
  top: -10px;
  transition: 0.2s;
  height: fit-content;
}
.eingabefeld:focus {
  border: 1px solid var(--primary) !important;
  outline: none;
}
.eingabefeld:focus ~ .eingabelabel {
  background-color: white;
  color: var(--primary);
  font-size: .9em;
  margin-left: 5px;
  padding: 0 10px;
  position: absolute;
  top: -10px;
  transition: 0.2s;
}
.result{
  border: solid 0.10rem var(--primary);
  margin: 1rem 9rem 0rem 9rem;
  border-radius: 0.2rem;
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: center;
}
.result h2{
  width: fit-content;
  font-weight: 400;
  font-size: 1rem;
}
.button-area span{
  width: 100%;
  margin-top: 1rem;
  font-size: 0.9rem;
}

#checkbox{
  background-color: var(--primary);
  width: 40px;
  color: #212121;
}
input#checkbox.checkbox{
  accent-color: var(--primary);
  z-index: 30;
}
#checkbox_text{
  z-index: 1;
  background-color: rgba(255, 255, 240, 0);
  font-size: 0.75rem;
  text-align: left;
  margin-left: 2rem;
  max-width: 90%;
  margin-top: 0.15rem;
}
#kontaktformular {
  position: relative;
  margin-bottom:1.5rem;
  display: flex;
  justify-content: space-between;
}

@media ( max-width: 1001px ) {
  .kontakt {
    padding: 0;
    height: fit-content;
    margin-top: 12rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow-x: hidden;
  }
  form {
    width: 100%;
    padding: 5%;
  }
  .button-area{
    margin-top: 3rem;
  }
  .kontakt_rechts p{
    margin:0rem 1rem 0rem 1rem
  }
  .kontakt_rechts h2{
    font-size: 1.5rem;
    padding-bottom: 0.2rem;
    font-family: 'Prompt', sans-serif;
    color: var(--dark);
    font-weight: 900;
    line-height: 2.5rem;
    word-spacing: -0.25rem;
  }
}
@media ( max-width: 550px ) {
  .kontakt {
    padding: 0;
    height: fit-content;
    margin-top: 5rem;
    margin-bottom: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow-x: hidden;
  }
}
#datenschutz_p{
  z-index: 1;
  background-color: rgba(255, 255, 240, 0);
  font-size: 0.80rem;
  text-align: left;
  width: 100%;
  margin-top:1.5%;
  text-align: center;
  color: #212121;
}
#datenschutz_div{
  display: flex;
}
#datenschutz_div a{
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
}
@media ( max-width: 1001px ) {
  #datenschutz_p{
    text-align: center;
  }
}
#world {
  width: 50vw;
  height: 40vw;
  max-width:100%;
  background-color:#00003300;
  position: absolute;
  margin-top: -12rem;
  z-index: 1;
}
#world1 {
  width: 50vw;
  height: 40vw;
  max-width:100%;
  background-color:#00003300;
  position: absolute;
  margin-top: -12rem;
  z-index: 5;
}
#world1 img {
  width: 100%;
  height: 100%;
}

/*** Footer ***/

.footer_wrapper{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1rem;
  background-color: var(--light);
  justify-content: center;
  text-align: center;
  height:fit-content;
  padding-top: 2rem;
  padding: 3rem 8rem 3rem 8rem;
  border-top: 0.1rem solid var(--dark);
  overflow-x: hidden;
}

.footer_wrapper div ul li{
  list-style: none;
}
.footer1 img{
  max-width: 50%;
}

.footer2 ul li{
  text-decoration: none;
  margin: 0.3rem;
}
.footer2 ul li::marker{
  content:"";
}
.footer2 ul li a{
  text-decoration: none;
  color: var(--dark);
}
.footer2 ul li a:hover{
  color: var(--secondary);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}
.footer_wrapper h2{
  font-size: 1.10rem;
  color: #212121;
  margin-bottom: 0.5rem;
}

.footer3 ul li{
  text-decoration: none;
  margin: 0.3rem;
}
.footer3 ul li::marker{
  content:"";
}
.footer3 ul li a{
  text-decoration: none;
  color: var(--dark);
}
.footer3 ul li a:hover{
  color: var(--secondary);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}
.footer3 img{
  width: 20px;
  margin-left: 0.3rem;
  border-radius: 1px;
}
.footer4 h3{
  color: var(--dark);
  font-size: 1rem;
}
.footer4 p{
  line-height: 1.25rem;
  margin-top: 0.25rem;
}
.copyright{
  height: fit-content;
  display: flex;
  background-color: var(--light);
  justify-content: center;
  padding: 1rem;
}
.copyright h2{
  color: var(--dark);
  font-weight: 400;
}

@media ( max-width: 1001px ) {
  .copyright h2 {
    color: var(--dark);
    font-weight: 400;
    text-align: center;
  }
}

/**** Animation ****/
.animate-on-scroll-right {
	opacity: 0;
	transform: translate(70px, 0);
	transition: all 0.25s ease-out;
	transition-delay: 0.1s;
}
.animate-on-scroll-left {
	opacity: 0;
	transform: translate(-70px, 0);
	transition: all 0.25s ease-out;
	transition-delay: 0.1s;
}
.animate {
	opacity: 1;
	transform: translate(0, 0);
}

/** Plane **/

#mySVG {
  position: relative;
  z-index: 100;
  overflow: visible;
}
.st0 {
  fill: none;
  stroke-dashoffset: 3px;
  stroke: var(--lightgrey);
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke-dasharray: 10;
}
.n1{
  position: absolute;
  padding: 0;
  height: 50rem;
  left: 0;
}

@media ( min-width: 1930px ) {
  .n1{
    position: absolute;
    right: -12rem;
    padding: 0;
    height: 50rem;
  }
  #mySVG {
    width: 80%;
  }
  .dbw__right h1 {
    max-width: 35rem;
  }
  #dbw__right_p {
    max-width: 35rem;
  }
}

/** Ports **/
#svgports {
  position: absolute;
  z-index: 100;
  overflow: visible;
  margin: -22vw 0rem 0rem 1rem;
  right: 0;
  max-width: 80rem;
}
.pathst {
  fill: none;
  stroke-dashoffset: 3px;
  stroke: #3a5e3b;
  stroke-width: 1;
  stroke-miterlimit: 10;
  stroke-dasharray: 10;
}

@media (max-width: 1600px) {
  #svgports {
    width: 1200px;
    height: 1200px;
    margin: -20vw 0rem 0rem 1rem;
  }
}

@media (max-width: 1000px){
  #svgports {
    width: 900px;
    height: 900px;
    margin: -70vw 0rem 0rem 1rem;
    overflow: hidden;
}
.wwsh2{
  margin-right: 1rem;
  margin-top: 2rem;
  grid-template-columns: auto 1rem auto;
  justify-content: left;
  padding-top: 4rem;
  overflow-x: hidden;
  display: flex;
  overflow: hidden;
}
}
@media (max-width: 800px){
  #svgports {
    width: 900px;
    height: 900px;
    margin: -31rem 0rem 0rem 1rem;
}
}

