.footer-wrapper {
    margin-top: 200px;
}

@media(max-width:992px) {
    .footer-wrapper {
        margin-top: 100px;
    }
}

.footer-logo {
    width: 210px;
    margin: 0 auto;
    display: block;
}

.footer-links-wrapper {
    margin-top: 30px;
    padding: 0 50px;
}

@media(max-width:992px) {
    .footer-links-wrapper {
        padding: 0;
    }
}

.footer-link-list {
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-top: 3px solid;
    padding-top: 30px;
}

@media(max-width:992px) {
    .footer-link-list {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.footer-link {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.footer-link.staff {
/*     justify-content: right; */
    margin: 20px 0;
}

.footer-link-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.footer-link-txt {
    color: var(--main-color);
    font-weight: 600;
}

.footer-link:nth-last-of-type(1) .footer-link-txt,
.footer-link:nth-last-of-type(2) .footer-link-txt,
.footer-link:nth-last-of-type(3) .footer-link-txt{
    color: #000;
    font-weight: 400;
}

.footer-copyright-wrapper {
    background: var(--bg-color-7);
    padding: 40px 0 30px;
    margin-top: 40px;
}

.footer-copyright-link-list {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 60%;
    margin: 0 auto 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--txt-color-4);
}

@media(max-width:992px) {
    .footer-copyright-link-list {
        width: 90%;
        flex-direction: column;
        align-items: center;
        margin-bottom: 25px;
    }
}

.footer-copyright-link-txt {
    color: var(--txt-color-4);
    font-weight: 500;
}

.footer-copyright-link-txt:hover {
    color: var(--txt-color-4);
}

.copyright {
    margin: 0;
    text-align: center;
    padding: 10px 0;
    font-weight: 500;
    color: var(--txt-color-4);
}