@font-face {
    font-family: NexaBold;
    src: url(/fonts/Nexa_Bold.otf);
}

@font-face{
    font-family: NexaLight;
    src: url(/fonts/Nexa_Light.otf);
}

body{
    margin: 0;
    padding: 0;

}

p{font-family:  "Helvetica neue"; }

html{
    scroll-behavior: smooth;
    overflow-x: hidden;
}

input {
  position: fixed;
  opacity: 0;
}

.logo img{
    display: grid;
    align-content: center;
    justify-content: center;
    align-items: center;
      width: 20vw;
}

#menu{
    font-family: "NexaBold", sans-serif;
}

nav:active{color: blue;}

label {
  position: absolute;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}
label::before {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(51, 51, 51, .95);
  content: '';
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
label .burger {
  position: fixed;
  top: 2.5em;
  right: 1em;
  z-index: 3;
  width: 2em;
  height: 2em;
  margin: 0;
  padding: 0;
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
label .burger::before,
label .burger .bar, label .burger::after {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 12%;
    border-radius: 50px;
  background: red;
  content: '';
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
label .burger .bar {
  top: 44%;
}
label .burger::before {
  top: 0;
  transform-origin: top left;
}
label .burger::after {
  bottom: 0;
  transform-origin: bottom left;
}

input:focus + label .burger,
label:hover .burger {
  opacity: .75;
    color: red;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
  transform: translate3d(0, 0, 0);
  /* material acceleration */
  transform: translateX(-100%);
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
nav::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 50vw;
  background: #191919;
  content: '';
  transform: skewX(15deg) translateX(-100%);
  transform-origin: bottom left;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

nav a {
  margin: .5em 0;
  padding: .2em 2em;
  font-size: 1.2em;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transform: translateX(-100%);
  transform: translateX(-100%);
  transition: color .15s, transform .5s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
nav a:nth-child(1) {
  transition-delay: 0s, 100ms;
}
nav a:nth-child(2) {
  transition-delay: 0s, 150ms;
}
nav a:nth-child(3) {
  transition-delay: 0s, 200ms;
}
nav a:nth-child(4) {
  transition-delay: 0s, 250ms;
}
nav a:nth-child(5) {
  transition-delay: 0s, 300ms;
}
nav a:nth-child(6) {
  transition-delay: 0s, 350ms;
}
nav a:hover, nav a:focus {
  color: red;
}

main {
  overflow: hidden;
}
main .content {
  transform: translate3d(0, 0, 0);
  /* material acceleration */
  will-change: transform, filter;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

[id="navcheck"]:checked + label::before {
  opacity: 1;
  pointer-events: auto;
}
[id="navcheck"]:checked + label .burger::before, [id="navcheck"]:checked + label .burger::after {
  width: 141.42%;
}
[id="navcheck"]:checked + label .burger::before {
  transform: rotate(45deg) translateY(-50%);
}
[id="navcheck"]:checked + label .burger::after {
  transform: rotate(-45deg) translateY(50%);
}
[id="navcheck"]:checked + label .burger .bar {
  transform: scale(0.1);
}
[id="navcheck"]:checked ~ nav {
  transform: translateX(0);
}
[id="navcheck"]:checked ~ nav::before {
  transform: skewX(15deg) translateX(0);
}
[id="navcheck"]:checked ~ nav a {
  transform: translateX(0);
}
[id="navcheck"]:checked ~ main .content {
  transform: translateX(3em);
  transform-origin: left center;
  -webkit-filter: blur(2px);
  filter: blur(2px);
  /* quite laggy :S */
}

.mockup{
    width: 100vw;
    height: 100vh;
    margin-bottom: 0;
/*    background-color: blue;*/
}


.mockupimg{
    background-image: url(img/electromagneticthumb.jpg);
    background-size: cover;
    background-position: top center;
    width: 100%;
    height: 100%;
}

#red{   color: #EF7215; font-weight: bold;}

.about::before{padding-top: 1em;}

.about{
    
      width: 100vw;
/*    height: 100vh;*/
/*    background-image: url(img/onepot_bg_v2.jpg);*/
    background-repeat: none;
    background-size: cover;
    background-position: bottom center;
}

.about h2{ 
    margin: 0;
    color: #f37325;
    font-family: "Helvetica neue";
    padding: 1em;

    
    display: grid;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
}

.about p{
    color: #191919;
    font-family: "Helvetica neue";
    line-height: 1.5em;
    width: 60%;
    padding-left: 20vw;
    padding-right: 20vw;
    padding-bottom: 10vh;
    
     display: grid;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
}


.missionStatement{
    width: 100vw;
    font-family: "Helvetica neue";
    line-height: 1.5em;
    width: 60%;
    padding-left: 20vw;
    padding-right: 20vw;
    padding-bottom: 10vh;
    
     display: grid;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
}


.missionStatement h2{
    color: #f37325;
}

.unvalidatedProblem{
     width: 100vw;
    font-family: "Helvetica neue";
    padding-bottom: 10vh;
    background-position: center;
     display: grid;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
   
    
}

.unvalidatedProblem ul{list-style-type: none; padding-left: 31vw; }
.unvalidatedProblem li{
    line-height: 2em;
    
}
.unvalidatedProblem h2{
     color: #f37325;
}




.personas{
    margin-bottom: 0;  
     display: grid;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
}

.personas img{
    width: 100%;
}

.research{
    width: 100vw;
    
    
    margin: 0;
    font-family: "Helvetica neue";

    
    display: grid;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
}

.research h2{ color: #f37325;}
.research p{ 
    width: 60%; 
    font-family: "Helvetica neue";
    line-height: 1.5em; 
}

.research img{
    width: 100%;
/*    height: 75%;*/
}

.branding{ 
    width: 100vw;
     display: grid;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
}

.branding h2{color: #f37325; font-family: "Helvetica neue";}

.branding img{
    width: 100%;
}

.personas h2{color: #f37325; font-family: "Helvetica neue";}

.iaMap{
     width: 100vw;
     display: grid;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
}
.iaMap h2{
    color: #f37325;
    font-family: "Helvetica neue";
}
.iaMap img{
    width: 75%;
    
}

.iaMap ul{ font-family:  "Helvetica neue"; line-height: 3em; list-style-type: circle; list-style-color: red; }

ul li::before{ color: red; }

.wireframes{
     width: 100vw;
     display: grid;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
}
#orange{ color: #EF7215;  font-weight: bold;}
.wireframes h2{
    color: #f37325;
    font-family: "Helvetica neue";
}

.wireframes p{ 
    width: 60%; 
    font-family: "Helvetica neue";
    line-height: 1.5em;
    width: 60%; 
}

.wireframes img{
    width: 100%;
}

.onboarding{
     width: 100vw;
     display: grid;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
}

.trackbags{
     width: 100vw;
     display: grid;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
}

.trackbags h2{
    color: #f37325;
    font-family: "Helvetica neue";
}

.trackbags p{ 
    width: 60%; 
    font-family: "Helvetica neue";
    line-height: 1.5em;
    width: 60%; 
}

.trackbags img{
    width: 100%;
}

.finalscreens{
     width: 100vw;
     display: grid;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
}
.finalscreens img{
    width: 100%;
}

.finalscreens h2{
    color: #f37325;
    font-family: "Helvetica neue";
}

#green{color: #39B54A; font-weight: 800;}
.button{
     width: 100vw;
     display: grid;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
    padding-bottom: 10vh;
    padding-top: 10vh;
    
}

.button btn{ 
    color: red;
background-color: #191919;
}
.back2top{border-color: #191919; border-width: medium; font-family: "Helvetica neue"; padding: 1em; border-radius: 2em;}
.button a{text-decoration: none; color: red; }

.onboarding h2{
    color: darkcyan;
    font-family: "Helvetica neue";
}

.onboarding img{
    width: 100%;
}

footer{
    max-width:        100vw;
/*    padding-top:      3vh;*/
/*    padding-bottom:   1vh;*/
    display:          grid;
    justify-content:  center;
    justify-self:     center;
    align-items:      center;
    
    border-top:       1px solid red;
    background-color: #1a1a1a;
    color:            white;
    font-family:      "Nexa Light", sans-serif;
    font-size: 1em;
}

.footer{   margin-top: 5vh;}
footer ul{ padding:    20px;}
footer li{ display:    inline; text-decoration: none;}

footer a{
    text-decoration: none; color: white;
}

.fa-linkedin  {color: red;}
.fa-instagram {color: red; padding-left: 10px;}
.fa-vimeo     {color: red; padding-left: 10px; }
.fa-file-pdf-o{color: red; padding-left: 10px;}
.fa-linkedin:hover   {color: white;}
.fa-instagram:hover  {color: white;}
.fa-vimeo:hover      {color: white; }
.fa-file-pdf-o:hover {color: white;}

/*
@media (min-width: 440px) {
    .personas img{
        width: 50%;
    }
}
*/
