@font-face{ font-family:'lightWebFont';
    src:url('../fonts/opensans-light-webfont.ttf');
    src:url('../fonts/opensans-light-webfont.eot') format('eot'),
    url('../fonts/opensans-light-webfont.woff') format('woff'),
    url('../fonts/opensans-light-webfont.ttf') format('truetype'),
    url('../fonts/opensans-light-webfont.svg') format('svg');
    font-weight:normal;
	font-style:normal;
}

@import url('https://fonts.googleapis.com/css?family=Orbitron');

* {
  -webkit-box-sizing: border-box !important;
	-moz-box-sizing: border-box !important;
	-ms-box-sizing: border-box !important;
	box-sizing: border-box !important;
}

html {
  min-height: 100%;
  height: 100%
}

body {
  font-family:'lightWebFont';
  min-height: 100%;
  height: 100%;
}

#content {
  width: 100%;
  height: 100%;
}

#content > header {
  width: 100%;
  margin: 20px 0
}

#content > header > nav {
}

#content > header > nav > li {
  padding: 0 20px;
  text-align: center;
  list-style-type: none;
}

#content > header > nav > li > a {
  padding: 0 10px;
  text-decoration: none;
  font-family: 'lightWebFont';
  color: rgb(80,80,80);
  font-size: 25px;
}

#content > header > #logo-container {
  width: 100%;
}

#content > header > #logo-container > a {
  display: block;
  width: 50%;
  margin: 0 auto;
}

#content > header > #logo-container > a > img {
  width: 100%;
}

/* HEADER - large screens */

@media (min-width: 768px) {
  #content > header {
    position: fixed;
    overflow: hidden;
    /* width: 90%; */
    width: 1200px;
    top: 10px;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin: 0 auto 50px auto;
    background: #FFF;
  }
  
  #content > header > nav {
    float: right;
    padding: 35px 0 0 0;
  }
  
  #content > header > nav > li {
    padding: 0 0px;
    display: inline-block;
  }
  
  #content > header > nav > li > a {
    text-decoration: none;
    font-family: 'lightWebFont';
    color: rgb(80,80,80);
    font-size: 16px;
  }
  
  #content > header > #logo-container {
    width: auto;
    float: left;
  }
  
  #content > header > #logo-container > a {
    display: block;
    width: 180px;
  }
  
  #content > header > #logo-container > a > img {
    width: 100%;
  }
}



/* CONTENT - small screens */

#content > #main {
  margin-top: 150px;
}

#content > #main > section#demos {
  width: 80%;
  margin: 0 auto;
}

#content > #main > section#demos > a {
  display: block;
  text-decoration: none;
}

#content > #main > section#demos > a > .demo {
  width: 100%;
  border: 2px solid rgb(235,235,235);
  margin: 10% 0;
}

#content > #main > section#demos > a > .demo:hover {
  border: 2px solid rgb(215,215,215);
}

#content > #main > section#demos > a > .demo > img {
  width: 100%;
  /*background: rgb(100,100,100);*/
  /*border: 2px solid rgb(80,80,80);*/
}

#content > #main > section#demos > a > .demo > .info {
  padding: 15px 15px;
  background: rgb(240,240,240);
  border-top: 2px solid rgb(235,235,235);
}

#content > #main > section#demos > a > .demo > .info > h2 {
  color: rgb(80,80,80);
  font-size: 22px;
  text-align: center;
}

#content > #main > section#demos > a > .demo > .info > p {
  color: rgb(100,100,100);
  font-size: 18px;
  text-align: left;
}

/* CONTENT - large screens*/

@media (min-width: 768px) {
  
  #content > #main {
    min-height: 75%;
  }
  
  #content > #main > section#demos {
    overflow: hidden;
    width: 90%;
    margin: 50px auto;
  }
  
  #content > #main > section#demos > a > .demo {
    width: 30%;
    float: left;
    /*padding: 50px;*/
    margin: 0 1%;
    height: 500px;
  }
  
  #content > #main > section#demos > a > .demo > img {
    width: 100%;
    /*height: 400px;*/
  }
  
  #content > #main > section#demos > a > .demo > .info {
    padding: 20px 20px;
    background: rgba(0,103,172,0.05);
    border-top: 2px solid rgb(235,235,235);
  }
  
  #content > #main > section#demos > a > .demo > .info > h2 {
    margin: 0;
    color: rgb(80,80,80);
    font-size: 22px;
    text-align: center;
  }
  
  #content > #main > section#demos > a > .demo > .info > p {
    color: rgb(100,100,100);
    font-size: 18px;
    text-align: left;
  }
  
}

@media (min-width: 1000px) {
  #content > #main > section#demos {
    width: 60%;
    margin : 0 auto;
  }
}

@media (min-width: 1200px) {
  #content > #main > section#demos {
    width: 50%;
    margin : 0 auto;
  }
}

@media (min-width: 1400px) {
  #content > #main > section#demos {
    width: 45%;
    margin : 0 auto;
  }
}


/* FOOTER */
#content > #copyright {
  width: 60%;
  margin: 0 auto;
  color: rgb(80,80,80);
  padding: 20px 0;
}