/*! ************************************ Footer *************************************/
footer {
    background-color: var(--main-color);
    padding-block: 30px 10px;
    text-align: center;
    margin-top: 60px;
    overflow: hidden;
}
footer .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer img {
    transition: .3s;
}
footer img:hover {
    transform: scale(1.05);
}
footer .content .links {
    /* width: 50%; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
/* footer .content .links li {
    padding: 0 10px;
} */
footer .icons {
    display: flex;
    gap: 10px;
}
footer .icons span {
    width: 40px;
    height: 40px;
    background-color: var(--color-White);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

footer .icons span a {
    color: inherit;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
/* HOVER */
footer ul.links li:hover a {
    color: #8f9405;
    font-weight: 600;
}
/* ACTIVE */
footer ul.links li.active a {
    color: #8f9405;
    font-weight: 600;
}

footer .icons span a i {
    font-size: 18px;
    position: absolute;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.4s ease;
}

footer .icons span::after {
    content: attr(data-name);
    position: absolute;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
    color: #fff;
    white-space: nowrap;
}

footer .icons span:hover {
    width: 130px;
    color: #fff;
    border-radius: 10px;
}
footer .icons span:hover a i {
    opacity: 0;
    transform: translateX(-20px);
}
footer .icons span:hover::after {
    opacity: 1;
    transform: translateX(0);
}
footer .icons span.facebook:hover {
    background-color: #1877F2;
}
footer .icons span.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
footer .icons span.twitter:hover {
    background-color: #000;
}
footer .main-container > p {
    font-size: 15px;
    padding-top: 25px;
    padding-bottom: 15px;
}

/* Heart CSS */
footer .main-container > p .heart {
    color: red;
    font-size: 16px;
    display: inline-block;
    animation: heartIcon 1.5s linear infinite;
}

@keyframes heartIcon {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
