body {
  /* Created with https://www.css-gradient.com */
  background: #161616;
}
h1 {
  color: #fff;
}
.lead {
  color: #aaa;
}

.wrapper {
  margin: 10vh;
}

a {
  text-decoration: none;
}

.card {

 
  border: none;
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
  border-radius: 20px;
  min-height: 200px;
  width: 80%;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;

  @media (max-width: 768px) {
    min-height: 150px;
  }

  @media (max-width: 420px) {
    min-height: 200px;
  }

.card-has-bg {
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    &: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%);
    }

    &:hover {
      transform: scale(0.98);
      box-shadow: 0 0 5px -2px rgba(0, 0, 0, 0.3);
      background-size: 110%;
      transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);

      .card-img-overlay {
        transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
        background:  #3f77ca;
        background: linear-gradient(
          177deg,
          #0c85bd 0%,
          #048ABF 100%
        );
      }
    }
  }
  
  .card-title {
    font-weight: 400;
  }
  .card-meta {
    color: rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
  }
  .card-body {
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  }
  &:hover {
    .card-body {
      margin-top: 30px;
      transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
    }
    cursor: pointer;
    transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  }
  .card-img-overlay { 
    transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
    background:  #2073b6;
    background: linear-gradient(
      177deg,
      rgba(24, 149, 199, 0.43) 0%, #0d4394 100%);
    
  }
}
@media (max-width: 767px) {
}
