 
.fostrap-logo {
  width: 100px;
  margin-bottom:15px
}
 
.card {
  display: block; 
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12); 
    transition: box-shadow .25s; 
}
.card:hover {
  box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
}
.img-card {
  width: 100%;
  height:200px;
  border-top-left-radius:2px;
  border-top-right-radius:2px;
  display:block;
  overflow: hidden;
}
.img-card img{
  width: 100%;
  height: 200px;
  object-fit:cover; 
  transition: all .25s ease;
  filter: blur(1px);
  pointer-events: none;
}
.card img:not(.irFlag) {
    pointer-events: none;
}
.irFlag {
    padding-bottom: 1.2px;
}
.card-content {
    padding: 15px;
    text-align: justify;
    height: 10rem;
    overflow: auto;
}
.card-title {
    font-weight: bold;
    font-size: 0.8rem;
    width: auto;
    display: table;
    position: absolute;
    top: 0;
    left: 0;
    margin: 1rem;
    padding: 0.5rem;
    background: #ffffff;
    color: #000;
    border-radius: 0.5rem;
    filter: drop-shadow(0px 0px 1px #ebebeb );
}
.btn {
    border: 0;
    background: #6f42c1;
    color: #fff;
    transition: all .3s ease-in;
    line-height: 0;
    font-size: 0.9rem;
}
.btn:hover {
    filter: opacity(0.5);
    transition: all .3s ease-in;
}
.disa {
    filter: opacity(0.5);
    pointer-events: none;
}