.carousel#promotionsCarouselCards{
    padding: 0 20px;
}
#promotionsCarouselCards .cards-wrapper {
    display: flex;
    justify-content: space-around;
}
#promotionsCarouselCards .card{
    transition: all 0.5s ease;
    background: transparent;
    /* height: 300px; for width 370px */
    height: 431px;
    width: 502px;
    align-items: center;
    align-content: center;
    justify-content: center;
    overflow: hidden;
}
#promotionsCarouselCards .card > img {
   height: inherit;
}
#promotionsCarouselCards .card div.logo > img{
    width: 76px;
}
#promotionsCarouselCards .card > div.description{
    background-color: #2541B2;
    color: white;
    text-align: center;
    padding: 5px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transition: all 0.5s ease;
}
#promotionsCarouselCards .card div.description > div.logo
,#promotionsCarouselCards .card div.description > div.link{
    transition: all 0.5s ease;
    display: none;
}

#promotionsCarouselCards .card:hover div.description{
    padding: 30px 0;
    transition: all 0.5s ease;
}
#promotionsCarouselCards .card:hover div.description > div.logo
,#promotionsCarouselCards .card:hover div.description > div.link{
    transition: all 0.5s ease;
    display: block;
}
#promotionsCarouselCards .card:hover{
    transition: all 0.5s ease;
    background: linear-gradient(180deg, rgba(3,37,108,1) 0%, rgba(255,255,255,0) 100%);
}
#promotionsCarouselCards .card > img{
    transition: all 0.5s ease;
    opacity: 1;
}
#promotionsCarouselCards .card:hover > img{
    transition: all 0.5s ease;
    opacity: 0.2;
}
#promotionsCarouselCards .card div.description span{
    font-size: 22px;
    font-weight: 300;
}
#promotionsCarouselCards .card div.description a span{
    font-size: 15px;
    color: white;
}
@media only screen and (max-width: 1200px){
}
@media only screen and (max-width: 991px){
    #promotionsCarouselCards .card{
        height: 361px;
        width: auto;
    }
}
@media only screen and (max-width: 800px){
    #promotionsCarouselCards .card{
        height: 300px;
        width: auto;
    }
}
@media only screen and (max-width: 700px){
    #promotionsCarouselCards .card{
        height: 300px;
        width: auto;
    }
}
@media only screen and (max-width: 575px){
    #promotionsCarouselCards .card{
        height: 300px;
        width: auto;
    }
}
@media only screen and (max-width: 450px){
    #promotionsCarouselCards .card{
        height: 300px;
        width: auto;
    }
}
@media only screen and (max-width: 375px){
    #promotionsCarouselCards .card{
        height: 300px;
        width: auto;
    }
    .carousel#promotionsCarouselCards {
        padding: 0px;
    }
}