@import "compass/css3";
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
@import url(https://fonts.googleapis.com/css?family=Fjalla+One);
.badge {
  position: relative;
  width: 216px;
  height: 216px;
  display: inline-block;
  margin: 40px;
  background: #2b2b2b;
  border-radius: 8px;
  overflow: hidden;
}
.badge .title {
  font-family: "Montserrat", sans-serif !important;
  font-weight: bold;
  font-size: 1.7em;
  position: absolute;
  top: -28px;
  border-radius: 8px 8px 0 0;
  text-align: center;
  width: 100%;
  padding: 20px 0;
}
.badge .subtitle {
  position: absolute;
  font-family: "Fjalla One", sans-serif !important;
  font-size: 1.8em;
  width: 100%;
  text-align: center;
  color: white;
  position: absolute;
  top: 115px;
  transition: all 0.3s;
}
.badge .subtitle:after {
  content: "★";
  display: block;
  font-size: 1.4em;
  position: relative;
  margin: 12px 0 0;
  transition: all 0.3s;
}
.badge:hover .subtitle:after {
  margin: -5px 0 0;
}
.badge:hover .subtitle {
  top: 100px;
}
.red .title {
  background: #dc514e;
}
.red .subtitle:after {
  color: white;
}
.red:hover .subtitle:after {
  color: #dc514e;
}
.green .title {
  background: #2ecc71;
}
.green .subtitle:after {
  color: white;
}
.green:hover .subtitle:after {
  color: #2ecc71;
}
.gray .title {
  background: #95a5a6;
}
.gray .subtitle:after {
  color: white;
}
.gray:hover .subtitle:after {
  color: #95a5a6;
}
.yellow .title {
  background: #f1c40f;
}
.yellow .subtitle:after {
  color: white;
}
.yellow:hover .subtitle:after {
  color: #f1c40f;
}
.blue .title {
  background: #3498db;
}
.blue .subtitle:after {
  color: white;
}
.blue:hover .subtitle:after {
  color: #3498db;
}
