@import url('global-variables.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

footer {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--font-light-color);
}

.footer-body {
    display: flex;
    flex-direction: column;
    width: 100%;
    /* padding: 0rem 15rem; */
    margin: 0 auto;
    max-width: 90rem;
    color: var(--font-light-color)
}

.footer-items {
    display: flex;
    flex-direction: row;
    align-items: top;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 2rem 0rem;
    /* min-width: max-content; */
}

.footer-items > * {
    flex: 1;
    /* flex-basis: 50%; */
    /* border: solid green 2px; */
    padding: 1rem;
}

.footer-7dc-title {
    font-family: "Luengo W00 Bold";
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

.footer-address,
.footer-contact-us {
    display: flex;
    flex-direction: column;
}

.footer-address-title,
.footer-contact-us-title,
.footer-social-media-title {
    font-family: "Luengo W00 Bold";
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: solid var(--font-light-color) 2px;
}

.footer-address svg,
.footer-contact-us svg {
    height: 1.5rem;
    fill: var(--accent-color);
}

.footer-address > *:not(:first-child),
.footer-contact-us > *:not(:first-child) {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: "Luengo W00 Light";
}

.icon-container {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.footer-social-media-icon-container svg {
    height: 3rem;
    fill: var(--accent-color);
}

.footer-note {
    padding: 1rem;
    border-top: solid var(--font-light-color) 2px;
    font-family: "Luengo W00 Light";
}



@media (max-width: 61rem) {
    .footer-items > * {
        flex-basis: 50%;
    }
}

@media (max-width: 42rem) {
    .footer-items > * {
        flex-basis: 100%;
    }
}
