footer {
    /* positioning */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;

    /* box model */
    padding: var(--space-12) 0;

    /* visual */
    background-color: #f2f2f2;

    /* typography */
    color: #454545;
}

.footer-container {
    /* positioning */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);

}

.footer-contents {
    /* positioning */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icons {
    margin-bottom: var(--space-6);
}

.footer-text {
    /* typography */
    font-size: var(--font-size-body);
    color: #454545;
    margin-top: 0.25em;
}


.footer-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: var(--space-6);
    height: var(--space-6);
    background-color: transparent;
    border: 1px solid #db061e;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 clamp(0.35rem, 0.265rem + 0.5437vw, 0.7rem);
}

.footer-link:hover {
    background-color: #db061e;
    transform: scale(1.3);
    border: none;
}

.footer-link i {
    font-size: var(--font-size-body);
    color: #db061e;
    transition: color 0.3s ease;
}

.footer-link:hover i {
    color: #ffffff;
}


.contact-us {
    /* typography */
    color: #454545;
}