* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 200;
    scroll-behavior: smooth;
}
    .navbar {
      background-color: #F7FEFF;
      height: 70px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.5rem;
      position: sticky;
      top: 0;
      z-index: 999;
    }
    
    .navbar__container {
      display: flex;
      justify-content: space-between;
      height: 80px;
      z-index: 1;
      width: 100%;
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 50px;
    }
    
    .line {
      fill: none;
      stroke: black;
      stroke-width: 6;
      transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }
    .line1 {
      stroke-dasharray: 60 207;
      stroke-width: 6;
    }
    .line2 {
      stroke-dasharray: 60 60;
      stroke-width: 6;
    }
    .line3 {
      stroke-dasharray: 60 207;
      stroke-width: 6;
    }
    .opened .line1 {
      stroke-dasharray: 90 207;
      stroke-dashoffset: -134;
      stroke-width: 6;
    }
    .opened .line2 {
      stroke-dasharray: 1 60;
      stroke-dashoffset: -30;
      stroke-width: 6;
    }
    .opened .line3 {
      stroke-dasharray: 90 207;
      stroke-dashoffset: -134;
      stroke-width: 6;
    }
  
    #navbar__logo {
      background-size: 100%;
      display: flex;
      align-items: center;
      cursor: pointer;
      text-decoration: none;
    }
    
    .navbar__menu {
      display: flex;
      align-items: center;
      list-style: none;
    }
    
    .navbar__item {
      height: 80px;
    }
    
    .navbar__links {
      color:#25123B;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 125px;
      text-decoration: none;
      height: 100%;
      transition: all 0.3s ease;
    }
    
    .navbar__btn {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0 1rem;
      width: 100%;
    }
    
    .navbar__links:hover {
      color: #E41764;
      transition: all 0.3s ease;
    }
    #mobile-menu{
      opacity: 0;
    }
    .menu{
      background-color: #F7FEFF;
      cursor: pointer;
      border:none;
  }
    @media screen and (max-width: 960px) {
      .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 60px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
      }
    
      .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: -1;
        
      }
    
      .navbar__menu.active {
        background-color: #F7FEFF;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 40vh;
        height: 80px;
        padding: 0 0 160px 0;
        font-size: 1.6rem;
      }
      #navbar__logo{
         padding-left: 20px;  
      }
    
      .navbar__item{
          width: 100%;
      }
  
      .navbar__links{
          text-align: center;
          padding: 0rem;
          width: 100%;
          display: table;
          margin: 0;
          height: 0;
        background-color: #F7FEFF;
      }
  
    
      #mobile-menu{
          position: absolute;
          top: 2%;
          right: 5%;
          transform: translate(5%,20%);
          opacity: 1;
      }
    .navbar__item{
      height:50px;
    }
    .navbar__menu{
      height: 10
    }
    .navbar__container svg{
      width: 35px;
    }
    .navbar__container img{
      width: 35px;
    }
    
    }
  
      @media screen and (max-width: 760px) {
        .navbar__menu.active {
          height: 80px;
          padding: 0 0 150px 0;
          font-size: 1.4rem;
        }
    }

.display-4{
  font-size: 5rem !important;
  font-weight: 500 !important;
}

p{
    font-size: 1.5rem;
}
.button_div{
  display: flex;
  justify-content: center;
  align-items: center;
}
.web_button {
  font-size: 1.8rem;
  background: #25123B;
  padding: 10px 20px;
  border: none;
  border-radius: 1vw;
  margin: 2rem 0;
  cursor: pointer;
  position: relative;
  transition: all 0.35s;
  outline: none;
}

.web_button a {
  position: relative;
  z-index: 2;
  color: #F7FEFF;
  text-decoration: none;

}
.web_button:hover{
   background-color:#F7FEFF;
}

.web_button:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(37, 18, 59, 0.6);
  transition: all 0.35s;
  border-radius: 1vw;
}

.web_button:hover a{
  color: #F7FEFF;
    text-decoration: none;
}

.web_button:hover:after {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .web_button {
    font-size: 1.4rem;
    padding: 8px 12px;
  }
}
@media screen and (max-width: 700px) {
  .web_button {
    font-size: 1.4rem;
    padding: 8px 12px;
    border-radius: 2vw;
  }
  .web_button:after {
    border-radius: 2vw;
  }
}
.rounded{
  border-radius: 16% !important;
}
body{
  background-color: #F7FEFF !important;
}


/* weitere Projekte*/
.weitere_projekte{
  background-color: rgba(37, 18, 59, 0.6);
  padding: 1rem 0 0 0;
  color:#F7FEFF;
}
.weitere_projekte_überschrift{
  text-align: center;
  font-size: 1.8rem;
  margin: 4rem 0 0 0;
}




