/* CSS */
/*@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300italic,400,400italic,600");*/


body {
  color: #8e8e8e;
  font-size: 15pt;
  line-height: 1.25em;
  font-family: 'Arial', sans-serif;
  font-weight: 300;
  -webkit-text-size-adjust: none;
  margin: 0;
}

a, a:visited {
  text-decoration: none;
  /*color: inherit;*/
}

article {
  font-size: 80%;
  margin-bottom: 3em;
}

article>* {
  margin: .5em 0;
}

section {
  margin-top: 0;
  padding-top: 3em;
}

section p>a,
section h3>a,
section a:visited {
  /*color: inherit;*/
  font-weight: 600;
  text-decoration: underline;
  transition: color .75s;
}

section p>a:hover,
section h3>a:hover {
  color: #dae0e4;
}

nav a {
  border-bottom: 2px solid transparent;
  transition: border-bottom .75s;
}

nav a:hover {
  border-bottom: 2px solid #ccc;
}

h2 {
  border-bottom: 1px solid #ccc;
}

button {
  background: #dae0e4;
  border: 3px solid #dae0e4;
  border-radius: 5px;
  color: #686868;
  display: block;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 12pt;
  font-weight: 600;
  padding: .75em;
  text-transform: capitalize;
  transition: background-color .75s, border-color .75s;
}

button:hover {
  background: #f1f4f7;
  border: 3px solid #f1f4f7;
  cursor: pointer;
}

header {
  border-bottom: 2px solid #ccc;
}

.wrapper {
  margin: 0 auto 7em;
  max-width: 1000px;
  width: 90%;
  color: #000000;
}

/* nav */
nav ul {
  display: inline-block;
  list-style: none;
  padding: 0;
}

nav ul li {
  display: inline-block;
  padding-left: 0;
  padding-right: .5em;
  list-style: none;
}

nav ul li:last-of-type {
  padding-right: 0;
}


/* footer */
footer {
  background: #222;
  padding: 3em 10%;
}

footer a {
  color: inherit;
  transition: color .75s;
}

footer a:hover {
  color: #fff;
}

footer h4, footer h5 {
  text-transform: uppercase;
}

footer h4 {
  border-bottom: 1px solid #ccc;
}

footer h5 {
  margin: 0;
}

footer>div {
  box-sizing: border-box;
  display: inline-block;
  padding: 1em;
}

footer>div:first-of-type {
  width: 80%
}

footer>div:first-of-type div {
  width: 30%;
  float: left;
}

footer>div:nth-of-type(2) {
  float: right;
  width: 20%
}

footer>div:last-of-type {
  width: 100%;
  font-size: 80%
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  padding-left: 0;
  padding-right: .5em;
  list-style: none;
}


@media screen and (max-width: 1000px) {

  footer {
    padding: 2em 1%;
  }

  footer>div {
    display: block;
    padding: 1em;
  }

  footer>div:first-of-type {
    width: 100%
  }

  footer>div:first-of-type div {
    width: 100%;

  }

  footer>div:nth-of-type(2) {

    width: 100%
  }

}


/* special section classes */
.hero {
  text-align: center;
}

.collection img {
  margin: 0 1%;
  width: 25%;
  max-width:100px;
}

.collection img:first-of-type {
  margin-left: 0;
}

/* The side navigation menu */
.sidenav {
  height: 100%; /* 100% Full-height */
  /*width: 0;*/ /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: #222; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
  display: none;
}

/* The navigation menu links */
.sidenav a {
  padding: 8px 32px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #8e8e8e;
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* On smaller screens, where width is less than 450px, hide the sidenav */
@media screen and (max-width: 450px) {
  .sidenav {display: none;}
}
