html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'PT Sans Narrow', serif;
}

a {
  color: #eee;
  text-decoration: none;
}

.leftMenu {
  width: 20%;
  min-width: 210px;
  background: #363432;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  padding: 10px 0;
}
@media only screen and (max-width: 600px) {
  .leftMenu {
    bottom: initial;
    width: 100%;
    height: 60px;
    z-index: 2;
    overflow: hidden;
  }
}
.leftMenu ul {
  text-align: center;
}
@media only screen and (min-width: 600px) {
  .leftMenu ul {
    position: absolute;
    top: 50%;
    width: 100%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.leftMenu ul li {
  line-height: 2.3em;
  font-size: 1.5em;
}
.leftMenu ul .logo img {
  width: 80%;
}
@media only screen and (max-width: 600px) {
  .leftMenu ul .logo img {
    width: 100px;
  }
}

.mainContainer {
  padding-left: 20%;
  width: 100%;
}
@media only screen and (max-width: 1090px) {
  .mainContainer {
    padding-left: 210px;
  }
}
@media only screen and (max-width: 600px) {
  .mainContainer {
    padding-left: 0;
  }
}
.mainContainer .innerContainer {
  width: 100%;
}
.mainContainer .intro {
  min-height: 98vh;
  background: url("../media/steps.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
}
.mainContainer .intro .shader {
  background: rgba(130, 130, 130, 0.7);
  padding: 10px 10%;
  position: absolute;
  width: 100%;
  height: 100%;
}
.mainContainer .intro div {
  font-size: 1.2em;
  line-height: 1.1;
  position: absolute;
  width: 80%;
  color: #eee;
  top: 55%;
  -moz-transform: translateY(-55%);
  -ms-transform: translateY(-55%);
  -webkit-transform: translateY(-55%);
  transform: translateY(-55%);
}
.mainContainer .intro div p {
  margin-bottom: 1em;
}
@media only screen and (max-width: 900px) {
  .mainContainer .intro div {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 620px) {
  .mainContainer .intro div {
    font-size: 1em;
  }
}
.mainContainer .featured {
  background: #eee;
  color: #222;
}
.mainContainer .featured h1 {
  font-size: 2.4em;
  line-height: 2;
  padding: 0 40px;
  background: #363432;
  color: #eee;
}
.mainContainer .featured ul {
  padding: 20px 40px;
}
.mainContainer .featured ul:after {
  clear: both;
  content: '';
  display: block;
}
.mainContainer .featured ul li {
  clear: both;
}
@media only screen and (max-width: 600px) {
  .mainContainer .featured ul li {
    text-align: center;
  }
  .mainContainer .featured ul li h2 {
    clear: both;
  }
  .mainContainer .featured ul li p {
    clear: both;
  }
  .mainContainer .featured ul li img {
    float: none;
  }
}
.mainContainer .featured ul li a {
  color: #222;
}
.mainContainer .featured ul img {
  width: 140px;
  height: 140px;
  float: left;
  margin: 5px 20px 0 0;
}
.mainContainer .featured ul h2 {
  font-size: 2em;
}

.leftMenu .item-li:hover {
  background-color: #eee;
  -webkit-animation: fade-in 1s 1;
  /* Safari 4+ */
  -moz-animation: fade-in 1s 1;
  /* Fx 5+ */
  -o-animation: fade-in 1s 1;
  /* Opera 12+ */
  animation: fade-in 1s 1;
  animation-fill-mode:forwards;
  moz-animation-fill-mode:forwards;
  -webkit-animation-fill-mode: forwards;
}
.leftMenu .item-li:hover p {
  color: #363432;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}