/* CSS CARDS material designed */

/* End defaults*/
.card {
	font-family: 'Karla', sans-serif;
    display: inline-block;
    vertical-align: top;
    width:320px;
    position: relative;
    overflow: hidden;
    margin: 10px;
    background: #FFF;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    color: #272727;
    border-radius: 2px;
  }
  .card .title {
	font-family: 'Palanquin', sans-serif;
    line-height: 48px;
    font-size: 24px;
    font-weight: bold;
	text-shadow:0 0 10px #000;

  }
  .card .content {
    padding: 20px;
    font-weight: 300;
    border-radius: 0 0 2px 2px;
	}
  .card p {
    margin: 0; 
  }
  .card .action {
    border-top: 1px solid rgba(160, 160, 160, 0.2);
    padding: 20px;
  }
  .card a {
    /*color: #ffab40;*/
    margin-right: 20px;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    /*text-transform: uppercase;*/
    text-decoration: underline;
	 font-size: 1.1em;
  }
  .card p { 	margin-bottom: 10px; font-family: 'Overpass', sans-serif; }
  .card .image {
    position: relative;
  }
  .card .image img {
    border-radius: 2px 2px 0 0;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
  }
  .card .image .title {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    color: #FFF;
  }