/* USAGE MEDIA QUERIES
  div {
    height: 390px;

    @include breakpoint(mobile) {
      margin-bottom: 15px;
    }
  }
*/
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
.listWithBannerLnk {
  list-style: none;
  margin-left: 0;
  margin-right: 0;
  padding: 0; }

.asideLnkBanner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  background-color: #f2f2f2;
  border: 1px solid #d3d3d3;
  padding: 10px 68px 10px 15px;
  margin-bottom: 20px;
  position: relative; }
  .asideLnkBanner .txtTitle {
    font-size: 20px;
    font-size: 2rem;
    line-height: 24px;
    line-height: 2.4rem;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    margin-bottom: 10px; }
  .asideLnkBanner .txtInfo {
    color: #ea3230;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
    line-height: 2rem; }
  .asideLnkBanner .data {
    margin-right: 25px; }
  .asideLnkBanner .arrow {
    position: absolute;
    right: 20px;
    -webkit-transition: 0.3s;
    -khtml-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%); }
  .asideLnkBanner:hover {
    text-decoration: none; }
    .asideLnkBanner:hover .txtTitle {
      text-decoration: underline; }
    .asideLnkBanner:hover .arrow {
      right: 10px; }
  .asideLnkBanner.small {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-right: 15px; }
    .asideLnkBanner.small .data {
      width: 100%;
      margin: 0 0 15px; }
    .asideLnkBanner.small .arrow {
      top: 52%; }
    .asideLnkBanner.small .txtTitle {
      margin-bottom: 5px; }

/*# sourceMappingURL=style-home.css.map */
