footer {
    background-image: linear-gradient(to bottom, rgba(54, 28, 126, 1), rgba(17, 17, 73, 1));
    color: var(--white-color);
    padding-block: 30px 15px;
    position: relative;
    overflow: hidden;
}
footer * {
    z-index: 1;
}
footer::before {
    content: "";
    position: absolute;
    background-image: url("../assets/images/bg.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    right: -10%;
    top: -5px;
    width: 50%;
    height: 100%;
    z-index: 0;
}
footer::after {
    content: "";
    position: absolute;
    background-image: url("../assets/images/bg.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
}

footer .my-container {
    display: flex;
    flex-direction: column;
    /* gap: 15px; */
}
footer .logo,
footer .logo-cisco {
    width: clamp(100px, 10vw, 100px);
    height: 155px;
}
footer .logo-links-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
footer ul.links {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    /* width: 50%; */
    width: 100%;
    height: fit-content;
    flex-wrap: wrap;
}
footer ul.links li a::before {
    background-color: var(--white-color);
}
footer ul.links li a {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
}
footer ul.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
footer ul.social-icons 
footer .logo-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
/* Hover Social-icons */
footer ul.social-icons li a {
    font-size: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    /* background: rgba(255, 255, 255, 0.08); */
    /* border: 2px solid rgba(255, 255, 255, 0.15); */
    border-radius: 50%;
    transition: 0.5s;
    overflow: hidden;
}
footer ul.social-icons li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    transition: 0.5s ;
    z-index: 0;
    border-radius: 15px;
}
footer ul.social-icons li a:hover::before {
    height: 100%;
}
footer ul.social-icons li a i {
    transition: .3s;
}
footer ul.social-icons li a:hover i {
    /* transform: scale(1.3); */
    transform: rotate(360deg);
}
footer ul.social-icons li a:hover {
    border-color: transparent;
}

/* ========== FACEBOOK ========== */
footer ul.social-icons li.facebook a::before {
    background: linear-gradient(to top, #1877f2, #0d5dce);
}
footer ul.social-icons li.facebook a:hover {
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4);
}

/* ========== LINKEDIN ========== */
footer ul.social-icons li.linkedin a::before {
    background: linear-gradient(to top, #0077b5, #005885);
}
footer ul.social-icons li.linkedin a:hover {
    box-shadow: 0 10px 30px rgba(0, 119, 181, 0.4);
}

/* ========== INSTAGRAM ========== */
footer ul.social-icons li.instagram a::before {
    background: linear-gradient(to top, 
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
}
footer ul.social-icons li.instagram a:hover {
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.4);
}
/* ========== (TWITTER) ========== */
footer ul.social-icons li.twitter a::before {
    background: linear-gradient(to top, #000000, #1a1a1a);
}
footer ul.social-icons li.twitter a:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
/* End-Hover */

footer .images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    /* position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%); */
}
footer .logo-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.wrapper-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 576px) {
    footer ul.links {
        /* width: 100%; */
        gap: 15px;
    }
    footer ul.social-icons li a {
        font-size: 20px;
        width: 40px;
        height: 40px;
    }
    footer .logo-links-wrapper {
        gap: 20px;
    }
    .wrapper-box {
        gap: 15px;
    }
    footer .logo-box {
        margin: auto;
    }
    footer::before,
    footer::after {
        display: none;
    }
    footer ul.social-icons {
        flex-direction: row;
        margin: 10px auto;
    }
    footer .logo-links-wrapper {
        flex-direction: column;
    }
}




