footer {
    width: 100%;
    display: flex;
    margin-top: 48px;
    padding-top: 48px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
    border-top: 1px solid var(--main-black-shades-90);
    background: var(--main-black-shades-97);
}
.footer_container {
    display: flex;
    flex-direction: row;
    padding: 0px 24px;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    width: 100%;
    gap: 48px;
}
@media screen and (min-width: 1640px) {
    .footer_container {
        max-width: 1600px;
    }
}
.footer_left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex-grow: 1;
}
.footer_info {
    width: 100%;
    text-align: left;
}
.footer_infostats {
    text-align: left;
    color: var(--main-black-shades-70);
}
.footer_navsection {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}
.footer_navlinks {
    display: flex;
    flex-direction: row;
    gap: 48px;
}
.footer_navlinks_section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    text-align: left;
}

footer a.textlink {
    font-weight: 400;
}
.footer_copyright {
    padding: 24px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
}
.footer_linklist {
    display: flex;
    flex-direction: row;
    gap: 48px;
}

.footer_navsection_exploreresource {
    display: flex;
    flex-direction: row;
    gap: 48px;
}
@media screen and (max-width: 820px) {
    footer {
        gap: 32px;
        padding-top: 32px;
        margin-top: 0px;
    }
    .footer_container {
        flex-wrap: wrap;
        gap: 32px;
        padding: 0 12px;
        justify-content: flex-start;
    }
    .footer_left {
        width: 100%;
    }
    .footer_navlinks_section {
        width: 110px;
    }
    .footer_linklist {
        gap: 16px;
        flex-wrap: wrap;
    }
    .footer_copyright {
        padding: 0 12px 90px 12px;
        flex-direction: column-reverse;
        gap: 24px;
    }
    .footer_copyright_text {
        align-self: flex-start;
    }
}

/*** Announcement Bar ***/
.announcement_link:hover {
    text-decoration: none;
}
.announcement_bar {
    width: 100%;
    display: flex;
    padding: 12px 48px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: var(--main-greyblue-shades-95);
    font-size: 12px;
    font-weight: 500;
    line-height: 17px; /* 141.667% */
    letter-spacing: -0.12px;
}
.announcement_bar a {
    color: var(--main-greyblue-shades-50);
}

.announcement_bar .announcement_linkdiv {
    text-align: center;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}
.announcement_bar .announcement_svg {
    display: flex; 
}
.announcement_close {
    position: absolute;
    right: 10px;
    top: 13px;
    color: var(--main-greyblue-shades-50);
}
.announcement_bar:hover {
    background: var(--main-greyblue-shades-90);
}
.announcement_bar.loud .announcement {
    color: var(--main-white);
}
.announcement_bar.loud {
    background: var(--main-blue);
}
.announcement_bar.loud:hover {
    background: var(--main-blue-shades-45);
}

@media screen and (max-width: 575px) {
    .announcement_bar {
        padding: 8px 24px;
    }
    .announcement_close {
        right: 10px;
        top: 8px;
    }
}