.footer-container {
    padding: 6rem 6rem 0 6rem;
}
.footer-list > ul > li {
    margin-bottom: 1rem;
    color: #fec52e;
}
.footer-list > ul > li > a {
    text-decoration: none;
    margin-bottom: 1rem;
    color: #fff;
}
.footer-list > ul > li > a:hover {
    color: #fec52e;
}
.bottom-footer-container {
    /* text-align: center; */
}
.footer-img {
    height: 85px;
    width: 100%;
    object-fit: cover;
}
.heart-footer {
    color: red;
    display: inline-block;
    font-size: 1.5rem;
}
.heart {
    animation: beat 1s infinite;
}
@keyframes beat {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
.footer-redirectional-url {
    color: white;
}
.footer-redirectional-url:hover {
    color: #fec52e;
}
