*{
  margin: 0;
  padding: 0;
}
html{
  scroll-behavior: smooth;
}
html::-webkit-scrollbar{width: 0.5em}
html::-webkit-scrollbar-thumb{background-color: #ddd;}
html::-webkit-scrollbar-track{}
body{
  font-size: 100%;
  overflow-x: hidden;
}
img{
  height: 100%;
}
a{
  color: #fff;
  text-decoration: none;
}

header{
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
div.appPreview{
  height: 100vh;
  width: 60%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation-name: startTransitionApp;
  animation-fill-mode: forwards;
  animation-duration: 1000ms;
  animation-delay: 0.25s;
}
div.phone{
  height: 50%;
  right: 0;
  position: absolute;
  margin-top: 3em;
  max-height: 480px;
}
div.phone img{
  background: url(../img/phone-bg.png) center center no-repeat;
  background-size: 77% auto;
  transition: all 1s;
}
div.phone img.img2{
  background-image: url(../img/phone-bg2.png);
}
div.desktop{
  height: 45%;
  margin-top: -5%;
  max-height: 480px;
}
div.desktop img{
  background: url(../img/desktop-bg.png) center 28% no-repeat;
  background-size: 87% auto;
  transition: all 1s;
}
div.desktop img{

}
div.topHeader{
  height: 65vh;
  background-color: #54d38a;
  display: flex;
  flex-direction: column;
}
div.navLine{
  height: 2px;
  width: 95%;
  left: 2.5%;
  top: 0.;
  position: absolute;
  background-color: #fff;
}
div.wrapperNav{
  flex: 1;
  z-index: 5;
}
nav{
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation-name: startOpacity;
  animation-fill-mode: forwards;
  animation-delay: 1.5s;
  animation-duration: 1000ms;
  margin-top: 0.5em;
}
nav ul{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #54d38a;
  z-index: 1;
  margin-left: -35%;
}
nav ul li{
  list-style: none;
  color: #fff;
  padding: 0.25em 0.5em;
  margin: 0 0.5em;
  font-family: 'Josefin Slab', serif;
  transition: all 0.3s ease-in-out;
  position: relative;
  cursor: pointer;
}
nav ul li::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  bottom: calc(50% - 2px);
  left: 0;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
nav ul li:hover::after{
  opacity: 1;
  bottom: 0;
}
div.contentLeft{
  width: 45%;
  position: relative;
  left: 55%;
  height: 50vh;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  margin-top: 2em;
  animation-fill-mode: forwards;
  animation-delay: 1.5s;
  animation-duration: 1000ms;
}
.slideTop{
  animation-name: startSlideTop;
}
div.contentLeft.slideBottom{
  animation-name: startSlideBottom;
  animation-delay: 1.75s;
  opacity: 0;
  height: 35vh;
}
div.contentText{
  opacity: 0;
  animation-name: startOpacity;
  animation-fill-mode: forwards;
  animation-delay: 1.5s;
  animation-duration: 1000ms;
}
div.contentLeft svg{
  height: 5em;
  color: #fff;
}
div.bottomHeader{
  height: 35vh;
  background-color: #fff;
}
div.contentDownload p{
  padding: 0.85em;
  border: 0.1em solid #54d38a;
  color: #54d38a;
  border-radius: 2em;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
div.contentDownload p:hover{
  color: #fff;
  background-color: #54d38a;
}
div.contentDownload span{
  color: #aaa;
  font-size: 0.75em;
  cursor: pointer;
}
div.contentDownload span:hover{
  text-decoration: underline;
}
div.footerHeader{
  text-align: center;
  bottom: 0;
  position: absolute;
  width: 100%;
  color: #aaa;
  padding: 0.75em;
  box-sizing: border-box;
  opacity: 0;
  animation-name: startOpacity;
  animation-fill-mode: forwards;
  animation-delay: 1.5s;
  animation-duration: 1000ms;
}
div.login_madewith_banner i {
  color: #ff3636d1;
  transition: all 0.2s ease-in-out;
  margin: 0 0.2em;
  font-size: 1em;
}
div.login_madewith_banner:hover i {
  animation-name: scale_love;
  animation-duration: 400ms;
}
@keyframes scale_love {
  50% {
    transform: scale(1.35);
    color: #f00;
}
100% {
    transform: scale(1);
}
}
div.login_madewith_banner span {
  color: #bebebe;
  font-weight: lighter;
}
div.login_madewith_banner {
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes play30 {
  0% {
    background-position: 0px 0px;
}
100% {
    background-position: -720px 0px;
}
}
@keyframes startSlideTop {
  0%{
    margin-top: 2em;
  }
  100%{
    margin-top: -2em;
  }
}
@keyframes startSlideBottom {
  0%{
    margin-top: 2em;
    opacity: 0;
  }
  100%{
    margin-top: 0em;
    opacity: 1;
  }
}
@keyframes startOpacity {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
@keyframes startTransitionApp {
  0%{
    opacity: 0;
    transform: scale(0.75);
  }
  100%{
    opacity: 1;
    transform: scale(1);
  }
}
.shapeshifter {
  animation-duration: 1000ms;
    animation-timing-function: steps(30);
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
  margin-bottom: 2em;
  transform: scale(2.5);
}
.shapeshifter.play {
  animation-name: play30;
  animation-fill-mode: forwards;
  animation-delay: 0.25s;
}

div.wrapperContent{
  width: 100%;
  max-width: 1225px;
  margin: 0 auto;
}
div.wrapperContent.devices{
  position: relative;
  top: -65%;
}



/* -main- */
main{

}
section#features{
  min-height: 100vh;
  max-height: 1000px;
}
div.wrapperFeatures{
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  flex-direction: row;
}
div.blockContent{
  overflow: hidden;
  height: 50vh;
  width: 50%;
  background-color: lightblue;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 3em;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  position: relative;
}
div.blockContent a{
  text-decoration: underline;
}
div.blockContent.lightgreen{
  background-color: lightgreen;
  overflow: hidden;
}
div.blockContent.lightseagreen{
  background-color: lightseagreen;
  overflow: hidden;
}
div.blockContent.lightcoral{
  background-color: lightcoral;
  overflow: hidden;
}
div.blockContent i{
  font-size: 15em;
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
}
div.blockContent h2, div.blockContent p{
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}
div.blockContent h2{
  margin: 0.85em 0;
  font-weight: 100;
}

div.wrapperWhy, div.wrapperAbout{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1em 0;
}
div.weLeft{
  padding: 2em;
  box-sizing: border-box;
}
div.pictureArea{
  background-color: #54d38a;
  border-radius: 5em;
  width: 10em;
  height: 10em;
  margin-top: 2em;
}
div.picureCut{
  width: 10em;
  height: 12em;
  border-radius: 0 0 5em 5em;
  overflow: hidden;
  position: absolute;
}
div.picureCut img{
  position: absolute;
  bottom: -1em;
  transition: all 0.3s ease-in-out;
}
div.picureCut img:hover{
  bottom: 0;
}
div.picureCut img.zweites{
  right: -5px;
}
div.names{
  position: absolute;
  width: 10em;
  margin-top: 0.5em;
}
div.namesWrapper{
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
}
div.names p{
  display: none;
  position: absolute;
  top: 0;
  font-size: 1.5em;
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
}
div.ourStory{
  padding: 2em;
  box-sizing: border-box;
}
div.ourStory h2{
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  font-size: 2em;
  margin-bottom: 0.5em;
}
div.ourStory p{
  font-family: 'Inconsolata', monospace;
}


div.wrapperAbout{
  align-items: baseline;
  justify-content: space-around;
  max-width: 1225px;
  margin: 0 auto;
}
div.versionHistory, div.feedback{
  padding: 1em;
  box-sizing: border-box;
}
div.feedback{
  width: 53%;
  max-width: 1000px;
}
div.versionHistory h2, div.feedback h2{
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  margin-bottom: 0.5em;
}
div.versionHistoryList ul li{
  list-style-position: inside;
  padding: 0.5em;
  font-family: 'Inconsolata', monospace;
}
div.versionHistoryList ul ul{
  padding-left: 1em;
}
div.versionHistoryList ul ul{
  list-style: none;
  color: #808080;
}
div.feedback p{
  font-family: 'Inconsolata', monospace;
}
form.feedback{
  display: flex;
  flex-direction: column;
}
form.feedback input, form.feedback textarea{
  background-color: #eee;
  border: none;
  border-radius: 0.5em;
  margin: 0.5em 0;
  padding: 1em;
  width: 100%;
}
form.feedback textarea{
  resize: vertical;
}

/* -feedback form- */
div#mail div.form_area{
  padding: 0.5em 0;
}
div#mail div.sidebyside{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
div#mail form input, div#mail form textarea{
  display: block;
  /*line-height: 1.4;
  font-weight: normal;*/
  font-family: 'Roboto', sans-serif;
  box-sizing: border-box;
  text-overflow: ellipsis;
  color: #000;
  background-color: #eee;
  padding: 1.25em;
  margin: 0.65em 0;
  resize: none;
  width: 100%;
  outline: 0;
  border: none;
  border-bottom: solid 0.2em transparent;
  /*border-top: none;
  border-right: none;
  border-left: solid 0.3em #000 ;
  border-bottom: solid 0.3em #000;*/
}
div#mail form input{
  width: 48%;
}
div#mail form input:focus, div#mail form textarea:focus{
  border-bottom: solid 0.2em #54d38a;
}
div#mail textarea::-webkit-scrollbar{
  width: 0.3em;
}
div#mail textarea::-webkit-scrollbar-track{}
div#mail textarea::-webkit-scrollbar-thumb{
  background-color: #54d38a;
}
div#mail textarea::-webkit-resizer{
  /* bil?*/
}
div#mail form textarea{
  height: 18em;
  text-overflow: inherit;
  resize: vertical;
  transition: none;
}
div#senden_area{
  text-align: right;
  margin: 0.5em 0;
}
button.submit{
  width: 4.5em;
  height: 4.5em;
  border-radius: 50%;
  border: 0;
  padding: 0.5em;
  text-align: center;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
button.submit:hover{
  background-color: #54d38a;
}
button.submit i{
  font-size: 2em;
  transition: color 0.25s ease-in-out;
}
button.submit:hover i#send_ico{
  color: #fff;
}
p#mail_leer{
  color: #cc0000;
}
p#mail_gesendet{
  color: #00cc00;
}

