.site-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    padding: 48px 10%;
    background-color: var(--bg-footer);
}

.site-footer__inner {
    /* max-width: var(--max-width-site); */
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 8rem;
}

.site-footer__inner>*:not(:first-child) {
    flex: 1;
}

.site-footer__inner>*:first-child {
    flex: 2;
}

.site-footer__branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.site-footer__logo {
    width: 71px;
    height: 76px;
}

.site-footer__name {
    color: #ffffff;
    font-family: var(--font-secondary);
    font-size: var(--footer-title);
}

.site-footer__location {
    font-family: var(--font-secondary);
    font-size: var(--footer-subtitle);
    color: #d9d9d9;
    text-transform: uppercase;
}

.site-footer__description {
    font-family: var(--font-tertiary);
    font-size: var(--footer-text);
    color: #ffffff;
    text-align: justify;
    font-weight: 300;
}

.site-footer__heading {
    max-width: max-content;
    color: #ffffff;
    padding-bottom: 8px;
    position: relative;
    font-family: var(--font-secondary);
    font-size: var(--footer-subtitle);
    font-style: normal;
    margin-bottom: 1.5rem;
}

.site-footer__heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50.5%;
    height: 2px;
    background-color: var(--color-quaternary);
}

.site-footer__list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: var(--font-primary);
    font-style: italic;
    /* font-weight: 300; */
    font-size: var(--size-subtitle);
    color: #a4a2a2;
}

.site-footer__link {
    font-size: var(--footer-text);
}

.site-footer__item:hover {
    color: var(--color-quaternary);
    cursor: pointer;
}

.site-footer__item::before {
    content: "› ";
    color: var(--color-quaternary);
    font-weight: bold;
    margin-right: 2px;
}

.site-footer__contact {
    color: #ffffff;
}

.site-footer__contact-item {
    display: flex;
    align-items: start;
    gap: 15px;
}

.site-footer__contact-item:not(:last-child) {
    margin-bottom: 10px;
}

.site-footer__contact-item>i {
    color: var(--color-quaternary);
}

.site-footer__contact-item>span,
.site-footer__contact-item>a {
    color: #a4a2a2;
    font-family: var(--font-tertiary);
    font-size: var(--footer-text);
}

.site-footer__contact-item>a:hover {
    color: var(--color-quaternary);
    cursor: pointer;
}

.site-footer__bottom {
    /* max-width: var(--max-width-site); */
    width: 100%;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ffffff;
}

.site-footer__social {
    display: flex;
    gap: 12px;
}

.site-footer__social-link {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #433a1c;
    padding: 5px;
}

.site-footer__social-link>i {
    color: #ffffff;
}

.site-footer__credits {
    color: #ffffff;
    font-size: var(--footer-text-sm);
}

@media screen and (max-width: 1440px) {
    .site-footer {
        padding-inline: 5% !important;
    }

}

@media screen and (max-width: 1120px) {
    .site-footer {
        gap: 32px;
    }

    .site-footer__inner {
        flex-direction: column;
        gap: 4rem;
    }

    .site-footer__inner>* {
        flex: 1;
    }

    .site-footer__heading::after {
        width: 100%;
    }

    .site-footer__bottom {
        flex-direction: column;
        padding-top: 10px;
        gap: 16px;
        border-top: none;
    }

    .site-footer__credits {
        width: 100%;
        border-top: 1px solid #ffffff;
        padding-top: 16px;
        text-align: center;
        line-height: 19px;
    }
}

@media screen and (max-width: 645px) {
    .site-footer {
        padding: 28px 30px;
    }
}

@media screen and (max-width: 320px) {
    .site-footer {
        padding: 28px 20px;
    }
}