.footer-social-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-social-widget ul li {
    width: 100%;
    border: solid 1px #fff;
}

.footer-social-widget .link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 5px 15px;
}

.footer-social-widget .link-youtube:hover {
    background-color: #e00000;
}

.footer-social-widget .link-instagram:hover {
    background-color: #dc336e;
}

.footer-social-widget .link-facebook:hover {
    background-color: #4267b2;
}

.footer-social-widget .link-x:hover {
    background-color: #000;
}

.footer-social-widget .link span {
    color: #fff;
}

.footer-social-widget .link:hover span {
    color: #fff;
}

.footer-social-widget svg {
    width: 35px;
    height: 35px;
}

.footer-social-widget svg path {
    fill: #fff;
}

.footer-social-widget svg path.fill-x {
    fill: #181818;
}

.footer-social-widget .link:hover svg path {
    -webkit-transition-duration: .6s;
    transition-duration: .6s;
}

.footer-social-widget .link:hover svg path.fill-x {
    fill: #000;
}