/* #Site Styles
================================================== */
.hero {
  background: #45bec9 url(/images/hero-bkg.jpg);
  color: #fff;
  padding: 40px;
}

.hero a { color: #fff; }

.hero .logo {
  background: transparent url(/images/clojure-logo.png) 0 0 no-repeat;
  display: block;
  width: 200px;
  height: 61px;
  text-indent: -1000px;
  overflow: hidden;
  background-size: 200px;
}

.hero nav {
  position: absolute;
  right: 40px;
  top: 40px;
  font-size: 18px;
  font-weight: 700;
}

.hero nav a {
  display: inline-block;
  margin-left: 20px;
  position: relative;
}

nav a.active:after,
nav a:hover:after {
  content: "";
  display: block;
  height: 3px;
  background: #fff;
  position: absolute;
  bottom: -10px;
  width: 100%;
}

.hero .button {
  padding: 15px 50px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0;
  transition: all .2s;
  color: #fff;
  background: #273d44;
}

.hero .button i {
  font-size: 13px;
  margin-left: 5px;
}

.hero .button:hover {
  background: #000;
}
.text-center {
  text-align: center;
}

.page {
  margin-top: 40px;
  margin-bottom: 40px;
}
.page p {
  font-family: "PT Serif", Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.8;
}

.page .button {
  color: #273d44;
  border: 2px solid #dfe9ec;
  border-radius: 4px;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  margin: 20px 0;
  transition: all .2s;
}

.page .button i {
  font-size: 13px;
  margin-left: 5px;
}

.page .button:hover{
  background: #f7f7f7;
  /*border: 3px solid #273d44;*/
}

.post-author {
  text-transform: capitalize;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.margin-bottom {
  margin-bottom: 40px;
}

.one-third div {
  margin-left: 40px;
}

.half {
  width: 50%;
  float: left;
}

.half:last-child {
  text-align: right;
}

footer {
  background: #f7f7f7;
  padding: 40px;
}

footer .row {
  margin: 0;
  line-height: 43px;
}

.cognitect-logo {
  display: block;
  text-indent: -1000px;
  overflow: hidden;
  height: 43px;
  width: 150px;
  background: transparent url(/images/cognitect-logo.png) 0 0 no-repeat;
  background-size: 150px;
  float: left;
  margin-right: 15px;
}

.mobile-nav-link {
  display: none;
  right: 40px;
  top: 40px;
  position: absolute;
  color: #fff  !important;
  font-size: 30px;
}

/* #Media Queries
================================================== */

	/* Smaller than standard 960 (devices and browsers) */
	@media only screen and (max-width: 959px) {}

	/* Tablet Portrait size to standard 960 (devices and browsers) */
	@media only screen and (min-width: 768px) and (max-width: 959px) {}

	/* All Mobile Sizes (devices and browser) */
	@media only screen and (max-width: 767px) {}

	/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
	@media only screen and (min-width: 480px) and (max-width: 767px) {
    .one-third {
      border-top: 1px solid #ccc;
    }
    .one-third div {
      margin-left: 0;
    }
    nav {
      display: none;
    }
    .mobile-nav-link {
      display: inline-block;
    }
  }

	/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
	@media only screen and (max-width: 479px) {
    .hero {
      padding-bottom: 5px;
    }
    .hero .logo {
      height: 46px;
      width: 150px;
      background-size: 150px;
      margin-bottom: 40px;
    }
    .hero h1 {
      font-size: 36px;
    }
    .hero .button {
      font-size: 14px;
    }
    .one-third div {
      margin-left: 0;
    }
    nav {
      display: none;
    }
    .mobile-nav-link {
      display: inline-block;
      font-size: 24px;
    }
    .cognitect-logo {
      width: 100px;
      height: 29px;
      background-size: 100px;
    }
    footer .row {
      line-height: 29px;
    }
    pre {
      font-size: 12px;
    }
  }


