.footer__bottom {
    padding-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}


.footer a {
    color: #fff !important;
    transition: all 0.4s ease-in-out;
    display: flex;
    width: fit-content;
    position: relative;
}

.footer a:before {
    left: 0;
}

.footer a:after {
    right: 0;
}

.footer a:before,
.footer a:after {
    content: "";
    position: absolute;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width .3s ease-in-out;
}

.footer a:hover:before,
.footer a:hover:after {
    width: 50%;
}

@media screen and (width < 768px) {
    .footer__bottom {
        flex-direction: column;
        align-items: start;
        gap: 1rem;
    }
}
