/* Pounding heart animation */

i.icon.anim_pulse {
    display: inline-block;
    font-size: 1rem;
    color: #e00;
    -webkit-animation-name: beat;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-direction: alternate;
    margin: 0;
}

@-webkit-keyframes beat {
    from {
        -webkit-transform:scale(.75);
    }
    to {
        -webkit-transform: scale(1.1);
    }
}

footer{
    width: 100%;
    padding: 1.8rem;
    background-color: #040404;
    color: #f7f7f7;
    text-align: center;
}

footer .footer .social{
    margin-bottom: 20px;
}
/* Small devices (tablets, 768px and up) */
@media (min-width: 992px) {
    footer .footer .social{
        margin-bottom: 0;
    }
}

footer .footer .social a {
    display: inline-block;
    margin-right: 5px;
    text-decoration: none;
}
footer .footer .social a i {
    font-size: 19px;
}
footer .footer .social a i:before {
    color: #f7f7f7;
    -webkit-transition: color 0.5s;
    -moz-transition: color 0.5s;
    transition: color 0.5s;
}

footer .footer .social a:hover i.twitter:before{
    color: #77aae8;
}
footer .footer .social a:hover i.linkedin:before{
    color: #007bb6;
}
footer .footer .social a:hover i.facebook:before{
    color: #4d5a91;
}
footer .footer .social a:hover i.bitbucket:before{
    color: #205081;
}
footer .footer .social a:hover i.github:before{
    color: #4183c4;
}
footer .footer .social a:hover i.instagram:before{
    color: #517fa4;
}
footer .footer .social a:hover i.google:before{
    color: #a64e43;
}
footer .footer .social a:hover i.pinterest:before{
    color: #cb2027;
}
