﻿/* Sticky footer styles */
.footer {
    bottom: 0;
    width: 100%;
    line-height: 2rem;
    background-color: white;
    background-image: none !important;
    padding-top: var(--footer-pt);
    padding-bottom: var(--footer-pb);
}

    .footer .container .nav-items,
    .footer .container .nav-link {
        text-align: left !important;
    }

    .footer .container a.nav-link {
        width: auto;
    }

    .footer .container .nav-link {
        color: black;
    }

    .footer label.nav-link {
        margin-bottom: 30px;
    }

    .footer .nav-link svg {
        margin-bottom: 17px;
    }

    .footer .container a {
        color: black;
        transition: 0.3s all;
    }

        .footer .container a:hover {
            color: var(--dark-gray);
            cursor: pointer;
        }

@media (max-width: 576px) {
    .footer {
        padding-top: 2rem;
        padding-bottom: 0;
    }
}