/** Space for all imported Fonts **/

@import url(http://fonts.googleapis.com/css?family=Raleway:100,300);

/** Main Style goes here**/
body {
  background-color: #269;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 0.2px, transparent 0.2px),
    linear-gradient(90deg, rgba(255,255,255,.07) 0.2px, transparent 0.2px),
    linear-gradient(rgba(255,255,255,.07) 0.2px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 0.2px, transparent 1px);
  background-size: 12px 12px, 12px 12px, 12px 12px, 12px 12px;
  font-family: 'Raleway', sans-serif;
  color: #fff;
}

h1{
  font-weight: 100;
  font-size: 4em;
  text-align: center;
  padding: 0.2em;
}
.steps{
  background-color: #fff;
  color: #424242;
  -webkit-transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),-webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.16),0px 2px 5px 0px rgba(0,0,0,0.23);
  height: auto;
  border-radius: 3px;
}

[data-screen]{
  display: none;
}

[data-screen].active{
  display: block;
}

.steps .content{
  padding: 1em;
}
nav{
  padding: 1em;
  padding-bottom: 0;
}

nav ol{
  text-align: center;
  display: none;
}

nav li{
  display: block;
  cursor: pointer;
  padding: 1em;
}

nav li:hover{
  background-color: #f5f5f5;
}

footer{
  padding: 1em;
  width: 100%;
  text-align: center;
}

header span{
  display: inline-block;
  width: 100%;
  text-align: center;
}

header{
  margin-bottom: 1em;
}

.fa-bars, .fa-times{
  font-size: 1.5em;
  width: 100%;
  text-align: right;
  margin-right: 1em;
}

.content a{
  color: #226699;
}

/** Place here all Media Queries and it's styles.**/

/** Default Style. Don't change. (320px) **/
@media screen and  (max-width: 20em) {}

/** Extra Small Devices, Phones (480px) **/
@media screen and (min-width : 30em) {

}

/** Small Screens, Tablets (720px) **/
@media screen and (min-width: 45em) {
  nav{
    width: 20%;
    max-width: 20%;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    max-height: 100%;
  }

  .steps{
    margin: 0 auto;
  }
  .steps .content{
    margin: 0;
    vertical-align: middle;
  }

  .fa-bars, .fa-times{
    display: none;
  }
  nav ol{
    display: block;
    height: 100%;
    max-height: 100%;
  }

  nav li{
    display: block;
  }

  .content{
    height: 100%;
    width: 79%;
    max-width: 79%;
    display: inline-block;
    font-size: 1.1em;
  }

}

/** Medium Devices, Desktops (992px)**/
@media screen and (min-width: 62em) {
  .steps{
    width: 80%;
  }
}


/** CSS for Printing **/
@media print {

}