/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */


::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

  /* GLOBAL */
  @font-face {
    font-family: "NeueHaasUnica";
    src: url("/font/neuehaasunicapromedium.woff") format("woff"),
           url("/font/neuehaasunicapromedium.woff2") format("woff2");
   }
   
   *{
    font-family: "NeueHaasUnica", sans-serif;
    box-sizing:border-box;
   }

  body, html{
    font-family: "NeueHaasUnica", sans-serif;
    width:100vw;
    padding-top:1%;
    overflow-x: hidden !important;
    font-size: 15px;
    line-height: 18px;
    scroll-behavior: smooth;
    }

    body{
      position: relative;
    }

    .grid-x{
      width:90%;
      margin:0 5%;
    }

  .text1{
    font-size: 15px;
    line-height: 18px;
    font-family: "NeueHaasUnica", sans-serif;
  }

  .text2{
    font-size: 39px;
    line-height: 54px;
    font-family: "NeueHaasUnica", sans-serif;
  }

  .textLegend{
    font-size: 13px;
    line-height: 17px;
    font-family: "NeueHaasUnica", sans-serif;
  }

  ul, ul li{
    list-style-type: none;
    margin:0;
    padding:0;
    line-height: normal;
    font-family: "NeueHaasUnica", sans-serif;
  }

  p, h2{
    margin:0;
    font-family: "NeueHaasUnica", sans-serif;
  }

  a{
    color:#000;
  }
  a:hover{
    color:#000;
  }

  .cursor {
    position: fixed;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #eadac48f;
    pointer-events: none;
    z-index: 11 !important;
    transition: transform 0.2s;
  }


  /* Header */

  header{
    margin:2% 0 0 0;
  }

  header nav{
    margin-bottom: 45px;
  }

  header nav ul li{
    margin-bottom: 4px;
  }

  header nav ul li a{
    position: relative;
  }

  header nav ul li a:hover .hoveractive{
    opacity: 1;
    transform: scaleX(1);
    transition: all 0.3s ease-out;
  }

  header nav ul li .hoveractive {
    width: 100%;
    height: 7px;
    background: #eadac4;
    display: block;
    position: absolute;
    top: 9px;
    z-index: -2;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.3s ease-out;
  }

  header h1 img{
    height: 70px;
  }

  header #HeaderLine, #Agentur #HeaderLine{
    width:100vw;
    height:1px;
    background: #000;
    transform: scaleX(3);
    transform-origin: 0%;
    z-index: 5;
  }

  header #burger, header #burgernav{
    display: none;
  }


  /* Slider */

  #Project{
    transform: translateY(-4%);
  }

  #Project .grid-x{
    margin: 0;
  }

  #Project img{
    transform: translateX(1.5%);
  }

  #Project ul li{
    display: inline-block;
    margin:5px 9px;
    position: relative;
    cursor: pointer;
  }

  #Project .ProjectBox{
    background-position:2vw;
    background-size: cover;
    background-repeat: no-repeat;
    height:69vh;
    width:100%;
  }
  #Project #Project1{
    background-image: url(../img/project1.jpg);
  }
  #Project #Project2{
    background-image: url(../img/project2.jpg);
  }
  #Project #Project3{
    background-image: url(../img/project3.jpg);
  }

  #Project .ProjectLegend div{
    position: relative;
  }

  #Project #SlideProjectSelect{
    position: absolute;
    width:67px;
    height:67px;
    top:-5px;
    left:-23px;
    border: 1px solid #000;
    border-radius: 100px;
    transform-origin: center;
  }
  #Project .SlideProjectButton span{
    position: absolute;
    width:40px;
    height:40px;
    top:7px;
    left:-9px;
    border: 1px solid #000;
    border-radius: 100px;
    transition: all 0.2s ease-out;
  }

  #Project .ProjectLegend p{
    padding-top:15px;
  }

  #Project .ProjectText1, #Project .ProjectText2, #Project .ProjectText3{
    display: none;
  }

  #Project #Project1, #Project2, #Project3{
    display: none;
  }

  .ProjectTextAppear{
    display:block !important;
    animation-name: ProjectText;
    animation-duration: 0.5s;
  }
  

  @keyframes ProjectText {
    0% { opacity: 0; }
    30% { opacity: 0; }
    100% { opacity: 1; }
  }

  .SliderSwitch0{
    transform: translateX(0);
    transition: all 0.5s ease-out;
  }
  .SliderSwitch{
    transform: translateX(45px);
    transition: all 0.5s ease-out;
  }
  .SliderSwitch2{
    transform: translateX(90px);
    transition: all 0.5s ease-out;
  }

  .SliderswitchfadeCircle{
    opacity: 0 !important;
    transition: all 0.2s ease-out;
  }

  
  /* Wie können wir Ihnen helfen? */

  /* Offer */
  #Offer{
    margin-bottom:100px;
    position: relative;
  }

  #Offer #OfferIntro h2, #OfferForm{
    padding-top:4%;
  }

  #Offer #OfferIntro h2 span{
    position: relative;
    cursor: pointer;
  }

  #Offer #OfferIntro h2 .BigTextline{
    height:1px;
    background:#000;
    width:100%;
    position: absolute;
    transform-origin: left;
    bottom:5px;
    left:0;
    transition: all 0.3s ease-out;
  }

  #Offer #OfferIntro h2 #websiteLink:hover .Webline{
    transform: scaleX(0.55);
    transition: all 0.3s ease-out;
  }
  #Offer #OfferIntro h2 #droneLink:hover .Droneline{
    transform: scaleX(0.43);
    transition: all 0.3s ease-out;
  }

  #Offer #OfferLine{
    height:1px;
    background: #000;
    transform: scaleX(2);
    transform-origin: right;
    z-index: 5;
  }

  #Offer #IllustrationWeb{
    padding-top:0;
    padding-bottom:0;
  }

  #Offer svg{
    width:100%;
  }

  #Offer svg #reel, #Offer svg #flug{
    cursor: pointer;
  }

  #Offer svg #reel circle{
    animation-name: svganimdrone;
    animation-duration: 0.5s;
    transition: all 0.5s ease-out;
  }

  @keyframes svganimdrone {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
  }

  #Offer .OfferLink{
    position: relative;
  }

  #Offer #OfferLinkCircle{
    position: absolute;
    width:27px;
    height:27px;
    top:-4px;
    left:-8px;
    border: 1px solid #000;
    border-radius: 100px;
    transition: all 0.3s ease-out;
  }
  #Offer .OfferLink:hover #OfferLinkCircle{
    width:40px;
    height:40px;
    top:-10px;
    left:-15px;
    transition: all 0.3s ease-out;
  }

  #Offer #OfferIntro #IllustrationDrone, #IllustrationWeb, #IllustrationSignal{
    display: none;
  }

  #Offer #VideoPopUp{
    width:50vw;
    height: 60%;
    background: #fff;
    border: 1px solid #000;
    position: absolute;
    top:40%;
    left:25%;
    display: none;
    transition: all 0.3s ease-out;
  }
  #Offer #VideoPopUp #VideoClose{
    position: absolute;
    right:10px;
    top:10px;
    cursor: pointer;
  }

  /* OfferForm */
  #OfferForm{
    position: absolute;
    width:100vw;
    left:100vw;
    top:0;
    background: #fff;
    margin-bottom: 40px;
    transition: all 0.5s ease-out;
  }

  #OfferForm form{
    margin-top:20px;
    padding-bottom: 90px;
  }

  #OfferForm .grid-x{
    width:100%;
    margin-left:0;
  }

  #OfferForm form input{
    border: 1px solid #000;
  }

  #OfferForm form .vorname, #OfferForm form .tel, #OfferForm form .Deadline{
    padding-left:10px;
  }
  #OfferForm form .name, #OfferForm form .email, #OfferForm form .ObjektAdresse{
    padding-right:10px;
  }
  #OfferForm form .question input{
    height:78px;
  }
  #OfferForm form .submit input{
    text-align:right;
    margin-top:13px;
    background: #fff;
    border:none;
  }
  #OfferForm form .submit{
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-out;

  }
  #OfferForm #SubmitLinkCircle{
    position: absolute;
    width:27px;
    height:27px;
    top:27px;
    left:-9px;
    border: 1px solid #000;
    border-radius: 100px;
    transition: all 0.3s ease-out;

  }
  #OfferForm .submit:hover #SubmitLinkCircle{
    width:40px;
    height:40px;
    top:22px;
    left:-15px;
  }

  #OfferForm h2{
    margin-bottom:20px;
  }

  #OfferForm #BackToOffer{
    margin-top:25px;
  }

  #OfferForm .OfferThemes li{
    padding-bottom:25px;
    position: relative;
    cursor: pointer;
  }

  #OfferForm .OfferThemes li .SelectCircle{
    position: absolute;
    width:27px;
    height:27px;
    top:-4px;
    left:-9px;
    border: 1px solid #000;
    border-radius: 100px;
    opacity:0;
  }

  #OfferForm .drone{
    display:none;
  }

  .offerselect{
    opacity: 1 !important;
  }

  .offergo{
    left:0 !important;
    transition: all 0.5s ease-out;
  }
  .offergo2{
    animation-name: Offergoanim;
    animation-duration: 0.5s;
    transition: all 0.5s ease-out;
  }

  @keyframes Offergoanim {
    0% { left: 0; }
    99.9% { left: -100vw;}
    100% { left: 100vw; }
  }


  /* Proposal */

  #Proposal{
  margin-bottom:80px;
  position: relative;
  }

  #Proposal #ProposalSelection{
    height:500px;
    border-right:1px solid #000;
  }

  #Proposal .AngebotTitel{
    margin-top:25px;
  }

  #Proposal #ProposalSelection li:first-child{
    margin-top:25px;
  }
  #Proposal #ProposalSelection li{
    margin-bottom:45px;
    position: relative;
    cursor: pointer;
  }

  #Proposal .PropLinkCircle{
    position: absolute;
    width:40px;
    height:40px;
    top:6px;
    left:-8px;
    border: 1px solid #000;
    border-radius: 100px;
    transition: all 0.5s ease-out;
  }

  #Proposal img{
    transform: translateY(-4%);
  }

  #Proposal .AngebotNav{
    position: absolute;
    bottom:25px;
    left:58%;
  }

  #Proposal .AngebotNav li{
    display: inline-block;
    margin-left:17px;
    position: relative;
    cursor: pointer;
  }

  #Proposal .AngebotNav li span{
    position: absolute;
    width:27px;
    height:27px;
    top:-4px;
    left:-9px;
    border: 1px solid #000;
    border-radius: 100px;
  }

  #Proposal .AngebotNav .AngebotNavSelect{
    position: absolute;
    width:43px;
    height:43px;
    top: -11px;
    left:-17px;
    border: 1px solid #000;
    border-radius: 100px;
  }

  #Proposal .ProposalText{
    padding:20% 10%;
  }


  #Proposal .ProposalText p{
    padding-bottom:6%;
  }

  #Proposal #PropLine{
    width:100vw;
    height:1px;
    background: #000;
    transform: scaleX(1.1);
    transform: translateX(-8.333%);
    transform-origin: left;
    position: relative;
    z-index: 5;
  }

  #Proposal .box{
    display:none;
  }

  #Proposal #ProposalImages .Komm2{
    background:#000;
  }

  #Proposal .ProdukteTitel{
    position: relative;
  }

  #Proposal .ProduktLine{
    width:100%;
    height:7px;
    background:#eadac4;
    display: block;
    position: absolute;
    top:11px;
    z-index: -2;
  }

  .propselect{
    width:67px !important;
    height:67px !important;
    top:-7px !important;
    left:-21px !important;
    transition: all 0.5s ease-out;
  }

  .propselectbox{
    opacity:1 !important;
    transition: all 0.5s ease-out;
  }

  .AngebotNavSelectGo0{
    transform: translateX(0);
    transition: all 0.5s ease-out;
  }

  .AngebotNavSelectGo1{
    transform: translateX(31px);
    transition: all 0.5s ease-out;
  }

