body {
	background-color: #fff;
	color: #777;
	font: normal 17px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
 padding: 20px
}

p {
	line-height: 20px;
	margin-bottom: 1px;
 padding: 10px
}

h1 {

	font-weight: bold;
	color: #000000; /* #444 grey #ec3232 red*/
	font-size: 30px;
	margin-bottom: 5px;
}

h2 {
	font-weight: 300;
	color: #000000;
	font-size: 55px;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 20px;
}

h3 {
	font-size: 25px;
	color: #000000;
	font-weight: bold;
	text-transform: auto;
	text-align: center;
	margin-bottom: 20px;
}

h4 {
	font-size: 24px;
	color: #000000;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 20px;
}

h5 {
	font-size: 19px;
	color: #000000;
	font-weight: bold;
	text-transform: auto;
}

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

a:hover {
	color: #20B2AA;
}

strong {
	font-weight: bold;
}

small {
	font-size: 13px;
	color: #777;
	font-style: italic;
}

.clear {
	clear: both;
}

.wrapper {
	margin: 0 auto;
	padding: 0 10px;
	width: 940px;
}




header {
	height: 100px;
}

header h1 {
	float: left;
	margin-top: 32px;
}

header h1 .color {
	color: #02b8dd;
}

header nav {
	float: right;
}

header nav ul li {
	float: left;
	display: inline-block;
	margin-top: 25px;
}

header nav ul li a {
	color: #000000; /* This changes the link colors*/
	text-transform: uppercase;
	font-weight: bold;
	display: block;
	margin-right: 20px;
}



#hero {
	height: 350px;
	padding-top: 1px;
	background: #e8eced url('../images/hero.jpg') no-repeat center;
}

#features ul {
	margin: 0;
} 

#features ul  {
	width: 100%;
	float: left;
	margin-right: 10px;
	text-align: left;
} 

#features ul.feature-1 {
	background: url('../images/features-icon-1.png') no-repeat top center;
}
#features ul .feature-2 {
	background: url('../images/features-icon-2.png') no-repeat top center;
}
#features ul.feature-3 {
	background: url('../images/features-icon-1.png') no-repeat top center;
}


#footer-content {
	padding: 30px 0;
	text-align: center;
}

#footer-content article {
	width: 31%;
	height: 270px;
	float: left;
	background-color: #f5f5f5;
          margin-right: 15px;
}

<-------logo --------->
#content {
    position: relative;
}
#content img {
    position: absolute;
    top: 20px;
    left: 30px;
}

#logo {
    position: relative;
}
#logo img {
    position: absolute;
    top:-10px;
    right:  30px;
}



#image {
	height: 600px;
	padding-top: 1px;
	background: #e8eced url('../images/hero.jpg') /* #e8eced */
}
 
/*#prd {
	height: 600px;
	padding-top: 1px;
	background: #e8eced 
} */
input[type=text], select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=submit] {
    position: relative;
    width: 100%;
    background-color: #444;
    color: white;
    padding: 10px 2px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #999;
}

#prd {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}

#squaredThree {
  width: 20px;
  position: relative;
  margin: 20px auto;
  label {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(top, #222 0%, #45484d 100%);
    border-radius: 4px;
    box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,.4);
    &:after {
      content: '';
      width: 9px;
      height: 5px;
      position: absolute;
      top: 4px;
      left: 4px;
      border: 3px solid #fcfff4;
      border-top: none;
      border-right: none;
      background: transparent;
      opacity: 0;
      transform: rotate(-45deg);
    }
    &:hover::after {
      opacity: 0.3;
    }
  }
  input[type=checkbox] {
    visibility: hidden;
    &:checked + label:after {
      opacity: 1;
    }    
  }
}
@import compass

// These styles are not pertinent to the demo. They are
// merely aesthetic.
body
  background: lightgray
section
  background: white
  width: 80%
  padding: 1em
  overflow: auto
  min-width: 30em
  max-width: 50em
  margin: auto
h1
  font-size: 3em
  margin-bottom: 0.5em
  font-family: sans-serif
code
  font-family: monospace
  font-size: 0.85em
  background: hsla(0, 0, 100, 0.7)
  border: hsla(0, 0, 0, 0.3) solid 1px
  padding: 0.1em
  vertical-align: baseline
    

// Default div styling
div
  // These styles are for aesthetics only.
  font-size: 18px
  line-height: 1.3em
  vertical-align: top
  margin-bottom: 1em
  border-radius: 0.5em
  padding: 1em
  // This insures everything up to the border
  // is included in the width
  box-sizing: border-box
  // The default width of my divs
  width: 45%
  
// Inline-block aligned elements
.ib
  // These are aesthetic styles. Red = bad
  background: salmon
  border: solid red 1px
  // Overrides default display (which would be block)
  display: inline-block
    
// Float aligned elements
.float
  // These are aesthetic styles. Red = bad
  background: lightgreen
  border: solid green 1px
  // Floated for positioning
  float: left
    
// These elements are intended to be half the width of their 
// parents
.half
  width: 50%

 .center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}   
