body {
  background: url(../img/bg.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.trans {
  transition: all 0.2s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
/* transitions */
body {
  padding-top: 4.5vh;
}
.fri-card-wrapper {
  transform: scale(0.95);
}
.fri-card {
  transition: all 0.2s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  cursor: pointer;
  transform: scale(0.95);
}
.fri-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 17px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .fri-card .card-body {
    min-height: 275px;
  }
}
@media (min-width: 992px) {
  .fri-card .card-body {
    min-height: 310px;
  }
}
.fri-card ul {
  list-style: none;
}
.fri-card li:before {
  font-family: 'FontAwesome';
  content: '\f00c';
  margin: 0 5px 0 -35px;
}
.fri-card .fri-openh-label {
  width: 75px;
  display: inline-block;
}
.card-caption-floating {
  position: absolute;
  background-color: #FF7212;
  margin-top: 25px;
  padding: 5px 15px;
  color: white;
  font-size: 32px;
}
.fri-card>a {
  text-decoration: none;
}