/* =====Stereometrie===== */

.gebaudeacontainer {
  position: relative;
}

#gebaudebcontainerA {
  position: relative;
  height: 600px;
  width:auto;
  margin-top: -25px;
  padding-bottom:20px;
  background: #eadac4;
}

#gebaudebcontainerA svg{
  width:350px;
}

.stocken{
  position:absolute;
  bottom:10px;
  right:20px;
  z-index:600;
}

.stocken ul li{
  margin-bottom:10px;
  cursor: pointer;
  text-align: center;
}

.gebaudeacontainer div {
  position: absolute;
}

.gebaudeacontainer div#a_attika{
  top: 193px;
  left:50%;
  margin-left:-160px;
  z-index: 10;
  transition: all .5s ease-in;
}

.gebaudeacontainer div#a_3 {
  top: 197px;
  left:50%;
  margin-left:-175px;
  z-index: 9;
  transition: all .5s ease-in;
}

.gebaudeacontainer div#a_2 {
  top: 214px;
  left:50%;
  margin-left:-175px;
  z-index: 8;
  transition: all .5s ease-in;
}

.gebaudeacontainer div#a_1 {
  top: 232px;
  left:50%;
  margin-left:-175px;
  z-index: 7;
  transition: all .5s ease-in;
}

.gebaudeacontainer div#a_eg {
  top: 245px;
  left:50%;
  margin-left:-175px;
  z-index: 6;
  transition: all .5s ease-in;
}

