footer {
    display: flex;
    justify-content: center;
    width: 100%;
    border-top: 1px solid #eaeaea;
    background-color: #fff;
    position: relative;
    bottom: 0;
    z-index: 100;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    padding: 1.2rem 3rem;
    margin: 1rem;
    width: 100%;  
    gap: 2rem;  
}

.footer-items {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

footer .logo {
    display: block;
    position: relative;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #333;
    overflow: hidden;
    height: 10rem;
}

footer .logo img {
    object-fit: contain;
    display: block;
    width: 100%;
    height: 100%;
}

.copyrights {
    display: block;
    width: 50%;
    border-top: 1px solid #3333334f;
    border-radius: 1px;
    text-align: center;
}

.copyrights p {
    padding-top: 1rem;
}

.links h3 {
    position: relative;
    font-size: 1.8rem;
    text-transform: uppercase;
    color: #B1976B;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    list-style: none;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.4s ease-in-out;
}

.business-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-col h3 {
    font-size: 1.5rem;
    color: #B1976B;
    display: inline;
}

.footer-col h4, .footer-col a {
    font-size: 1.3rem;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s ease-in-out;
}

.footer-links a:hover, .footer-col a:hover {
    color: #B1976B;
    transform: scale(1.1);
    transition: 0.4s ease-in-out;
}

@media (max-width: 1024px) {
    .footer-items {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .links {
        width: 254.55px;
    }

    .footer-links li {
        padding-bottom: 0.5rem;
    }
}