.awardItemFooter{
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: right;
    /*transform: translateY(calc(100% - 140px));*/
    transition: all .4s;
    /*margin-top: -60px;*/
    background-color: rgba(255, 255, 255, 0.3);
    padding: 1.5rem 1rem;
    border-radius: 25px 25px 0 0;
    /*min-height: 200px;*/
    backdrop-filter: blur(8px);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
.awardsDate{
  font-size: 16px;
  color: #000;
}
.awardsTitle {
    font-size: 18px;
    margin-top: 8px;
    transition: all .4s;
    min-height: 60px;
    display: flex;
    align-items: center;
    width: 100%;
}
.awardsDesc {
    font-size: 14px;
    line-height: 32px;
    color: #000;
    max-height: 0;
    overflow: hidden;
    transition: 0.6s;
    transition: max-height 0.3s ease-out;
}
.awardItem > a::after , .awardItem > a::before{
  display: none;
}
.awardItem > a{
  overflow: hidden;
  transition: all .4s;
  width: 100%;
  height:100%;
}
.awardItem  img{
    height: 250px;
    width: auto;
}
.awardImage{
    min-height: 300px;
}
.awardItem > a:hover{
  color: #000;
}
.awardItem > a:hover .awardItemFooter{
  background-color: rgba(255, 255, 255, 0.5);
}
.awardItem > a:hover .awardsDesc{
  color: #000;
  max-height:999px;
   transition: max-height 0.45s ease-in;
}
.awardItem > a:hover .awardsTitle{
  color: var(--color1);
}
.awardImage{
  padding: 25px;
  padding-bottom: 0;
}