.stockclick {
  background: #eadac4;
  color: #fff !important;
  border-radius: 100px;
  width:20px;
  height:20px;
}

.attikago {
  transform: translate(0, -130px) !important;
  transition: all .5s ease-out;
}

.devantplease3 {
  animation: devantplease3 1s forwards;
  animation-delay: .5s;
}

.devantplease2 {
  animation: devantplease2 1s forwards;
  animation-delay: .5s;
}

.devantplease1 {
  animation: devantplease1 1s forwards;
  animation-delay: .5s;
}

.devantpleaseeg {
  animation: devantpleaseeg 1s forwards;
  animation-delay: .5s;
}
.cacheattikahoverA {
  width: 470px;
  height: 307px;
}

.cacheattikahovernoA {
  display: none;
}


@keyframes devantplease3 {
  0% {
      z-index: 9;
  }

  99% {
      z-index: 11;
  }

  100% {
      z-index: 11;
  }
}

@keyframes devantplease2 {
  0% {
      z-index: 8;
  }

  99% {
      z-index: 11;
  }

  100% {
      z-index: 11;
  }
}

@keyframes devantplease1 {
  0% {
      z-index: 7;
  }

  99% {
      z-index: 11;
  }

  100% {
      z-index: 11;
  }
}

@keyframes devantpleaseeg {
  0% {
      z-index: 6;
  }

  99% {
      z-index: 11;
  }

  100% {
      z-index: 11;
  }
}

   /* Footer */
  footer{
    height:450px;
    padding: top 50px;
  }

  footer #FooterLine{
    height:1px;
    background: #000;
    transform: scaleX(2);
    transform-origin: right;
    z-index: 5;
  }

  footer .logo img{
    height: 70px;
  }

  footer .SloganAdress p:nth-child(2){
    margin-top:30px;
  }

  footer ul li{
    margin-top:30px;
    display: inline-block;
  }


  /* =====Projekt Liste===== */

  #ProjektListe #HeaderLine, #Blog #HeaderLine, #Agentur #HeaderLine{
    margin-top:60px;
  }
  
  #Projects{
    padding-top: 24px;
  }

    /* =====Projekt Filter===== */
  #Projects #ProjectFilter{
    padding-top:12px;
  }
  #Projects #ProjectFilter .container{
    position: relative;
    display: block;
    cursor: pointer;
    padding-left: 0;
    margin-bottom: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all .3s ease-out;
  }

  #Projects #ProjectFilter label{
    font-size: 15px;
    line-height: 18px; 
  }

  #Projects #ProjectFilter .container input{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height:0;
    width:0;
  }

  #Projects #ProjectFilter .container .checkmark{
    position: absolute;
    top: -4px;
    left: -9px;
    height: 27px;
    width: 27px;
    border-radius: 100px;
    background-color: none;
    transition: all .3s ease-out;
  }
  #Projects #ProjectFilter .container:hover input ~ .checkmark {
    background-color: none;
    border: 1px solid #000;
    transition: all .3s ease-out;
  }
  #Projects #ProjectFilter .container input:checked ~ .checkmark {
    background-color: none;
    border: 1px solid #000;
  }
  #Projects #ProjectFilter .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  #Projects #ProjectFilter .container input:checked ~ .checkmark:after {
    display: block;
    transition: all .3s ease-out;
  }
  #Projects #ProjectFilter .container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: none;
  }

  /* =====Projekt Blocks===== */
  #Projects #ProjectBlocksContainer .ProjectBlock:not(:first-child){
    padding-top:20px;
  }
  #Projects #ProjectBlocksContainer a:not(:first-child) div{
    margin-top:11px;
  }
  #Projects #ProjectBlocksContainer .ProjectName, #ProjectBlocksContainer .ProjectClient{
    padding-top: 10px;
  }
  #Projects #ProjectBlocksContainer .grid-x{
    width:100%;
  }
  #Projects .ProjectBlock{
    border-bottom: 1px solid #000;
    padding-bottom:20px;
  }
  #Projects .ProjectBlockLong{
    cursor: pointer;
    height:90px;
    overflow: hidden;
  }
  #Projects .ProjectBlockLong .ProjectDate, .ProjectBlockLong .ProjectDescription{
    opacity: 0;
  }

  #Projects #ProjectBlocksContainer .ProjectNumber{
    position: relative;
    padding-left:11px;
  }

  #Projects #ProjectBlocksContainer .ProjectBlock .ProjectNumber span, #OneProject .OneProjectNumber span{
    width:40px;
    height:40px;
    top:7px;
    left:3px;
    position: absolute;
    opacity: 0;
    border: 1px solid #000;
    border-radius: 100px;
    transition: all .3s ease-out;
  }
  #Projects #ProjectBlocksContainer .ProjectBlock:hover .ProjectNumber span, .Numberactive{
    width:67px !important;
    height:67px !important;
    top:-5px !important;
    left:0 !important;
    opacity: 1 !important;
    transition: all .3s ease-out;
  }

  @keyframes ProjectDetails {
    0% { opacity: 0;}
    30% { opacity: 0;}
    100% { opacity: 1;}
  }
  @keyframes ProjectDetailsOpen {
    0% { height: 90px;}
    30% { height: auto;}
    100% { height: auto;}
  }
  .ProjectDetailsAppear{
    animation: ProjectDetails .5s ease-out 1 forwards;
  }
  .ProjectDetailsAppearOpen{
    animation: ProjectDetailsOpen .5s ease-out 1 forwards;
  }

  #OneProject{
    padding:20px 0 100px 0;
  }
  #OneProject .OneProjectNumber{
    position: relative;
    padding-left:11px;
  }
  #OneProject .OneProjectText{
    border-bottom: 1px solid #000;
    padding-bottom:60px;
  }
  #OneProject p{
    padding-bottom:20px;
  }
  #OneProject .OneProjectImageLeft{
    padding-right:10px;
  }
  #OneProject .OneProjectImageRight{
    padding-left:10px;
  }
  #OneProject .OneProjectImageRight img, #OneProject .OneProjectImageLeft img{
    padding-top:20px;
  }
  #OneProject .ProjectsBackButton{
    display: block;
    position: absolute;
    bottom:20px;
    left:0;
  }

  /* =====Blog===== */
  #Blog .Post{
    padding:80px 0;
    border-bottom: 1px solid #000;
    position: relative;
  }
  #Blog div:last-child{
    border-bottom: none;
  }
  #Blog .Post .grid-x{
    width: 100%;
    margin:0;
  }
  #Blog .Post .PostTitel p{
    position: relative;
  }
  #Blog .Post .PostTitel p span{
    width:80px;
    height:1px;
    background: #000;
    position: absolute;
  }
  #Blog .next, #Blog .prev{
    margin-top:50px;
    cursor: pointer;
  }
  #Blog .prev img, #Blog .next img{
    height:40px;
  }
  #Blog .next{
    transform: rotate(180deg);
    right: 0;
    position: absolute;
  }

  .carousel {
      overflow:hidden;
    }
    .carousel li{
      padding:0 5px;
    }

  .carousel img{
    width:100%;
  }
    

  /* =====Agentur===== */

  #Agentur{
    background:#000;
  }

  #Agentur p, #Agentur header, #Agentur ul li, #Agentur ul li a, #Agentur a, #Agentur h2, #Agentur form label, #Agentur .submit{
    color:#fff !important;
  }
  #Agentur .SmallLine, #Agentur #HeaderLine, #Agentur .MoreLink div, #Agentur #FooterLine{
    background:#fff !important;
  }
  #Agentur #OfferForm form .submit input{
    background:#000!important;
  }
  #Agentur #SubmitLinkCircle{
    border-color: #fff !important;
  } 
  #Agentur #OfferForm .OfferThemes li .SelectCircle {
    border: 1px solid #fff;
  }

  #Agentur #IntroText{
    margin:20px 0 200px 0;
  }
  #Agentur #IntroText h2, #Agentur h2{
    margin-bottom:50px;
    padding-top:20px;
  }

  #Agentur .TeamPerson, .VerwaltungsratPerson{
    padding-right:55px;
  }

  #Agentur .TeamPerson h2, .VerwaltungsratPerson h2{
    margin-bottom:20px !important;
  }

  #Agentur .TeamPerson ul, .TeamPerson p, .VerwaltungsratPerson ul, .VerwaltungsratPerson p{
    margin-top:20px;
  }

  #Agentur #Team #HeaderLine, #Verwaltungsrat #HeaderLine {
    margin-top: 200px;
  }

  #Agentur .SmallLine{
    display: block;
    width:120px;
    height:1px;
    background:#000;
  }

  #Agentur #Verwaltungsrat{
    margin-top:20px;
  }

  #Agentur .MoreLink{
    width:40px;
    height: 40px;
    margin-top:40px;
    cursor: pointer;
    position: relative;
    transition: all .3s ease-out;
  }
  #Agentur .MoreLink div{
    margin-top:20px;
    position: absolute;
    width:40px;
    height:1px;
    background: #000;
  }
  #Agentur .MoreLink div:nth-child(2){
    transform: rotate(90deg);
  }

  #Agentur .MoreText{
    margin-top:40px;
    display: none;
  }

  .rotate{
    transform: rotate(45deg);
    transition: all .3s ease-out;
  }


  #Agentur #OfferForm{
    position: relative;
    width: auto;
    left:0;
    background:#000;
  }

  #Agentur footer img, #Agentur header img{
    filter:invert(100%);
  }


