﻿footer.footer .footer-link ul li a {
    position: relative;
    display: inline-block;
    color: var(--white);
    padding: 10px 0px 0px 0px;
}

    footer.footer .footer-link ul li a:before {
        text-decoration: none;
        position: absolute;
        content: "";
        bottom: 1px;
        left: 0;
        right: 0;
        height: 1px;
        width: 0;
        background: var(--secondary-green);
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    footer.footer .footer-link ul li a:hover:before,
    footer.footer .footer-link ul li a.active:before {
        width: 100% !important;
    }

footer.footer .footer-info .social ul li a {
    display: flex;
    flex-wrap: wrap;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    font-size: 1rem !important;
    color: var(--fawn);
    background: rgba(var(--flaxen-rgb), 0.09);
    width: 30px;
    height: 30px;
    text-align: center;
    align-content: center;
    justify-content: center;
    border-radius: var(--border-radius-leaf);
}

    footer.footer .footer-info .social ul li a:hover {
        color: var(--flaxen);
        background: var(--secondary-green);
    }

footer.footer .copyright-area {
    background: var(--fawn);
    padding: 1rem 2rem 0rem 2rem;
    border-radius: var(--border-radius-leaf);
}

    footer.footer .copyright-area .copy-text p,
    footer.footer .copyright-area ul.copy-menu li span,
    footer.footer .copyright-area ul.copy-menu li a {
        color: var(--white);
    }

@media only screen and (max-width: 767px) {
    footer.footer .copyright-area .text-left,
    footer.footer .copyright-area .text-right {
        text-align: center !important;
    }
}

footer.footer .copyright-area .copy-text a {
    position: relative;
    display: inline-block;
    font-weight: 700;
}

    footer.footer .copyright-area .copy-text a:before {
        text-decoration: none;
        position: absolute;
        content: "";
        bottom: 1px;
        left: 0;
        right: 0;
        height: 1px;
        width: 0;
        background: var(--flaxen);
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    footer.footer .copyright-area .copy-text a:hover:before,
    footer.footer .copyright-area .copy-text a:active:before {
        width: 100% !important;
    }

footer.footer .copyright-area ul.copy-menu li a {
    position: relative;
    display: inline-block;
}

    footer.footer .copyright-area ul.copy-menu li a:before {
        text-decoration: none;
        position: absolute;
        content: "";
        bottom: 1px;
        left: 0;
        right: 0;
        height: 1px;
        width: 0;
        background: var(--flaxen);
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    footer.footer .copyright-area ul.copy-menu li a:hover:before,
    footer.footer .copyright-area ul.copy-menu li a:active:before {
        width: 100% !important;
    }

footer.footer .footer-contact .contact-email,
footer.footer .footer-contact .contact-telephone {
    position: relative;
    display: inline-block;
}

    footer.footer .footer-contact .contact-email:before,
    footer.footer .footer-contact .contact-telephone:before {
        text-decoration: none;
        position: absolute;
        content: "";
        bottom: 1px;
        left: 0;
        right: 0;
        height: 1px;
        width: 0;
        background: var(--secondary-green);
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    footer.footer .footer-contact .contact-email:hover:before,
    footer.footer .footer-contact .contact-email:active:before,
    footer.footer .footer-contact .contact-telephone:hover:before,
    footer.footer .footer-contact .contact-telephone:active:before {
        width: 100% !important;
    }