@charset "utf-8";
/* CSS Document */

*, 
*:before, 
*:after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.container { width: 1000px; background-color: red; margin: 0 200px 0 auto }

header ul { float: right }
header li { display: inline; float: left }
img.logo { float: left }
nav { width: 100%; margin: 0 auto }


/* Section */

section.stretch { float: left; height: 1500px; width: 100%; z-index: 9; position: absolute }
section.stretch p{
	font-family: sans-serif;
	font-size: 30px;
	color: #969696;
	text-align: center;
	position: relative;
	margin-top: 250px }
section.stretch p.bottom { top: 100%; padding-bottom: 1em }


/* Header */

header { float: left; width: 100%; position: fixed; z-index: 200 }
header li a {
	color: white;
	text-decoration: none;
  font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
  font-size: 12px;
	letter-spacing: 1px;
/*  font-weight: bold;*/
  padding: 0 10px;
  height: 30px;
  border: 2px solid transparent;
  border-radius: 12px;
  display: inline-block;
  text-align: center;
  line-height: 27px;
  transition: all .2s;
	}
header a.active, header a:hover { color: white; background-color: #1e6c37; border-color: white; /*  box-shadow: 5px 5px 5px rgba(0,0,0,0.5);*/ }
header li { margin-right: 10px }

	
/* header large */

header.large { background: linear-gradient(to bottom, black, rgba(255, 0, 0, 0)); height: 200px }
header.large img { margin-top: 30px; width: 25%; max-width: 400px; height: auto }
header.large li { margin-top: 40px }


/* header small */

header.small { background-color: #dde7cc /*#39393c*/; height: 50px }
header.small img { margin-top: 10px; width: 140px; padding: 0 20px 10px; height: auto; background-color: #dde7cc; border-radius: 0 0 20px 20px }
header.small li { margin-top: 10px }
header.small li a { color: black }
header.small li a:hover { color: white }


/* Transitions */

header, nav, a, img, li {
	transition: .3s all;
	-moz-transition: .3s all;
	-webkit-transition: .3s all;
	-o-transition: .3s all }
