@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.home {
  padding-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  section.home {
    padding-bottom: 20px;
  }
}
section.home .little-title {
  font-family: 'PT Serif', serif;
  font-size: 13px;
  color: #999999;
  line-height: 17px;
}
section.home .testaments {
  overflow: hidden;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  section.home .testaments {
    margin-bottom: 0;
  }
}
section.home .testaments > div {
  overflow: hidden;
  float: left;
  width: 50%;
  padding-right: 20px;
}
@media screen and (max-width: 1024px) {
  section.home .testaments > div {
    float: none;
    width: 100%;
    padding-right: 0;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1024px) {
  section.home .testaments > div:last-child {
    margin-bottom: 0;
  }
}
section.home .testaments > div ul {
  float: left;
  width: 50%;
  padding-left: 20px;
}
section.home .testaments > div ul li {
  padding-right: 10px;
  list-style-type: disc;
}
section.home .testaments > div ul li a {
  font-family: 'PT Serif', serif;
  font-size: 13px;
  color: #444444;
  line-height: 26px;
}
section.home .testaments .title {
  position: relative;
  padding-bottom: 35px;
  margin-bottom: 25px;
}
section.home .testaments .title h2 {
  font-weight: bold;
  font-size: 48px;
  line-height: 55px;
  color: #333333;
}
section.home .testaments .title p {
  margin-top: -7px;
  font-size: 16px;
  color: #333333;
  line-height: 18px;
}
section.home .testaments .title:after {
  position: absolute;
  content: '';
  display: block;
  bottom: 0;
  left: 0;
  height: 6px;
  width: 40px;
  background-color: #275683;
}
section.home .banner {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  justify-content: center;
  overflow: hidden;
}
