footer {
    background-color: #293240;
    padding: 1.875rem 0 1.25rem 0;
    color: #bfc2c6;
    font-size: 0.9375rem;
    letter-spacing: 0.0313rem;
}

footer p {
    font-size: 0.9375rem;
}

footer .heading-footer {
    color: #fff;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    font-family: var(--bs-font-sans-serif);
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
}

footer .footer-logo {
    height: 2.5rem;
    width: auto;
}

footer a {
    color: #bfc2c6;
    text-decoration: underline;
}

footer a:hover {
    color: var(--bs-secondary);
    text-decoration: underline;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 0.9375rem;
    position: relative;
}

footer ul li a {
    text-decoration: none;
    position: relative;
    font-family: var(--bs-font-sans-serif);
    font-weight: 500;
    color: #bfc2c6;
}

footer ul li a:hover {
    opacity: 1;
    color: #fff;
    text-decoration: none;
}

footer ul li a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    border-radius: 5px;
    height: 0.05em;
    bottom: 0;
    left: 0;
    background: currentcolor;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

footer ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

footer .social {
    display: block;
}

footer .social a {
    color: var(--bs-white);
    text-decoration: none;
    opacity: 0.6;
    font-size: 1.375rem;
    margin-right: 20px;
    text-decoration: none !important;
}

footer .social a svg {
    width: 24px;
    height: 24px;
}

footer .social a:hover {
    opacity: 1;
    color: var(--bs-white);
}

footer .copyright {
    font-size: 0.8125rem;
}

footer hr {
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem;
    opacity: 0.15;
}

@media (max-width:47.9375rem) {
    footer .heading-footer {
        font-size: 1rem;
    }
    footer, footer p {
        font-size: 0.875rem;
      }
    footer .social {
        margin-bottom: 1.875rem;
    }

    footer ul {
        margin-bottom: 1.875rem;
    }

    footer ul li {
        margin-bottom: 0.625rem;
    }

    .copyright .text-end {
        text-align: left !important;
    }

    footer .social a svg {
        width: 1.375rem;
        height: 1.375rem;
    }
}