footer.site-footer {
    padding-top: 100px;
}

.footer-logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 60px;;
}

@media screen and (max-width: 1100px) {
    .footer-list {
        gap: 10px;
        flex-direction: column;
    }

    .footer-logo-wrapper {
        justify-content: flex-start;
        padding-left: 40px;
    }
}

.footer-list li a {
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0.7;
}

.footer-list li a:hover {
    text-decoration: none;
    opacity: 1;
}