@charset "UTF-8";
/**
 *  Folha de estilos principal.
 *
 *  @package    main.scss
 *  @category   Website Custom
 *  @author     Bruno Lima <brunolima@phocus.com.br>
 *  @copyright  Phocus Interact
 *  @link       /scss/main.scss
 *  @since      1.0.0
 */
/**
 *  Variáveis e mixins SASS/Compass
 *
 *  @package    configurations.scss
 *  @category   Website Custom
 *  @author     Bruno Lima <brunolima@phocus.com.br>
 *  @copyright  Phocus Interact
 *  @link       /scss/configurations.scss
 */
/* Importando Compass Mixins  */
@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700);
@import url(https://fonts.googleapis.com/css?family=EB+Garamond);
/* Global Vars */
/* Clears the floater elements for a correct alignment */
/* Shows a element without changing the 'display' property */
/* Hides a element without changing the 'display' property */
/* Creates a stylesheets for placeholders */
/* Creates a pseudo element for vertical align of its sibling */
section.chapter-list .testament {
  margin-bottom: 10px;
  font-family: 'PT Serif', serif;
  font-size: 13px;
  color: #999999;
  line-height: 17px;
}
section.chapter-list h1 {
  position: relative;
  font-size: 48px;
  font-weight: bold;
  color: #333333;
  line-height: 55px;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
section.chapter-list h1:after {
  content: '';
  display: block;
  position: absolute;
  height: 6px;
  width: 40px;
  bottom: 0;
  left: 0;
  background-color: #275683;
}
section.chapter-list ul {
  margin-left: -20px;
  margin-bottom: 40px;
}
section.chapter-list ul:after {
  clear: both;
  content: '';
  display: block;
}
@media screen and (max-width: 1024px) {
  section.chapter-list ul {
    margin-left: 0;
  }
}
section.chapter-list ul li {
  float: left;
  display: table;
  width: 322px;
  height: 66px;
  margin-left: 20px;
  margin-bottom: 20px;
  border-radius: 3px;
  border-bottom: 1px solid #275683;
  -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  -moz-transition-duration: 100ms;
  -o-transition-duration: 100ms;
  -webkit-transition-duration: 100ms;
  transition-duration: 100ms;
}
@media screen and (max-width: 1024px) {
  section.chapter-list ul li {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}
section.chapter-list ul li > a {
  display: table-cell;
  vertical-align: middle;
  padding: 0 20px;
  text-decoration: none;
}
section.chapter-list ul li > a h3 {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  font-size: 19px;
  color: #333333;
  line-height: 22px;
}
section.chapter-list ul li > a p {
  display: inline-block;
  vertical-align: middle;
  width: 80%;
  font-family: 'PT Serif', serif;
  font-size: 13px;
  color: #666666;
  line-height: 15px;
}
section.chapter-list ul li:hover {
  -moz-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}
