@import url('https://fonts.googleapis.com/css?family=Cuprum|Teko:300,400,500&subset=latin-ext');

/**/

body {
  font-family:'Cuprum',sans-serif;
}

header, nav, section, footer {
  display:block;
}

img {
  max-width:100%;
  max-height:100%;
}

a {
  text-decoration:none;
  color:inherit;
}

/**/

#wrapper {
  position:absolute;
  top:0;
  left:0;
  margin:0;
  padding:0;
  width:100%;
  height:100%;
}

header, nav, section, footer {
  width:100%;
}

header {
  height:200px;
  background-color:#fff;
}

.logo_text {
  display:block;
  position:absolute;
  text-transform:uppercase;
  top:40px;
  padding-left:200px;
  font-size:20px;
  font-weight:500;
  font-family:'Teko';
}

nav {
  height:50px;
  line-height:50px;
  
  background-color:#0084AB;
  border-top:1px solid;
  border-bottom:1px solid;
  border-color:#16C5F7;
  box-sizing:border-box;
  
  font-family:'Teko';
  color:#fff;
  font-size:24px;
  font-weight:300;
}

nav .content-width {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  
  -webkit-flex-flow: row wrap;
  justify-content: space-around;
}

nav a {
  
}

nav a:hover {
  text-decoration:underline;
}

section {
  padding:15px 0;
  min-height:350px;
}

section:nth-child(even) {
  background-color:#eee;
}

section:nth-child(odd) {
  background-color:#fff;
}

footer {
  height:80px;
  padding-top:10px;
  background-color:#AB5808;
  color:#fff;
  border-top:1px solid #FF9730;
  box-sizing:border-box;
  text-align:center;
}

#page-height {
  min-height:calc(100% - 280px);
}

.content-width {
  margin:0 auto;
  width:80%;
  min-width:800px;
  max-width:1500px;
  max-height:100%;
}