.animated-shopping-cart {
    animation-name: bounce-1;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 2s;
    position: relative;
    display: inline-block;
}

@keyframes bounce-1 {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-7px) scale(1.3); }
    100% { transform: translateY(0); }
}

.footer_blog {
    display: flex;
    margin-bottom: 5px;
}

.footer_blog_img {
    width: 80px;
    height: 80px;
}

.footer_blog_desc {
    margin-left: 10px;
    font-size: .8rem;
}
.footer_blog_desc h6 {
    font-size: 1.05rem;
    color: #fff;
    margin: 0 0 3px 0;
}