@media screen and (max-width: 420px){
  div#mail div.sidebyside{
    flex-direction: column;
  }
  div.feedback{
    width: 100%;
  }
  div#mail form input{
    width: 100%;
  }
}
/* Neues */
div#mail{
  position: relative;
  overflow: hidden;
}
div#mail button{
  overflow: hidden;
}

/*button*/
i#load_ico{
  display: none;
  position: absolute;
}
i#send_ico{
  transition: left 0.2s ease-in-out;
  left: 0;
  color: #54d38a;
}
div#mail button:hover i#send_ico{
  position: relative;
  animation: leave_left 1s 0.3s ease-in-out;
}
@keyframes leave_left {
  15%{left: -0.2em;}
  70%{left: 5em;}
  71%{left: -5em;}
  100%{left: 0em;}
}
button i.ico_show{
  display: inline-block!important;
}
button i#load_ico{
  animation: load_spin 1.2s cubic-bezier(0.95, 0.21, 0.65, 0.9) infinite;
}
@keyframes load_spin {
  0%{transform: rotate(0deg);}
  100%{transform: rotate(360deg);}
}


div#mail div.ant{
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 5;
  opacity: 0;
  transition: all 0.3s 1s ease-in-out;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
div#mail div.ant p#status{
  color: #000;
}

