html,body{
  margin: 0px;
  min-height: 100%;
  font-family: 'Roboto', sans-serif;
}

.templates{
  display: none;
}

.btn{
  font-weight: 500 !important;
}
.btn:active, .btn:focus{
  color: #444444;
  text-decoration: none;
}

.landingpage-header{
  width: 100%;
  height: 100vh;
  background: #00bcd4;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1000;
}

.landingpage-header-panel{
  max-width: 1230px;
  margin: auto;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 5%;
  padding: 0px 15px;
  animation: jumpin 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation-delay: -0.8s;
}
a:hover{
  text-decoration: none !important;
}
.landingpage-header-logo{
  line-height: 32px;
  font-size: 24px;
  float: left;
}
.landingpage-header-nav{
  float: right;
}

.landingpage-header-content{
  max-width: 880px;
  margin: auto;
  text-align: center;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 22%;
}

@media (max-height: 800px){
  .landingpage-header-content{
    top: 15%;
  }
}

.landingpage-header-content h1{
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.81);
  font-size: 48px;
  animation: jumpin 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation-delay: -0.8s;
}
.landingpage-header-content h2{
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  line-height: 32px;
  font-weight: 300;
  color: #fff;
  animation: jumpin 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation-delay: -0.6s;
}
.landingpage-header-content-cta{
  margin: auto;
  animation: jumpin 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation-delay: -0.4s;
}
.landingpage-header-content-cta .btn{
  margin-top: 40px;
  font-size: 20px !important;
}

.landingpage-thumbnail{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  height: 35%;
  width: auto;
  margin: auto;
  opacity: 0;
}
.landingpage-thumbnail.loaded{
  opacity: 1;
  /*animation: jumpin 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);*/
  animation-delay: -0.8s;
  box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.3);
}
.landingpage-thumbnail.small{
  height: 28%;
  animation-delay: -0.4s;
}
.landingpage-thumbnail.left{
  left: 0px;
  right: 30%;
}
.landingpage-thumbnail.right{
  left: 30%;
  right: 0px;
}


.jumpin{
  animation: jumpin 0.6s;
}
@keyframes jumpin{
  0%{
    height: 0px;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0.5;
  }
  50%{
    height: 0px;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0.5;
  }
  100%{
    height: auto;
    overflow: hidden;
    transform: translateY(0px);
    opacity: 1;
  }
}


.landingpage-sandbox{
  width: 100%;
  position: relative;
  min-height: 50vh;
  overflow: hidden;
}
.landingpage-sandbox-loading{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  font-size: 24px;
  line-height: 28px;
  margin: auto;
  display: inline-block;
  height: 28px;
  text-align: center;
}
.landingpage-sandbox-loaded{
  width: 100%;
  height: 100%;
}
.landingpage-sandbox-loaded .body-gridsystem{
  margin: 48px auto;
}

.landingpage-footer{
  background-color: #00838f;
  position: relative;
  z-index: 2000;
}
.landingpage-footer-inner{
  max-width: 1110px;
  margin: auto;
  padding: 30px;
  color: #fff;
  font-size: 18px;
}


@media (max-width: 478px) {
  .landingpage-header-logo {
  	font-size: 12px;
  }

  .landingpage-header-content h1 {
  	font-size: 30px;
  }
  .landingpage-header-content h2 {
  	font-size: 16px;
  	line-height: 20px;
  }
  .landingpage-header-content-cta .btn {
  	margin-top: 15px;
  }
  .landingpage-thumbnail {
  	max-height: 100px;
  }
}
