@charset "UTF-8";


/* This is to display borders */
/** { border: 1px dotted red }*/

/* Include this, at the beginning of the CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/*
  App-wide common styles.
 */


html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
}
body {
  position: relative;
  background: white;
  width: 100%;
  height: 100%;
  font-family: 'Open Sans', sans-serif;
  color: #756657;
}
/* Reset some propertyies so that we can adjust spacing easily. */
h1, h2, h3, h4, p {
  padding: 0;
  margin: 0;
  line-height: 1;
}
h1 {
  font-size: 4.0em;
  padding-bottom: 26px;
  color: #663f1a;
  font-family: Georgia, serif;
}
h2 {
  font-size: 2.0em;
  padding-bottom: 16px;

}
/*h3 {
  font-size: 1.7em;
  padding-bottom: 14px;
}*/
h4 {
  font-size: 1.3em;
  padding-bottom: 12px;
  font-weight: 300;
  line-height: 1.3em;
  color: #206020;
}
p {
  font-size: 1.0em;
  padding-bottom: 12px;
  line-height: 1.8em;
  text-align: justify;
  font-family: serif;
}
li {
  line-height: 1.8em;
}
a {
  color: #676767;
}
a:hover {
  color: #7cc70c;
}
img {
  width: 100%;
  margin-bottom: 20px;
}
.container {
  display: block;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
/* Use this to make building blocks with consistent top and bottom paddings */
section {
  display: inline-block;
  clear: both;
  padding-top: 40px;
  padding-bottom: 40px;
  margin: 0 0 0 0;
}
footer {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #272727;
}
.clearfix {
  clear: both;
}


/*
  Top nav.
 */


nav.top-nav {
  width: 100%;
  line-height: 60px;
  height: 60px;
  clear: both;
  background: #272727;
}
.top-nav ul {
  display; block;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 auto;
}
.top-nav li {
  font-size: 1.0em;
  display: inline-block;
  text-align: middle;
  line-height: 60px;
  height: 60px;
}
.top-nav li a {
  text-decoration: none;
  color: white;
  display: block;
  transition: 0.4s color;
  padding-right: 20px;
  /*padding: 0 20px;*/
}
.top-nav a:hover {
  color: #a3f22e;
}
.top-nav a.active {
  color: #ffffff;
  cursor: default;
  font-weight: bold;
}


/*
  Page contents.
 */

.content.container > div {
  margin-bottom: 20px;
}

.cover-img {
  position: relative;
  height: 500px;
  text-align: center;
  background: url("http://i.imgur.com/d3vJa1d.jpg");
  background-size: cover;
  background-position: center;
  color: white;
}
.landing-text {
  position: absolute;
  bottom: 0;
  left: 10%;
  margin: 0 auto;
  padding-top: 20px;
}
.landing-text p {
  font-family: 'Open Sans', sans-serif;
}
.cover-img h1 {
  color: rgba(0,0,0,0.8);
  font-size: 5.0em;
  text-shadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;
  padding:0;
  margin:0;
}
.cover-img p {
  text-align: center;
  font-size: 1.4em;
}

.intro-col-3 {
  background: #e7e7e7;
  margin: 0 -1%;
}
.intro-col-3 .card {
  box-sizing: border-box;
  width: 31.33%;
  margin: 0 1%;
  float: left;
}
.intro-col-3 .card h4 {
}
.intro-col-3 .card button {
  margin-top: 10px;
}

.facts ul {
  margin-left: 20px;
  font-family: serif;
}

.facts a {
  display: block;
  padding-top: 16px;
}

img.classification {
  border: 4px inset #e7e7e7;
}
.species-gallery {
  background: #e7e7e7;
  display: inline-block;
  clear: both;
  padding: 10px 5px;
  margin: 0 0 0 0;
}
.species-gallery .card {
  box-sizing: border-box;
  width: 31.33%;
  padding: 20px;
  float: left;
  display: block;
  margin: 0 1% 20px 1%;
  border: 1px solid #333;
  background: white;
}
.species-gallery .card img {
}
.species-gallery .card .desc {
  height: 200px;
  overflow: auto;
}
.species-gallery .card .desc p {
}

.thumb-desc-list {
}
.thumb-desc-list li {
  list-style: none;
  display: block;
  clear: both;
  margin-bottom: 20px;
}
.thumb-desc-list li img {
  width: 20%;
  height: auto;
  float: left;
  margin-right: 20px;

}
.thumb-desc-list li .desc {
  width: 80%;
  height: auto;
  display: table-cell;
}


/*
  Non-Mobile First Method
*/


/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    .species-gallery .card {
    width: 48%;
  }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
  .container {
    width: 90%;
  }

  nav.top-nav {
  }
  .top-nav {
  }
  .top-nav ul {
  }
  .top-nav li {
    font-size: 0.9em;
  }
  .top-nav li a {
    padding-right: 8px;
  }
  .landing-text {
    left: 5%;
  }
  .cover-img {
    height: 400px;
  }
  .cover-img h1 {
    font-size: 4.0em;
  }
  .cover-img p {
    font-size: 1.2em;
  }

  .intro-col-3 .card {
    width: 98%;
    padding-bottom: 20px;
  }
  .intro-col-3 .card:nth-child(1),
  .intro-col-3 .card:nth-child(2),
  .intro-col-3 .card:last-child {
    padding-left: 0;
    padding-right: 0;
  }
  .intro-col-3 .card:last-child {
    padding-bottom: 0;
  }
  .intro-col-3 .card h4 {
  }

  .species-gallery .card {
    width: 98%;
  }
  .species-gallery .card img {
    width: 250px;
  }

  .thumb-desc-list {
  }
  .thumb-desc-list li {
  }
  .thumb-desc-list li img {
    width: 30%;
  }
  .thumb-desc-list li .desc {
    width: 70%;
    height: auto;
    display: inline;
  }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
  .container {
    width: 96%;
  }

  nav.top-nav {
  }
  .top-nav {
  }
  .top-nav ul {
  }
  .top-nav li {
    font-size: 0.8em;
  }
  .top-nav li a {
    padding-right: 2px;
  }
  .landing-text {
    left: 2%;
  }
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {
}