div.error_alert p#error_alert{
  color: #cc0000;
}

div#mail div.display{
  opacity: 1;
}
form#my_form{
  position: relative;
  z-index: 10;
  transition: all 0.01s 0.8s ease-in-out;
  opacity: 1;
}
form#my_form.senden{
  animation: senden 0.8s 0.5s ease-in;
  opacity: 0;
}
@keyframes senden {
  0%{top: 0;}
  25%{top: 1em;}
  100%{top: -38em;}
}




footer{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
  box-sizing: border-box;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

div.slogan{
  text-align: center;
  padding: 2em;
}
div.slogan img{
  max-width: 30em;
}








@media screen and (max-width: 750px) {
  div.wrapperNav{
    flex: 0;
  }
  div.contentLeft{
    width: 100%;
    left: auto;
  }
  div.appPreview{
    height: 60vh;
    width: 100%;
    top: 23vh;
  }
  div.phone{
    right: auto;
    margin-left: 18%;
  }
  body{
    font-size: 90%;
  }
  nav ul{
    margin-left: 0;
  }
}
@media screen and (max-width: 550px){
  div.blockContent{
    width: 100%;
  }
  section#features{
    max-height: none;
  }
}
@media screen and (max-width: 380px){
  div.wrapperWhy, div.wrapperAbout{
    flex-direction: column;
  }
}
@media screen and (max-width: 300px) {
  body{
    font-size: 80%;
  }
  div.phone{
    margin-left: 25%;
    margin-top: 2.5em;
  }
}
