/* Minimal CSS Reset */
html {box-sizing: border-box; font-size: 16px;}
*:before, *:after { box-sizing: inherit;}
body {font-family: Arial, Helvetica, sans-serif;}
body, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
ol, ul {list-style: none;}
p { margin: 0; line-height: 1.6em; font-size: 1em; padding-bottom: 1.5em;}
img {max-width: 100%; height: auto;}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, main, nav, section {
  display: block;margin: 0;padding: 0;
}
/* End reset */


/* Add a gray background color with some padding */

body {
  font-family: Arial, helvetica, sans-serif;
  padding: 20px;
  background: #feffff url(images/bg.jpg) top repeat-x;
}
.header {
  background-image: linear-gradient(to bottom, #82af3d, #5a7c2c);
  height: 150px;
}
.header h1 {
  padding: 30px 0 20px 30px;
  margin: 0;
}

.header h1 a { text-decoration: none; color: #fff; }
.header h1 a:hover { text-decoration: none; border-bottom: 1px solid #fff; color: #fff; }
.header h2 { font-size: 21px; padding: 0 0 0 30px; margin: 0; color: #eee; font-weight: 100;}
h2 { font-size: 21px; padding: 1em 0 1em 0; margin: 0; color: #000; font-weight: 100; letter-spacing: -1px;}

h3 {
height: 30px;
line-height: 30px;
font-weight: 100;
margin: 0;
padding: 1em 0 0 1.5em;
color: #000;
font-size: 1em;
}
.header-img {
  height: 300px;
  background: url(images/21060.png) no-repeat;
  background-size: cover;
  position: relative;
}

.content {
  margin-right: 310px;
  padding: 1em 1em 3em 1em;

}
.side {
  border: 1px solid #afbf9b;
  float: right;
  width: 300px;
  margin: 3em 1em 3em 0;
  background: #f1ffdf;
  padding-bottom: 3em;
}
  .side p { padding: 0 1em 1em 1em; color: #232323; }

  .side ul {
  padding: 0.5em 0 10px 1.5em;
  margin: 0;
  color: #aaa;
  list-style-type: none;
  }

  .side ul li {
  background: url(images/bullet.png) no-repeat center left;
  padding: 2px 0 2px 22px;
  margin: 0;
  }
  .side ul li a {  }

  .footer {
    margin-top: 3em;
    text-align: center;
  }

  .clearfix::after {
    content: "";
    display: table;
    clear: both;
  }

.wrap {border: 1px solid #ccc;
   margin: 0 auto;
   padding: 0;
   background: #fff;
   box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.20);
}

.nav {width: 300px;
  overflow: hidden;
  background-color: #f1ffdf;
  //float: right;
  border-bottom: 1px solid #afbf9b;
}

.nav a {
  display: block;
  color: #000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.nav a:hover {
  background-color: #6c9334;
  color: #fff;
}

.nav a.active {
  background-color: #6c9334;
  color: white;
}

.nav .icon {
  display: none;
}

@media screen and (max-width: 768px) {
  .content {margin-right: 0;}
  .side {
  margin: 0 0 2em 0;
  border: solid #afbf9b;
  border-width: 0 0 1px 0;
  }

  .nav, .side {width: 100%;}
  .nav a {
  float: left;}
  .nav a:not(:first-child) {display: none;}
  .nav a.icon {
    float: right;
    display: block;
  }

  .nav.responsive {position: relative;}
  .nav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .nav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}