/*Kontakt Zeile*/
.kontakt_container{
  background-color: #25123B;
  color:#F7FEFF;
  margin: auto;
  overflow: hidden;
  }
  .kontakt_heading{
    text-align:center;
    color:#F7FEFF;
    font-size: 1.8rem;
    padding: 8rem 0 1.5rem 0;
  }
  .kontakt_button{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0rem 0 2rem 0;
  }
  .main__btn {
    font-size: 1.8rem;
    background: #F7FEFF;
    padding: 20px 60px;
    border: none;
    border-radius: 1vw;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
  }
  
  .main__btn a {
    position: relative;
    z-index: 2;
    color: #25123B;
    text-decoration: none;
  }
    .main__btn a:hover {
      text-decoration: none;
    }
  
  .main__btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #E41764;
    transition: all 0.35s;
    border-radius: 1vw;
  }
  
  .main__btn:hover a{
    color: #F7FEFF;
  }
  
  .main__btn:hover:after {
    width: 100%;
  }
  
  .abspann{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0;
    flex-direction: column;
    padding: 0 0 4rem 0;
  }
  .abspann p{
  margin: 0.8rem 0 0.8rem 0;
  }
  
  @media screen and (max-width: 960px) {
  
    .kontakt_heading{
      font-size: 1,5rem;
    }
  }
    @media screen and (max-width: 760px) {
  
      .kontakt_heading{
        font-size: 1.1rem;
        padding: 6rem 0 0 0;
      } 
      .kontakt_button{
         margin: 0.2rem 0 0.5rem 0;
      }
      .main__btn {
        padding: 15px 20px;
        border-radius: 2vw;
        font-size:1.6rem;
  }
  .main__btn:after {
    border-radius: 2vw;
  }
    }
    #myBtn {
      display: none; /* Hidden by default */
      position: fixed; /* Fixed/sticky position */
      bottom: 20px; /* Place the button at the bottom of the page */
      right: 30px; /* Place the button 30px from the right */
      z-index: 99; /* Make sure it does not overlap */
      border: none; /* Remove borders */
      outline: none; /* Remove outline */
      background-color: transparent; /* Set a background color */
      color: #F7FEFF; /* Text color */
      cursor: pointer; /* Add a mouse pointer on hover */
      padding: 15px; /* Some padding */
      border-radius: 10px; /* Rounded corners */
    }
    
    #myBtn :hover {
      stroke:#E41764;  /* Add a dark-grey background on hover */
    }
    
    @media screen and (max-width: 760px) { 
      #myBtn {
      right: -12px;
      bottom:-12px;
      }
      #myBtn svg{
        width:6em;
        height:6em;
        }
    }

    .navbar{
      padding: 0 !important;
    }


    .image-wrapper {
            position: relative;
            aspect-ratio: 4 / 3;
            overflow: hidden;
        }

        .image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .image-wrapper:hover {
          cursor:pointer;
        }

        .image-wrapper::after {
            content: "";
            position: absolute;
            inset: 0;
            background-color: rgba(37, 18, 59, 0.6);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .image-wrapper:hover::after {
            opacity: 1;
        }
      .white{
        background-color: #F7FEFF;
      }

      .rounded-corners{
        border-radius: 40px;
      }

      p{
        font-size: 1.5rem;
      }

      h1{
       font-size:3.5rem !important; 
      
      }
      a:hover{
        text-decoration: none !important;
      }
      .navbar{
        padding: 0 !important;
      }
      .abstand{
        padding: 2rem 0;
      }
      .zwischen_abstand{
        padding: 0 1.5rem 1.5rem 1.5rem !important;
      }
      h2{
        margin-bottom: 0.5rem !important;
      }
      p{
        margin-top: 1rem !important;
        line-height: 1.6 !important;
      }
      .anton img{
        object-position: 20% 0%;
      }

      .zoomable:hover{
       cursor: pointer; 
}

/* LIGHTBOX OVERLAY */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(37, 18, 59, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* IMAGE */
.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

/* CLOSE BUTTON */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #F7FEFF;
  font-size: 40px;
  cursor: pointer;
}

/* ZOOM STATE */
.lightbox-img.zoomed {
  transform: scale(2);
  cursor: zoom-out;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  color: #F7FEFF;
  cursor: pointer;
  user-select: none;
  padding: 10px;
}

.lightbox-arrow.left {
  left: 20px;
}

.lightbox-arrow.right {
  right: 20px;
}

.lightbox-arrow:hover {
  opacity: 0.7;
}

.treppen img{
  object-position: 50% 0%;
}

.col-md-6{
  padding-left: 20px !important;
}
.img-fluid{
  padding: 20px 0 !important;
}

.container.my-5{
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
.content{
  margin: 30px 0 60px 0;
}

.zwischen_abstand p{
  font-size: 1.2rem !important;
  line-height: 1.4rem !important;
  margin-top: 0 !important;
}
.zwischen_abstand h3{
margin-bottom: 0.3rem;}

@media screen and (max-width: 750px) { 
.display-4 {
  font-size: 3.5rem !important;}}

  @media screen and (max-width: 550px) {
    p{font-size: 1.3rem;}
   }