/* Footer */

footer {
    background-color: #121212;
    padding: 7rem 1rem 0 1rem;
    position: relative;
}

.footer-section {
    padding-bottom: 7rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 3.5rem;
    max-width: 75rem;
    margin: 0 auto;
}

.footer-section h3 {
    color: #0b9444;
    font-size: 1rem;
    font-weight: 400;
}

.footer-section p {
    color: #E5E7EB;
    padding: 0.25rem 0;
    font-size: 0.875rem;
}

.footer-section .contact-icon, .footer-section .social-media-icon {
    color: #0b9444;
    padding-right: 0.25rem;
}

.footer-section .footer-subheading {
    color: #9CA3AF;
}

.footer-section p a {
    display: inline-block;
    text-decoration: none;
    color: #E5E7EB;
    transition: all 0.3s ease-in;
}

@media (hover: hover) and (pointer: fine) {
    .footer-section p a:hover {
        transform: translateX(10px);
        letter-spacing: 1px;
    }
}

.footer-section .copyright-container {
    background-color: black;
    padding: 2rem 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer-section .copyright, .footer-section .website-by {
    max-width: 75rem;
    margin: 0 auto;
}

.footer-section .website-by {
    font-size: 0.75rem;
}

.footer-section .website-by-link {
    color: gold;
}

@media (hover: hover) and (pointer: fine) {
    .footer-section .website-by-link:hover {
        transform: none;
        letter-spacing: normal;
    }
}