/* =====Responsive===== */

  /* IPAD Portrait and Landscape */
@media screen 
and (min-device-width: 768px) and  (max-device-width: 1023px), (min-width: 768px)  and (max-width: 1023px)   {
  body{
    font-size: 16px;
    line-height: 19px;
  }
  .cursor{
    display: none;
  }
  header nav{
    margin-bottom: 10%;
  }
  header h3{
      margin-top: 4px;
  }
  #Project .ProjectBox{
    background-position:2vw;
    height:60vh;
  }
  .text1{
    font-size: 16px;
    line-height: 19px;
  }

  .text2{
    font-size: 36px;
    line-height: 51px;
  }
  .textLegend{
    font-size: 13px;
    line-height: 17px;
  }
  #Project ul li{
    margin:5px 10px;
  }
  .SliderSwitch {
    transform: translateX(45px);
  }
  .SliderSwitch2 {
    transform: translateX(89px);
  }
  #Offer #OfferIntro h2{
    padding-top:5%;
  }
  #Offer #IllustrationDrone, #Offer #IllustrationWeb{
    padding-top:5%;
    padding-bottom:10%;
  }
  #Offer #VideoPopUp {
    width: 90vw;
    height: 35vh;
    top: 36%;
    left: 5%;
  }
  #OfferForm form .submit input {
    margin-top: 36px;
  }
  #OfferForm p{
    padding-bottom:6%;
    padding-top: 10px;
  }
  #OfferForm .OfferThemes{
    padding-top: 13px;
  }
  #OfferForm #Form .grid-x{
    width:100%;
    margin:0;
  }
  #OfferForm form {
    padding-bottom: 90px;
  }
  #OfferForm #SubmitLinkCircle {
    top: 30px;
    left: -2px;
  }
  #Proposal #ProposalImages .Branding1, #ProposalImages .Branding2, #ProposalImages .Komm1, #ProposalImages .Komm2, #ProposalImages .Signa1, #ProposalImages .Beratung1 {
    display:none !important;
  }
  #Proposal #PropLine{
    transform: translateX(8.333%);
    position: absolute;
    top:50px;
  }
  #Proposal .AngebotNav {
    position: absolute;
    bottom: 80px;
    left: 27%;
  }
  #Proposal .AngebotTitel {
    margin-top: 60px;
  }
  #Proposal #ProposalSelection{
    height:750px;
  }
  #Proposal .AngebotNav li{
    margin-left:15px;
  }
  #Proposal .AngebotNav .AngebotNavSelect {
    width: 40px;
    height: 40px;
    top: -9px;
    left: -15px;
  }
  #Proposal .ProposalText {
    padding: 24% 10%;
  }
  .AngebotNavSelectGo1 {
    transform: translateX(29px);
  }
  footer div:nth-child(3), footer div:nth-child(4){
    margin-top:15px;
  }
  #Projects .ProjectBlockLong .ProjectDate, .ProjectBlockLong .ProjectDescription {
    padding-top: 20px;
  }
  #Projects .ProjectBlockLong .ProjectDescription {
    padding-bottom: 20px;
  }
  #Projects .ProjectBlockLong{
    height:110px;
  }
  #OneProject .OneProjectTitel{
    padding-bottom:20px;
  }
  #OneProject .OneProjectImageLeft{
    padding-right:0;
  }
  #OneProject .OneProjectImageRight{
    padding-left:0;
  }
  #OneProject .ProjectsBackButton{
    bottom:0;
    left:0;
  }
  #Blog .PostText p{
    font-size: 15px;
    line-height: 18px;
    padding-bottom: 20px;
    margin-left: 5px;
  }
  #Blog .next, #Blog .prev {
    margin-top: 200px;
  }
  #Agentur #OfferForm #SubmitLinkCircle {
    top: 51px;
    left: -9px;
  }
  #Agentur #OfferForm p {
    padding-bottom: 6%;
    padding-top: 25px;
  }
  #Agentur #OfferForm .OfferThemes {
    padding-top: 27px;
  }
}

