footer {
    display: flex;
    flex-direction: column;

    background-color: var(--extra-dark);
    color: white;
    overflow: hidden;
    border-top: 2.5px solid black;
}
#main-footer-content {
    display: flex;
    justify-content: space-between;
    column-gap: 100px;
    padding: 25px 50px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 350px;
    flex: 1;
}
.footer-logo img {
    width: 100%;
}

.footer-nav {
    display: flex;
    justify-content: space-evenly;
    gap: 20px 50px;
    flex-wrap: wrap;
}
.footer-col {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}
.footer-col h3 {
    color: white;
    margin-bottom: 10px;
    display: flex;
    justify-content: left;
    font-size: large;
    text-wrap-mode: nowrap;
}
.footer-multi-col-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.footer-item {
    color: white;
    text-decoration: none;
    word-wrap: break-word;
    font-size: large;
    font-size: medium;
}
header.footer-item {
    font-weight: bold;
}
.indent-wrapper {
    margin-left: 10px;
}
footer a {
    color: white;
    text-decoration: none;
    transition: color .1s;
    &:hover {
        color: var(--light-blue);
    }
}
.current-page-footer {
    text-decoration: underline;
    text-decoration-color: var(--light-blue);
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

#bottom-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--dark-gray);
    padding: 15px 30px;
    position: relative;
    column-gap: 50px;
}
#bottom-footer-text {
    text-wrap-style: pretty;
}
#web-dev-cred {
    color: var(--gray);
}
#social-media-link-container {
    display: flex;
    align-items: center;
    gap: 25px;
    a {
        width: 30px;
    }
    svg {
        width: 100%;
    }
}
.sm-svg-path {
    fill: white;
    transition: fill .1s;
}
.sm-link:hover .sm-svg-path {
    fill: var(--light-blue);
}

@media (max-width: 1100px) {
    .footer-logo {
        display: none;
    }
    #main-footer-content {
        justify-content: center;
    }
}

@media (max-width: 780px) {
    #sm-text {
        display: none;
    }
}
@media (max-width: 560px) {
    #social-media-link-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px 20px;
    }
}