footer {
    position: relative;
    background-color: var(--color-muted-background);
    padding: 3rem 0 1.5rem;
}

.footer__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/cubes.png");
    opacity: 0.2;
}

[data-theme="light"] .footer__backdrop {
    opacity: 0.3;
    background-image: url("../images/escheresque-dark.png");
}

.footer__company-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer__company-logo-image {
    height: 7rem;
    border-radius: 0.5rem;
}

.footer__company-details {
    margin-top: 1rem;
    color: var(--color-muted-text);
    /* margin-left: 0.25rem; */
    /* text-align: justify; */
}




.footer__explore {


}


.footer__explore-title, 
.footer__contact-title {
    font-size: 1.5rem;
    color: var(--color-primary-text);
}

.footer__explore-list, 
.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    list-style-type: none;
    padding: 0;
    margin-inline-start: 0.25rem;
    margin-top: 0.75rem;
}

.footer__explore-item a,
.footer__contact-item a {
    color: var(--color-muted-text);
}

.footer__contact-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.25rem;
    color: var(--color-muted-text);
    word-break: break-word;
    overflow-wrap: break-word;
}

.footer__contact-item svg {
    fill: var(--color-accent);
}

.footer__contact-icon {
    font-size: 1.5rem !important;
    color: var(--color-accent);
}

.footer__contact-icon-svg {
    display: flex;    
}




.footer__seperator {
    /* position: relative; */
    height: 1px;
    width: 100%;
    background-color: var(--color-secondary-background);
    opacity: 0.5;
}


.footer__copyright {
    color: var(--color-muted-text);
}