.special-body {
  /* Created with https://www.css-gradient.com #23EC55,*/
  background: #23EC55;
  background: -webkit-radial-gradient(top right, #1F8A70, #2D51C1);
  background: -moz-radial-gradient(top right, #1F8A70, #2D51C1);
  background: radial-gradient(to bottom left, #1F8A70, #2D51C1);
}
.special-wrapper {
  margin: 0vh;
  padding: 30px;
}
.special-card {
  border: none;
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
  border-radius: 20px;
  min-height: 180px;
  min-width:50px;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .special-card {
    min-height: 200px;
  }
}
@media (max-width: 420px) {
  .special-card {
    min-height: 100px;
  }
}
.special-card.card-has-bg {
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  background-size: 120%;
  background-repeat: no-repeat;
  background-position: center center;
}
.special-card.card-has-bg:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: inherit;
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
.special-card.card-has-bg:hover {
  transform: scale(0.98);
  box-shadow: 0 0 5px -2px rgba(0, 0, 0, 0.3);
  background-size: 130%;
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
}
.special-card.card-has-bg:hover .card-img-overlay {
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  background: #234f6d;
  background: linear-gradient(0deg, rgba(4, 69, 114, 0.5) 0%, #044572 100%);
}
.special-card .card-footer {
  background: none;
  border-top: none;
}
.special-card .card-footer .media img {
  border: solid 3px rgba(255, 255, 255, 0.3);
}
.special-card .card-meta {
  color: #26BD75;
}
.special-card .card-body {
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
}
.special-card:hover {
  cursor: pointer;
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}
.special-card:hover .card-body {
  margin-top: 30px;
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}
.special-card .card-img-overlay {
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  background: #234f6d;
  background: linear-gradient(0deg, rgba(35, 79, 109, 0.3785889356) 0%, #455f71 100%);
}