/* IPHONE Portrait and Landscape */
@media screen 
and (max-device-width: 768px), (max-width:768px)  {
  body{
    font-size: 15px;
    line-height: 18px;
  }
  .cursor{
    display: none;
  }
  header #burger, header #burgernav{
    display: block;
  }
  header nav{
    display: none;
  }
  header #burgernav{
    width:100vw;
    height:100vh;
    position: absolute;
    background:#000;
    left:0;
    top:-100vh;
    z-index: 9;
    transition: all 0.5s ease-out;
  }
  header #burgernav ul{
    position: absolute;
    top:30vh;
    text-align: center;
    left:50%;
    margin-left:-77px;
  }
  header #burgernav li a{
    color:#fff !important;
    position: relative;
    z-index:11;
  }
  header #burger{
    position: absolute;
    cursor: pointer;
    top:2vh;
    right:6vw;
    width:30px;
    height:33px;
    z-index: 10;
  }
  header #burger div{
    width:30px;
    height:1px;
    margin-bottom:10px;
    background:#000;
    transition: all 0.3s ease-out;
  }
  header #HeaderLine {
    width: 90vw;
    height: 1px;
    background: #000;
    transform: scaleX(1.1);
    transform-origin: 0%;
    z-index: 5;
  }
  header h3{
    margin-bottom:40px;
  }
  .text1{
    font-size: 15px;
    line-height: 18px;
  }
  .text2{
    font-size: 30px;
    line-height: 45px;
  }
  .textLegend{
    font-size: 12px;
    line-height: 16px;
  }
  #Project ul li{
    margin:5px 11px;
  }
  #Project .ProjectBox{
    background-position:center;
    height:55vh;
    transform: translateX(20px);
  }
  #Project #SlideProjectSelect {
    width: 60px;
    height: 60px;
    top: -5px;
    left: -21px;
  }
  #Project .SlideProjectButton span {
    width: 35px;
    height: 35px;
    top: 6px;
    left: -9px;
  }
  .SliderSwitch {
    transform: translateX(42px);
  }
  .SliderSwitch2 {
    transform: translateX(85px);
  }
  #Offer #OfferIntro h2{
    padding-top:5%;
  }
  #Offer #OfferIntro{
    padding-top:5%;
  }
  #Offer #IllustrationDrone{
    padding-top:0;
    padding-bottom:0;
  }
  #Offer #VideoPopUp {
    width: 90vw;
    left: 5%;
  }
  #OfferForm .formthemes, #OfferForm .OfferThemes{
    display: none;
  }
  #OfferForm{
    width:90vw;
    padding-top:50px;
  }
  #OfferForm p{
    font-size: 12px;
    line-height: 16px;
    padding-bottom:20px;
  }
  #OfferForm #SubmitLinkCircle {
    top: 30px;
    left: -2px;
  }
  #OfferForm form .vorname, #OfferForm form .tel {
    padding-left: 0;
  }
  #OfferForm form .name, #OfferForm form .email {
    padding-right: 0;
  }
  #OfferForm #Form .grid-x{
    width:100%;
    margin:0;
  }
  #OfferForm form {
    padding-bottom: 60px;
  }
  #OfferForm form .submit input {
    margin-top: 36px;
  }
  #Proposal #ProposalImages img{
    width:80%;
    padding:15% 10%;
    margin-top:-115%;
  }
  #Proposal #PropLine{
    transform: translateX(24.999%);
    position: absolute;
    top:50px;
  }
  #Proposal .AngebotNav {
    position: absolute;
    bottom: 75px;
    left: 47%;
  }
  #Proposal #ProposalSelection{
    height:620px;
    padding-left:10px;
  }
  #Proposal .ProposalText {
    padding: 25% 10%;
  }
  #Proposal .PropLinkCircle {
    width: 35px;
    height: 35px;
    top: 5px;
    left: -9px;
  }
  #Proposal .AngebotNav li{
    margin-left:17px;
  }
  .AngebotNavSelectGo1 {
    transform: translateX(30px);
  }
  #Proposal .AngebotNav .AngebotNavSelect{
    width: 43px;
    height: 43px;
    top: -11px;
    left: -17px;
  }
  #Proposal #ProposalImages .Branding1, #ProposalImages .Branding2, #ProposalImages .Komm1, #ProposalImages .Komm2, #ProposalImages .Signa1, #ProposalImages .Beratung1 {
    display:none !important;
  }
  .propselect{
    width: 58px !important;
    height: 58px !important;
    top: -6px !important;
    left: -20px !important;
  }
  .burgeranim1{
    transform: rotate(45deg) translateY(8px) translateX(8px);
    transform-origin: center;
    transition: all 0.3s ease-out;
  }
  .burgeranim2{
    transform: scaleX(0);
    transition: all 0.3s ease-out;
  }
  .burgeranim3{
    transform: rotate(-45deg) translateY(-8px) translateX(8px);
    transform-origin: center;
    transition: all 0.3s ease-out;
  }
  .whiteburger{
    background: #fff !important;
  }
  .ProjectTextAppearDisplay{
    top:0 !important;
    position: fixed;
    transition: all 0.5s ease-out;
  }
  footer div:nth-child(3), footer div:nth-child(4){
    margin-top:15px;
  }

  #Projects #ProjectBlocksContainer{
    font-size: 13px;
    line-height: 17px;
  }
  #Projects #ProjectBlocksContainer .ProjectClient {
    padding-top: 20px;
  }
  #Projects #ProjectBlocksContainer .ProjectBlock:not(:first-child) {
    padding-top: 14px;
  }
  #Projects .ProjectBlockLong {
    height: 130px;
  }
  #Projects #ProjectBlocksContainer .ProjectBlock .ProjectNumber span {
    top: 3px;
    left: 8px;
  }
  #Projects #ProjectBlocksContainer .ProjectName, #ProjectBlocksContainer .ProjectClient {
    padding-top: 9px;
  }
  #Projects .ProjectBlockLong .ProjectDate, .ProjectBlockLong .ProjectDescription {
    padding-top: 20px;
  }
  #Projects #ProjectBlocksContainer .ProjectBlock .ProjectNumber span, #OneProject .OneProjectNumber span {
    width: 35px;
    height: 35px;
    top: 5px;
    left: 3px;
  }
  #Projects #ProjectBlocksContainer .ProjectBlock:hover .ProjectNumber span, .Numberactive {
    width: 55px !important;
    height: 55px !important;
    top: -4px !important;
    left: 1px !important;
  }
  #Projects #ProjectFilter label{
    font-size: 13px;
    line-height: 16px; 
  }
  #OneProject .OneProjectTitel{
    padding-bottom:20px;
  }
  #OneProject .OneProjectImageLeft{
    padding-right:0;
  }
  #OneProject .OneProjectImageRight{
    padding-left:0;
  }
  #OneProject .OneProjectNumber span {
    width: 40px;
    height: 40px;
    top: 3px;
    left: 0px;
  }
  #Blog .PostText p, .PostLongSlider li img{
    padding-top: 20px;
  }
  #Blog .Post {
    padding: 50px 0;
  }
  #Blog .next, #Blog .prev {
    margin-top: 370px;
  }
  .SliderButtonPrev{
    right:95% !important;
  }
  #Agentur #Team div div, #Verwaltungsrat div div{
    margin-bottom:100px;
  }
  #Agentur #Team div div:nth-last-child(2), #Agentur #Team div div:last-child, #Agentur #Verwaltungsrat div div:nth-last-child(2), #Agentur #Verwaltungsrat div div:last-child{
    margin-bottom:0 !important;
  }
  #Agentur header #burger div {
    background: #fff;
  }
  
}

/* Big screen */
@media only screen 
and (min-device-width: 1560px)  {
  .grid-x{
    width:80%;
    margin:0 auto;
  }
  #Offer #IllustrationDrone{
    padding-top:8%;
    padding-bottom:8%;
  }
  #Offer #IllustrationWeb {
    padding-top: 7%;
  }
  #OfferForm {
    width: 80vw;
    margin-bottom: 40px;
    margin-left: 10%;
  }
  #OfferForm #Form .grid-x{
    width: 100% !important;
  }
  #OfferForm h2 {
    margin-bottom: 40px;
  }
  #OfferForm form {
    margin-top: 40px;
  }
  #OfferForm #BackToOffer {
    margin-top: 100px;
  }
  #OfferForm .submit {
    margin-top: 80px;
    padding-bottom: 200px;
  }
  #OfferForm .OfferThemes{
    padding-top: 10px;
  }
  #OfferForm .formthemes{
    padding-top: 9px;
  }
  #OfferForm #SubmitLinkCircle {
    top: -2px;
  }
}



/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}


/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

